address range ... not on net

Bruce Hudson Bruce.Hudson at Dal.Ca
Mon Jun 30 15:13:37 UTC 2008


> shared-network test {
>         subnet 10.10.42.0 netmask 255.255.255.0 {
>         pool {
>                  range 10.10.88.1 140.107.88.254;
>         }
>         option subnet-mask 255.255.255.0;
>         option broadcast-address 10.10.88.255;
>         option routers 10.10.88.1;
>         }
> }

    You started off correctly with a "shared-network" stanza but you then
only declared one of your two networks. Try something like:

	shared-network test {
	    subnet 10.10.42.0 netmask 255.255.255.0 {
		... (statements for this subnet as required)
	    }

	    subnet 10.10.88.0 netmask 255.255.255.0 {
		pool {
		    range 10.10.88.2 140.107.88.254;
		}

		... (statements for this subnet as required)
	    }
	}

Note that I started the pool at ".2". Since you are declaring that ".1"
is your router, giving it out to a client is probably a bad idea. You
should also exclude any other statically assigned IP addresses from the
pool.
--
Bruce A. Hudson				| Bruce.Hudson at Dal.CA
UCIS, Networks and Systems		|
Dalhousie University			|
Halifax, Nova Scotia, Canada		| (902) 494-3405


More information about the dhcp-users mailing list