交换机VRRP+MSTP典型配置实验
一、组网需求
1、SW-A、SW-B选用两台锐捷的s5750 ;SW-C 、shwich d 选
用锐捷的 SW-C750和SW-C760
2、全网共有两个业务vlan ,为 vlan 10 、vlan 20
3、SW-A 、SW-B 都分别对两vlan起用两vrrp组,实现两组的业务的负载分担和备份。
4、SW-A、SW-B、SW-C、SW-D 都起用 mstp多生成数协议,并且所有设备都属于同一个mst域,且实例映射一致(vlan 10映射实例1、vlan 20映射实例2 其他vlan映射默认实例0)。
5、Vlan 10业务以SW-A为根桥; vlan 20业务以SW-B为根桥;实现阻断网络环路,并能实现不同vlan数据流负载分担功能。
二、组网拓扑
三、配置说明
1、SW-A配置:
SW-A#show run
Building configuration...
Current configuration : 1651 bytes
!
version RGNOS 10.2.00(2), Release(29287)(Tue Dec 25 20:39:14 CST 2007 -ngcf49)
hostname SW-A
co-operate enable
!
!
!
vlan 1
!
vlan 10
!
vlan 20
!
!
no service password-encryption
!
spanning-tree //开启生成树(默认为mstp)
spanning-tree mst configuration //进入mst配置模式
revision 1 //指定MST revision number 为1
name region1 //指定mst配置名称
instance 0 vlan 1-9, 11-19, 21-4094 //缺省情况下vlan都属于实例0
instance 1 vlan 10 //手工指定vlan10属于实例1
instance 2 vlan 20 //手工指定vlan20属于实例2
spanning-tree mst 1 priority 0 //指定实例1的优先级为0(为根桥)
spanning-tree mst 2 priority 4096 //指定实例2的优先级为4096
interface GigabitEthernet 0/1
switchport access vlan 10 //配置g0/1属于vlan10
!
interface GigabitEthernet 0/2
switchport access vlan 20 // 配置g0/2属于vlan 20
!
interface GigabitEthernet 0/3
!
.
.
interface GigabitEthernet 0/24 //设置g0/24为trunk接口且允许vlan10/20通过
switchport mode trunk
!
interface VLAN 10 //创建vlan 10 svi接口
ip address 192.168.10.1 255.255.255.0 //配置ip地址
vrrp 1 priority 120 //配置vrrp组1 优先级为120
vrrp 1 ip 192.168.10.254 //配置vrrp组 1虚拟ip地址为 192.168.10.254
!
interface VLAN 20 //创建vlan 20 svi接口
ip address 192.168.20.1 255.255.255.0 //配置ip地址
vrrp 2 ip 192.168.20.254 //配置vrrp组 2虚拟ip地址为 192.168.20.254
//默认vrrp组的优先级为100默认不显示
!
line con 0
line vty 0 4
login
SW-A #show vlan
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
---
1 VLAN0001 STATIC Gi0/3, Gi0/4, Gi0/5, Gi0/6
Gi0/7, Gi0/8, Gi0/9, Gi0/10
Gi0/11, Gi0/12, Gi0/13, Gi0/14
Gi0/15, Gi0/16, Gi0/17, Gi0/18
Gi0/19, Gi0/20, Gi0/21, Gi0/22
Gi0/23, Gi0/24
10 VLAN0010 STATIC Gi0/1, Gi0/24
20 VLAN0020 STATIC Gi0/2, Gi0/24
2、SW-B配置:
SW-B#show run
Building configuration...
Current configuration : 1607 bytes
!
version RGNOS 10.2.00(2), Release(27932)(Thu Dec 13 10:32:09 CST 2007 -ngcf31)
hostname SW-B
!
!
!
vlan 1
!
vlan 10
!
vlan 20
!
!
no service password-encryption
!
spanning-tree
spanning-tree mst configuration
revision 1
name region1
instance 0 vlan 1-9, 11-19, 21-4094
instance 1 vlan 10
instance 2 vlan 20
spanning-tree mst 1 priority 4096
spanning-tree mst 2 priority 0
interface GigabitEthernet 0/1
switchport access vlan 10
!
interface GigabitEthernet 0/2
switchport access vlan 20
!
.
.
interface GigabitEthernet 0/24
switchport mode trunk
!
interface VLAN 10
ip address 192.168.10.2 255.255.255.0
vrrp 1 ip 192.168.10.254
!
interface VLAN 20
ip address 192.168.20.2 255.255.255.0
vrrp 2 priority 120
vrrp 2 ip 192.168.20.254
!
line con 0
line vty 0 4
login
!
!
end
SW-B#show vlan
VLAN Name Status Ports
---- -------------------------------- --------- --------------------------------
---
1 VLAN0001 STATIC Gi0/3, Gi0/4, Gi0/5, Gi0/6
Gi0/7, Gi0/8, Gi0/9, Gi0/10
Gi0/11, Gi0/12, Gi0/13, Gi0/14
Gi0/15, Gi0/16, Gi0/17, Gi0/18
Gi0/19, Gi0/20, Gi0/21, Gi0/22
Gi0/23, Gi0/24
10 VLAN0010 STATIC Gi0/1, Gi0/24
20 VLAN0020 STATIC Gi0/2, Gi0/24
3、SW-C配置:
SW-C#show run
Building configuration...
Current configuration : 1540 bytes
!
version RGNOS 10.2.00(2), Release(28794)(Fri Dec 21 09:27:15 CST 2007 -ngcf32)
hostname SW-C
!
vlan 1
!
vlan 10
!
!
service password-encryption
!
spanning-tree
spanning-tree mst configuration
revision 1
name region1
instance 0 vlan 1-9, 11-19, 21-4094
instance 1 vlan 10
instance 2 vlan 20
spanning-tree mst 1 priority 0
spanning-tree mst 2 priority 4096
interface FastEthernet 0/1
switchport access vlan 10
!
interface FastEthernet 0/2
switchport access vlan 10
!
.
.
interface GigabitEthernet 0/25
!
interface GigabitEthernet 0/26
!
interface GigabitEthernet 0/27
!
interface GigabitEthernet 0/28
!
interface VLAN 10
ip address 192.168.10.3 255.255.255.0
!
ip route 0.0.0.0 0.0.0.0 192.168.10.254
!
!
line con 0
line vty 0 4
login
4、SW-D配置:
SW-D#show run
Building configuration...
Current configuration : 1066 bytes
!
version RGNOS 10.2.00(2), Release(27932)(Thu Dec 13 10:31:41 CST 2007 -ngcf32)
hostname SW-D
!
vlan 1
!
vlan 20
!
!
no service password-encryption
!
spanning-tree
spanning-tree mst configuration
revision 1
name region1
instance 0 vlan 1-9, 11-19, 21-4094
instance 1 vlan 10
instance 2 vlan 20
spanning-tree mst 1 priority 4096
spanning-tree mst 2 priority 0
interface GigabitEthernet 0/1
switchport access vlan 20
!
interface GigabitEthernet 0/2
switchport access vlan 20
!
.
.
interface GigabitEthernet 0/12
!
interface VLAN 20
ip address 192.168.20.3 255.255.255.0
!
!
!
!
ip route 0.0.0.0 0.0.0.0 192.168.20.254
!
!
line con 0
line vty 0 4
login
!
四、查看VRRP、MSTP相关信息
1、SW-A 信息:
SW-A#show vrrp //查看vrrp 信息
VLAN 10 - Group 1
State is Master
Virtual IP address is 192.168.10.254 configured
Virtual MAC address is 0000.5e00.0101
Advertisement interval is 1 sec
Preemption is enabled
min delay is 0 sec
Priority is 120
Master Router is 192.168.10.1 (local), priority is 120
Master Advertisement interval is 1 sec
Master Down interval is 3 sec
VLAN 20 - Group 2
State is Backup
Virtual IP address is 192.168.20.254 configured
Virtual MAC address is 0000.5e00.0102
Advertisement interval is 1 sec
Preemption is enabled
min delay is 0 sec
Priority is 100
Master Router is 192.168.20.2 , priority is 120
Master Advertisement interval is 1 sec
Master Down interval is 3 sec
SW-A#show spanning-tree interface gigabitEthernet 0/1 //查看g0/1接口stp状态信息
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.00d0.f836.ed70
PortDesignatedPort : 8001
PortForwardTransitions : 6
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : designatedPort
###### MST 1 vlans mapped :10
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :0001.00d0.f823.ef82
PortDesignatedPort : 8001
PortForwardTransitions : 5
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : rootPort
###### MST 2 vlans mapped :20
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :1002.00d0.f836.ed70
PortDesignatedPort : 8001
PortForwardTransitions : 4
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : designatedPort
SW-A#show spanning-tree interface gigabitEthernet 0/2 //查看g0/2接口stp状态信息
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.00d0.f836.ed70
PortDesignatedPort : 8002
PortForwardTransitions : 5
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
###### MST 1 vlans mapped :10
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :0001.00d0.f836.ed70
PortDesignatedPort : 8002
PortForwardTransitions : 4
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
###### MST 2 vlans mapped :20
PortState : discarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :0002.00d0.f8d7.ae12
PortDesignatedPort : 8002
PortForwardTransitions : 3
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : alternatePort
SW-A#show spanning-tree interface gigabitEthernet 0/24 g0/24 //接口stp状态信息
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.001a.a909.8fe0
PortDesignatedPort : 8018
PortForwardTransitions : 5
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : rootPort
###### MST 1 vlans mapped :10
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :0001.00d0.f836.ed70
PortDesignatedPort : 8018
PortForwardTransitions : 5
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
###### MST 2 vlans mapped :20
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :0002.001a.a909.8fe0
PortDesignatedPort : 8018
PortForwardTransitions : 4
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : rootPort
2、SW-B 信息:
SW-B#show vrrp
VLAN 10 - Group 1
State is Backup
Virtual IP address is 192.168.10.254 configured
Virtual MAC address is 0000.5e00.0101
Advertisement interval is 1 sec
Preemption is enabled
min delay is 0 sec
Priority is 100
Master Router is 192.168.10.1 , priority is 120
Master Advertisement interval is 1 sec
Master Down interval is 3 sec
VLAN 20 - Group 2
State is Master
Virtual IP address is 192.168.20.254 configured
Virtual MAC address is 0000.5e00.0102
Advertisement interval is 1 sec
Preemption is enabled
min delay is 0 sec
Priority is 120
Master Router is 192.168.20.2 (local), priority is 120
Master Advertisement interval is 1 sec
Master Down interval is 3 sec
SW-B#
SW-B#
SW-B#show spanning-tree interface gigabitEthernet 0/1
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.001a.a909.8fe0
PortDesignatedPort : 8001
PortForwardTransitions : 1
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : designatedPort
###### MST 1 vlans mapped :10
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :0001.00d0.f823.ef82
PortDesignatedPort : 8002
PortForwardTransitions : 2
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : rootPort
###### MST 2 vlans mapped :20
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :0002.001a.a909.8fe0
PortDesignatedPort : 8001
PortForwardTransitions : 1
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : designatedPort
SW-B#
SW-B#show spanning-tree interface gigabitEthernet 0/2
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.001a.a909.8fe0
PortDesignatedPort : 8002
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
###### MST 1 vlans mapped :10
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :1001.001a.a909.8fe0
PortDesignatedPort : 8002
PortForwardTransitions : 2
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
###### MST 2 vlans mapped :20
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :0002.001a.a909.8fe0
PortDesignatedPort : 8002
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
SW-B#
SW-B#show spanning-tree interface gigabitEthernet 0/24
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.001a.a909.8fe0
PortDesignatedPort : 8018
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
###### MST 1 vlans mapped :10
PortState : discarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :0001.00d0.f836.ed70
PortDesignatedPort : 8018
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : alternatePort
###### MST 2 vlans mapped :20
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :0002.001a.a909.8fe0
PortDesignatedPort : 8018
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
SW-B#
3、SW-C信息:
SW-C#show spanning-tree interface fastEthernet 0/1
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : discarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.00d0.f836.ed70
PortDesignatedPort : 8001
PortForwardTransitions : 1
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : alternatePort
###### MST 1 vlans mapped :10
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :0001.00d0.f823.ef82
PortDesignatedPort : 8001
PortForwardTransitions : 1
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : designatedPort
###### MST 2 vlans mapped :20
PortState : discarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :1002.00d0.f836.ed70
PortDesignatedPort : 8001
PortForwardTransitions : 0
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : alternatePort
SW-C#
SW-C#
SW-C#
SW-C#
SW-C#show spanning-tree interface fastEthernet 0/2
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.001a.a909.8fe0
PortDesignatedPort : 8001
PortForwardTransitions : 1
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : rootPort
###### MST 1 vlans mapped :10
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :0001.00d0.f823.ef82
PortDesignatedPort : 8002
PortForwardTransitions : 2
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : designatedPort
###### MST 2 vlans mapped :20
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :0002.001a.a909.8fe0
PortDesignatedPort : 8001
PortForwardTransitions : 1
PortAdminPathCost : 200000
PortOperPathCost : 200000
PortRole : rootPort
SW-C#
4、SW-D 信息:
SW-D#show spanning-tree interface gigabitEthernet 0/1
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.001a.a909.8fe0
PortDesignatedPort : 8002
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : rootPort
###### MST 1 vlans mapped :10
PortState : discarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :1001.001a.a909.8fe0
PortDesignatedPort : 8002
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : alternatePort
###### MST 2 vlans mapped :20
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :0002.001a.a909.8fe0
PortDesignatedPort : 8002
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : rootPort
SW-D#
SW-D#
SW-D#
SW-D#show spanning-tree interface gigabitEthernet 0/2
PortAdminPortFast : Disabled
PortOperPortFast : Disabled
PortAdminAutoEdge : Enabled
PortOperAutoEdge : Disabled
PortAdminLinkType : auto
PortOperLinkType : point-to-point
PortBPDUGuard : Disabled
PortBPDUFilter : Disabled
###### MST 0 vlans mapped :1-9, 11-19, 21-4094
PortState : discarding
PortPriority : 128
PortDesignatedRoot : 8000.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :8000.00d0.f836.ed70
PortDesignatedPort : 8002
PortForwardTransitions : 1
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : alternatePort
###### MST 1 vlans mapped :10
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0001.00d0.f823.ef82
PortDesignatedCost : 0
PortDesignatedBridge :0001.00d0.f836.ed70
PortDesignatedPort : 8002
PortForwardTransitions : 2
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : rootPort
###### MST 2 vlans mapped :20
PortState : forwarding
PortPriority : 128
PortDesignatedRoot : 0002.001a.a909.8fe0
PortDesignatedCost : 0
PortDesignatedBridge :0002.00d0.f8d7.ae12
PortDesignatedPort : 8002
PortForwardTransitions : 2
PortAdminPathCost : 20000
PortOperPathCost : 20000
PortRole : designatedPort
SW-D#
- 点赞
- 收藏
- 关注作者
评论(0)