Thread: How van i make ubuntu server distribute ip's by DHCP ?
hi all
i'm new in ubuntu world , want ubuntu server distrebute ips machine through dhcp .
1 me know how ?
you have install dhcp server on ubuntu system, follow steps
edit config filecode:sudo apt-get install dhcp3-server
example:code:sudo nano /etc/dhcp3/dhcpd.conf
save , exit file , restart daemoncode:default-lease-time 600; max-lease-time 7200; option subnet-mask 255.255.255.0; option broadcast-address 192.168.1.255; option routers 192.168.1.254; option domain-name-servers 192.168.1.1, 192.168.1.2; option domain-name “yourdomainname.com”; subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.10 192.168.1.200; }
code:sudo /etc/init.d/dhcp3-server restart
Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [SOLVED] How van i make ubuntu server distribute ip's by DHCP ?
Ubuntu
Comments
Post a Comment