Reservation best practices?

Friesen, Don SSBC:EX Don.Friesen at gov.bc.ca
Wed Jul 13 18:03:28 UTC 2011


>Example subnet:
>subnet 172.30.112.0 netmask 255.255.240.0 {
>		authoritative;
>
>		# This is the full range
>		#range 172.30.112.3 172.30.127.254;
>
>		pool {
>		range 172.30.115.1 172.30.127.254;
>				option subnet-mask              255.255.240.0;
>				option broadcast-address        172.30.112.255;
>				option routers                  172.30.112.2;
>		}
>
>} # // ITdept

   Take the options out of the pool, and place them at the subnet level.

subnet 172.30.112.0 netmask 255.255.240.0 {
		authoritative;

		option subnet-mask              255.255.240.0;
		option broadcast-address        172.30.112.255;
		option routers                  172.30.112.2;

		# This is the full range
		#range 172.30.112.3 172.30.127.254;

		pool {
		range 172.30.115.1 172.30.127.254;
		}

} # // ITdept




Don F.



More information about the dhcp-users mailing list