On Saturday 16 June 2001 22:50, you wrote:
> I m trying to setup a DHCP LAN with SuSE 7.1 personal. Can some 1 pls guide
> me how?


It really easy. Just edit the /etc/rc.config (START_DHCPD="yes") (after you
installed the dhcp rpm and edit the /etc/dhcpd.conf:


default-lease-time 86400;
max-lease-time 86400;
option subnet-mask 255.255.255.0;           #you should know which
 #subnetmask you need this is the just the most common
option broadcast-address 192.168.1.255;     #this is probably for a
 #subnetwork of 192.168.1.x
option routers 192.168.1.254;               #your gateway
option domain-name-servers x.x.x.x, y.y.y.y;         #your DNS server(s)
 #(optional)
subnet 192.168.1.0 netmask 255.255.255.0 {  #adjust
range 192.168.1.10 192.168.1.100;        #adjust - this would assign
 #your clients ip's from 192.168.10-192.168.1.100 I think one after the
 #other
}

and reboot or type rcdhcpd start.

btw. there is a dhcp mini howto which covers the rest


Tom

_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to