Created
November 12, 2012 11:46
-
-
Save bugcy013/4058906 to your computer and use it in GitHub Desktop.
dhcp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@SAMBA-Chennai:~# cat /etc/dhcp/dhcpd.conf | |
| authoritative; | |
| subnet 192.168.70.0 netmask 255.255.255.0 { | |
| range 192.168.70.35 192.168.70.40; | |
| option domain-name "dvindia.net"; | |
| option domain-name-servers 8.8.8.8; | |
| option broadcast-address 192.168.70.255; | |
| option routers 192.168.70.100; | |
| option subnet-mask 255.255.255.0; | |
| if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" { | |
| filename "pxelinux.0"; | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment