I have configure a Linux DHCP Server, The configuration are
----------------------------------------------
ddns-update-style interim;
ignore client-updates;
default-lease-time 21600;
max-lease-time 43200;
DHCPDARGS = "eth1 eth1:1 eth1:2 eth1:3";
# shared-network
shared-network name {
option domain-name-servers 192.168.0.1, 192.168.0.254;
subnet 10.10.0.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option routers 10.10.0.1;
range dynamic-bootp 10.10.0.2 10.10.0.254;
}
subnet 10.10.1.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option routers 10.10.1.1;
range dynamic-bootp 10.10.1.2 10.10.1.254;
}
subnet 10.10.2.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option routers 10.10.2.1;
range dynamic-bootp 10.10.2.2 10.10.2.254;
}
subnet 10.10.3.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option routers 10.10.3.1;
range dynamic-bootp 10.10.3.2 10.10.3.254;
}
}
--------------------------------------------
Above dhcpd.conf, config file work but assign any IP address to any client.
I want to configure specific vlan assign specific subnet
like
vlan 1 ==> assign ==> 10.10.0.x
vlan 2 ==> assign ==> 10.10.1.x
vlan 3 ==> assign ==> 10.10.2.x
vlan 4 ==> assign ==> 10.10.3.x
and so on...
As i am new to HP devices, Can any one explain in details of each steps.
Thanks in advance.