I'm trying to migrate from a cisco switch to an HP 2650.
client connected to vlan 10 should get a 10.10.0/22 address
client connected to vlan 20 should get a 10.10.24/21 address
Watching my DHCP log I can see that all address request get tagged from the 10.10.16/22 which results in obvious error (below), since I don't have a scope for this range
dhcpd: DHCPDISCOVER from 00:1c:23:b5:8e:b1 via eth0: network 10.10.16/22: no free leases
DHCP server is 10.10.16.2
DHCP config below
*****************
ddns-update-style none;
ignore client-updates;
authoritative;
option domain-name "show.local";
subnet 10.10.0.0 netmask 255.255.252.0 {
option routers 10.10.0.1;
option subnet-mask 255.255.252.0;
option domain-name-servers 10.10.16.2,66.234.224.2,208.67.222.222;
option time-offset -48000;
option tftp-server-name "10.10.0.8";
default-lease-time 3600;
max-lease-time 7200;
range dynamic-bootp 10.10.0.10 10.10.3.254;
}
subnet 10.10.24.0 netmask 255.255.248.0 {
option routers 10.10.24.1;
option subnet-mask 255.255.248.0;
option domain-name-servers 10.10.16.2,66.234.224.2,208.67.222.222;
option time-offset -48000;
default-lease-time 3600;
max-lease-time 3600;
range dynamic-bootp 10.10.25.1 10.10.31.254;
}
*****************
switch config below
hostname "ProCurve Switch 2650"
ip routing
no ip directed-broadcast
snmp-server community "public" Unrestricted
vlan 1
name "DEFAULT_VLAN"
untagged 1-50
ip address 10.10.16.1 255.255.252.0
exit
vlan 10
name "shownet"
ip address 10.10.0.1 255.255.252.0
ip helper-address 10.10.16.2
tagged 41,47
exit
vlan 20
name "wireless"
ip address 10.10.24.1 255.255.248.0
ip helper-address 10.10.16.2
tagged 1-5,47
exit
ip route 0.0.0.0 0.0.0.0 10.10.16.2
password manager
password operator
***************
So what am I missing? Is it my routes?
Thanks
-Andrew