特定接口 eth1 上的 STP 数据包

网络工程 VLAN 生成树
2021-07-20 04:25:10

我有一个与某些 stp 数据包相关的问题,该数据包每 1 或 2 秒在我的服务器接口 eth1 上发送一次。这个接口连接到我的堆叠交换机,端口在公共vlan中。这是我从服务器获得的输出:

server-1:
user@server-1:~$ sudo tcpdump -vvv -p -n -i eth1 stp
tcpdump: listening on eth1, link-type EN10MB (Ethernet), capture size 65535 bytes

15:44:10.772423 STP 802.1d, Config, Flags [none], bridge-id  8000.MAC.8687, length 43
        message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s
        root-id 8000.MAC, root-pathcost 0
15:44:12.768245 STP 802.1d, Config, Flags [none], bridge-id 8000.MAC8.8687, length 43
        message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s
        root-id 8000.MAC, root-pathcost 0
15:44:14.766513 STP 802.1d, Config, Flags [none], bridge-id 8000.MAC.8687, length 43
        message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s
        root-id 8000.MAC, root-pathcost 0
15:44:16.766478 STP 802.1d, Config, Flags [none], bridge-id 8000.MAC.8687, length 43
        message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s
        root-id 8000.MAC, root-pathcost 0
15:44:18.767851 STP 802.1d, Config, Flags [none], bridge-id 8000.MAC.8687, length 43
        message-age 0.00s, max-age 20.00s, hello-time 2.00s, forwarding-delay 15.00s
        root-id 8000.MAC, root-pathcost 0
---------------------------------------------------------------------

有谁知道这里的问题是什么!?我在 Internet 上进行了研究,但有关此主题的所有查询都没有结束或没有答案。

欢迎任何帮助。

感谢您的时间。

2个回答

这只是来自交换机的生成树数据包。如果您不需要并且不想看到这些数据包,请在您的服务器接口上的交换机上禁用生成树。

这些是BPDU从开关S被发送至检测另一设备也传递BPDU。

如果您不希望您的交换机传输这些信息并且您有一台 cisco 设备,请将此配置放在任何适用的交换机端口上。

interface GigabitEthernet1/0/1
 description NO_BPDU_PORT
 switchport mode access
 spanning-tree portfast
 spanning-tree bpdufilter enable
end

请理解,如果将设备插入其中一个端口,您的交换机将不允许它参与 STP,并且可能会对您的网络造成严重破坏。查看Cisco 文档以获取更多信息。