我读到的所有内容都表明这应该有效,但由于某种原因,它没有发生。
我有一个连接到 VLAN 10 中的 DHCP 服务器 (192.168.10.3) 的交换机,以及 VLAN 7 中的两台机器:一个客户端和一个流氓 DHCP 服务器。
开关配置:
version 15.0
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Switch
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
system mtu routing 1500
ip routing
!
!
!
ip dhcp snooping vlan 7,10
ip dhcp snooping
!
!
!
!
!
!
!
!
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/1
shutdown
!
interface FastEthernet0/2
description Good DHCP server
switchport access vlan 10
ip dhcp snooping trust
!
interface FastEthernet0/3
shutdown
!
interface FastEthernet0/4
shutdown
!
interface FastEthernet0/5
shutdown
!
interface FastEthernet0/6
shutdown
!
interface FastEthernet0/7
shutdown
!
interface FastEthernet0/8
switchport access vlan 7
!
interface FastEthernet0/9
shutdown
!
interface FastEthernet0/10
shutdown
!
interface FastEthernet0/11
shutdown
!
interface FastEthernet0/12
shutdown
!
interface FastEthernet0/13
shutdown
!
interface FastEthernet0/14
shutdown
!
interface FastEthernet0/15
shutdown
!
interface FastEthernet0/16
shutdown
!
interface FastEthernet0/17
shutdown
!
interface FastEthernet0/18
shutdown
!
interface FastEthernet0/19
shutdown
!
interface FastEthernet0/20
description Client
switchport access vlan 7
spanning-tree portfast
!
interface FastEthernet0/21
shutdown
!
interface FastEthernet0/22
shutdown
!
interface FastEthernet0/23
shutdown
!
interface FastEthernet0/24
description Rogue DHCP server
switchport access vlan 7
spanning-tree portfast
!
interface GigabitEthernet0/1
!
interface GigabitEthernet0/2
!
interface Vlan1
no ip address
shutdown
!
interface Vlan7
ip address 192.168.7.1 255.255.255.0
ip helper-address 192.168.10.3
!
interface Vlan10
ip address 192.168.10.1 255.255.255.0
!
ip http server
ip http secure-server
!
!
!
no cdp run
!
!
!
line con 0
speed 19200
line vty 0 4
login
line vty 5 15
login
!
end
观察:
当恶意服务器关闭时,客户端会从良好的 DHCP 服务器获取 IP,并在 DHCP 侦听数据库中填充相应的条目
当好的 DHCP 服务器关闭而恶意服务器启动时,客户端会从恶意 DHCP 服务器获取 IP。“关闭”是指端口已关闭,或者我只是删除了服务器上的范围,因此它不响应。
DHCP 侦听调试显示良好的 DHCP 服务器发送 DHCPOFFER。然而,流氓服务器仍然获胜。
我在这里想念什么?交换机是运行 15.0(2)SE5 的 3560。我没有运行 IP 源保护或 DAI。