[olug] Debian fixed IP address

Jonathan Warren thechunk at cox.net
Tue Nov 12 15:02:20 UTC 2002


Your other possibility is to configure Linksys to no be a dhpc server and run your own on an internal box.  Here is a sample dhcpd.conf
# dhcpd.conf
#
# Configuration file for ISC dhcpd (see 'man dhcpd.conf')
#
ddns-update-style ad-hoc;
group {
    option subnet-mask 255.255.255.0;
    option broadcast-address 192.168.1.255;
    option domain-name-servers 68.13.16.30, 68.9.16.30;
    option routers 192.168.1.2;
    option domain-name "localdomain";

    host staichost {
        hardware ethernet 00:d0:09:ec:90:d5;
        fixed-address 192.168.1.10;
    }

    subnet 192.168.1.0 netmask 255.255.255.0 {
        range 192.168.1.50 192.168.1.90;
    }
}


On Mon, Nov 11, 2002 at 05:02:22PM -0800, Eric Penne wrote:
> I setup my debian box with dhcp.  Now I want it to have a fixed IP.  I
> cannot figure out the scripts so I can do this.
> 
> This arises because I don't like using the dns servers taht are
> provided by my isp.  Therefore I setup dnscache.  I have a linksys
> router/dhcp server that doesn't allow me to specify the dns server to
> send out to the clients.  It will only allow static IPs with my dns
> server or it will send out whatever it gets from the dhcp server on the
> other side.
> 
> How do I configure my debian box to hav a fixed IP.  This is my storage
> server, so the fixed ip will be useful.  I am getting a Pentium 90
> pretty soon to setup my own router/dhcp server but right now I still
> need to use the linksys.
> 
> Eric
> 
> 
> __________________________________________________
> Do you Yahoo!?
> U2 on LAUNCH - Exclusive greatest hits videos
> http://launch.yahoo.com/u2
> _______________________________________________
> OLUG mailing list
> OLUG at olug.org
> http://lists.olug.org/mailman/listinfo/olug



More information about the OLUG mailing list