现需要把多个安全设备连接到sw-1、sw-2是设备的1/0/19-21口要求设置vlan3000为镜像vlan,e1/0/22为反射端口
时间: 2023-12-10 21:06:12 浏览: 196
SW_GDC_GettingStarted_v1-1_EN_DE
好的,针对您的需求,我可以为您提供以下配置:
```
sw-1(config)# vlan 3000
sw-1(config-vlan)# name mirror-vlan
sw-1(config-vlan)# exit
sw-2(config)# vlan 3000
sw-2(config-vlan)# name mirror-vlan
sw-2(config-vlan)# exit
sw-1(config)# monitor session 1 source interface e1/0/19 - 21
sw-1(config)# monitor session 1 destination interface e1/0/22
sw-1(config)# monitor session 1 vlan 3000
sw-2(config)# monitor session 1 source interface e1/0/19 - 21
sw-2(config)# monitor session 1 destination interface e1/0/22
sw-2(config)# monitor session 1 vlan 3000
```
这份配置会将设备的1/0/19-21口作为监控源端口,e1/0/22口作为反射端口,同时将vlan3000设置为镜像vlan。这样,当有流量通过1/0/19-21口时,会被镜像到vlan3000,并且通过e1/0/22口进行转发。
阅读全文