I assume you have two different interfaces on the box, one for each box? Judging by the router addresses, these would be 10.1.0.1 and 10.2.0.1. If the hardware-reserved hosts are connected to the appropriate interface, I would guess the second would be working.
Otherwise, can you put the host declarations in with the subnet definitions? It's been a while since I've read through man dhcpd, so you might want to take a look at it to be sure. Take care, Mike On Sun, 12 Dec 2004 13:13:22 UT, goose bla <[EMAIL PROTECTED]> wrote: > hello, > > I have router with inet and allias. 10.1.0.0/24 10.2.0.0/24. > i want allot to pc(client) their IP by their MAC adress. but it's going > only with one subnet. i can allot IP only to one subnet. > > this is running > > subnet 10.1.0.0 netmask 255.255.255.0 { > range 10.1.0.31 10.1.0.60; > default-lease-time 600; > max-lease-time 7200; > option subnet-mask 255.255.255.0; > option domain-name "bla.org"; > option domain-name-servers 222.222.222.22; > option routers 10.1.0.1; > } > > host pc1 { > hardware ethernet 00:33:11:22:bb:94; > fixed-address 10.1.0.10; > } > > but i need somethink like this: > > subnet 10.1.0.0 netmask 255.255.255.0 { > range 10.1.0.31 10.1.0.60; > default-lease-time 600; > max-lease-time 7200; > option subnet-mask 255.255.255.0; > option domain-name "bla.org"; > option domain-name-servers 222.222.222.22; > option routers 10.1.0.1; > } > > subnet2 10.2.0.0 netmask 255.255.255.0 { > range 10.2.0.31 10.2.0.60; > default-lease-time 600; > max-lease-time 7200; > option subnet-mask 255.255.255.0; > option domain-name "bla.org"; > option domain-name-servers 222.222.222.22; > option routers 10.2.0.1; > > host pc1 { > hardware ethernet 00:33:11:22:bb:94; > fixed-address 10.1.0.10; > } > > host pc2 { > hardware ethernet 00:44:44:22:bb:94; > fixed-address 10.2.0.10; > } > > _______________________________________________ > [EMAIL PROTECTED] mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "[EMAIL PROTECTED]" > _______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"