路由器端口镜像实验
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了路由器端口镜像实验相关的知识,希望对你有一定的参考价值。
参考技术A 之前学的一直都是用的交换机来做的端口镜像的实验,最近了解到路由器也可以做端口镜像(实际上就是对数据的再转发)设备一:
#
sysname AR1
#
interface
gi0/0/0
ip address 1.1.1.254 255.255.255.0
mirror to observe-server both //指定需要镜像的端口
#
interface
gi0/0/1
ip address 2.2.2.254 255.255.255.0
#
interface
gi0/0/2
ip address 12.1.1.1 255.255.255.0
#
observe-server destination-ip 3.3.3.3 source-ip 12.1.1.1 //数据发往哪里
#
iproute-static 0.0.0.0 0.0.0.0 12.1.1.2 //配置静态路由
#
设备二: //设备2上不需要进行什么特殊的设置
sysname AR2
#
interfacegi0/0/1
ip address 3.3.3.254 255.255.255.0
#
interfacegi0/0/2
ip address 12.1.1.2 255.255.255.0
#
iproute-static 0.0.0.0 0.0.0.0 12.1.1.1 //配置静态路由
在ar2上的g0/0/1接口下能够抓到pc1 ping p2 的包
以上是关于路由器端口镜像实验的主要内容,如果未能解决你的问题,请参考以下文章