*** From dhcp-server -- To unsubscribe, see the end of this message. ***
Back Ground info: V2.0b1pl18
Basically I like to know how I can put a sub-range(VSM) of a subnet (Class
B) in the same dhcpd.conf file. Right now we are assigning all our address
static via dhcpd.conf and giving the router/sub-netmask via options on each
host configuration line. We create the dhcpd.conf from a Microsoft Access
Database to insure no DUP IP's and Hardware addresses. What I'd like to do
would be the similar to the following. We would like to keep this on one
dhcp server because we have udp helper setup on our switches which doesn't
allow for multiple dhcp server entries.
option domain-name-servers 192.168.1.1, 192.168.1.2;
subnet 192.168.0.0 netmask 255.255.0.0 {
option broadcast-address 192.168.255.255;
option routers 192.168.1.254;
}
group {
host client-1 { hardware ethernet 00:AA:00:A1:12:01;
fixed-address 192.168.15.11;
option netbios-node-type 8;
}
.
.
.
}
subnet 192.168.1.0 netmask 255.255.255.192 {
option routers 192.168.1.61;
pool {
max-lease-time 28800;
default-lease-time 28800;
range 192.168.1.1 192.168.1.60;
deny unknown clients;
}
}
host client-2 { hardware ethernet 00:AA:00:B2:34:02 ; }
host client-3 { hardware ethernet 00:AA:00:C3:56:03 ; }
Right now I get the following message that says that there is a subnet
conflict.
Any idea on how to approach this problem?
Ron Gilmore
Network Manager
SUNY Oneonta
------------------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://www.isc.org/dhcp-lists.html
If you are without web access, or if you are having trouble with the web page,
please send mail to [EMAIL PROTECTED] with the subject line of
'unsubscribe'.
------------------------------------------------------------------------------