>Is anyone using DHCP with IP masq? I am using assigned IP
>addresses and have never been able to make it work with
>DHCP. Is it possible and is it covered in the docs
>somewhere?

Donald, 

I am also getting ready to enable DHCP on my MASQ'ed LAN.  
Here are my initial configs.  I'm doing static DHCP here
for security reasons.  If you need more help, the man
page on DHCP is pretty decent.  The HOWTO has been
unmaintained for a while now and it SUCKS to boot.

For a Redhat5 box, make sure that /etc/rc.d/rc3.d/S65dhcpd
exists.  For Slackware, you will need to load the DHCPd
process in either the /etc/rc.d/rc.inet2 or rc.local file.


/etc/dhcpd.conf
--
server-identifier trinity2-int.trinnet.net;
        option subnet-mask 255.255.255.0;
        option broadcast-address 192.168.0.255;
        option routers 192.168.0.1;
        option domain-name-servers 192.168.0.1, 24.1.64.33, 24.1.64.34;
        option domain-name "trinnet.net";
        default-lease-time 86400;       

subnet 192.168.0.0 netmask 255.255.255.0 {
        }

host dellster.trinnet.net {
        hardware ethernet 00:60:08:B1:36:4A;
        fixed-address 192.168.0.4;      
        option host-name dellster;
        }
--

 .----------------------------------------------------------------------------.
 |  David A. Ranch  - Remote Access/Linux/PCs       [EMAIL PROTECTED]  |
 !----                                                                    ----!
 `----- For more detailed info, see http://www.ecst.csuchico.edu/~dranch -----'
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For daily digest info, email [EMAIL PROTECTED]

Reply via email to