思科模拟器 --- 配置交换机的端口镜像
时间: 2023-09-20 10:08:44 浏览: 119
在思科模拟器中配置交换机的端口镜像,可以按照以下步骤进行操作:
1. 进入交换机配置模式
```
enable
configure terminal
```
2. 创建监视会话
```
monitor session 1 source interface <source-interface> both
```
其中,`<source-interface>` 为需要被监视的接口。`both` 表示监视源接口的入站和出站流量。
3. 设置监视目标
```
monitor session 1 destination interface <destination-interface>
```
其中,`<destination-interface>` 为监视流量的目标接口。
4. 保存配置
```
end
copy running-config startup-config
```
以上就是在思科模拟器中配置交换机的端口镜像的步骤。
阅读全文