分类: 系统运维
2010-05-14 22:13:19
假设要将19和27号端口的数据镜像到2号端口,按如下操作进行:
1. 通过串口登陆到交换机,其中参数设置为:速率9600bps,8位数据位,1位停止位,无奇偶校验,无流量控制。
2. 交换机上电自检然后登入后出现命令提示符:“Switch>”。
3. 依次进入特权模式和全局模式,输入如下命令:
Switch>enable
Password:
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#
4. 在新session中,将端口19和27设置为被监听端口(source),2号端口设置为监听端口(destination),命令如下:
Switch(config)#monitor session 1 source interface Fa0/19
Switch(config)#monitor session 1 source interface Fa0/27
Switch(config)#monitor session 1 destination interface Fa0/2
Switch(config)#end
Switch#
03:30:52: %SYS-5-CONFIG_I: Configured from console by console
5. 完成,quit并断开连接即可。