Skip to content

Instantly share code, notes, and snippets.

@bugcy013
Created November 12, 2012 11:46
Show Gist options
  • Save bugcy013/4058906 to your computer and use it in GitHub Desktop.
Save bugcy013/4058906 to your computer and use it in GitHub Desktop.
dhcp
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