默认VLAN:10..0.0/24新VLAN:10..8.0/24 DHCP服务器:10.*.0.17
我可以看到DHCP提供包,使其返回到我的VLAN IP地址,即10.*.8.31 (来自DHCP服务器消息日志)
Apr 28 15:33:13 dhcpd: DHCPOFFER on 10..8.129 to via 10..8.31然而,DHCP提供的永远无法回到我的机器连接到新的VLAN (也验证了Wireshark )。
开关为HP层-3 ProCurve.
Running(修改了一些细节):
Running configuration:
*; J9588A Configuration Editor; Created on release #KA.15.17.0008
*module 1 type j9588y
module 2 type j9588x
-fault-finder broadcast-storm sensitivity high
fault-finder bad-driver sensitivity high
fault-finder bad-transceiver sensitivity high
fault-finder bad-cable sensitivity high
fault-finder too-long-cable sensitivity high
fault-finder over-bandwidth sensitivity high
fault-finder loss-of-link sensitivity high
fault-finder duplex-mismatch-hdx sensitivity high
fault-finder duplex-mismatch-fdx sensitivity high
fault-finder link-flap sensitivity high
jumbo ip-mtu 9000
power-over-ethernet redundancy n+1
qos tcp-port ipv4 22 priority 7
qos tcp-port ipv4 80 priority 1
qos tcp-port ipv4 443 priority 0
qos type-of-service diff-services
timesync sntp
sntp broadcast
sntp server priority 1 10.x.x.x
sntp server priority 2 10.x.x.x
no telnet-server
time daylight-time-rule western-europe
no web-management
web-management ssl
ip default-gateway 10.x.0.x
ip dns server-address priority 1 10.x.0.x
ip dns server-address priority 2 10.x.0.x
no ip ssh cipher aes128-cbc
no ip ssh cipher 3des-cbc
no ip ssh cipher aes192-cbc
no ip ssh cipher aes256-cbc
no ip ssh mac hmac-md5
no ip ssh mac hmac-sha1-96
no ip ssh mac hmac-md5-96
ip route 10.x.8.0 255.255.255.0 10.x.8.1
ip routing
snmp-server community "public" unrestricted
tls application web-ssl lowest-version tls1.2
tls application openflow lowest-version tls1.2
tls application syslog lowest-version tls1.2
tls application tr69 lowest-version tls1.2
aaa authentication ssh login public-key
oobm
ip address 10..x.x 255.255.255.0
exit
router rip
redistribute connected
exit
vlan 1
name "DEFAULT_VLAN"
no untagged 20-21
untagged 1-19,22-52
ip address 10.x.0.31 255.255.255.0
ip helper-address 10.x.0.17
ip igmp
exit
vlan 8
name "WiredUsers"
untagged 20
ip address 10.x.8.31 255.255.255.0
ip helper-address 10.x.0.17
ip igmp
exit
spanning-tree对于为什么DHCP不能在同一子网上从10.x.8.31跳到我的机器,有什么建议吗?
发布于 2016-04-29 21:10:03
解决这个问题的方法是没有从dhcp服务器到vlan的正确路由。在我添加了一个
sudo路由在dhcp服务器上添加-net 10.36.8.0/24 gw 10.36.0.31 dev bond0 (其中10.36.0.31是vlan的地址)。谢谢你抽出时间来回应!
https://networkengineering.stackexchange.com/questions/30031
复制相似问题