我有一个虚拟底盘的2 EX4600-40f。我的ESX连接的4个端口(0/0/1、0/0/2、0/0/3、0/0/4)是在主干模式下配置的,带有一些vlans。我想复制我的4 ESX的流量(标记)到一个端口(1/0/27),以分析它。
我已经在swtich上配置了一个分析器:
input {
ingress {
interface xe-0/0/1.0;
interface xe-0/0/2.0;
interface xe-0/0/3.0;
interface xe-0/0/4.0;
}
egress {
interface xe-0/0/1.0;
interface xe-0/0/2.0;
interface xe-0/0/3.0;
interface xe-0/0/4.0;
}
}
output {
interface xe-1/0/21.0;
}要镜像的端口配置:
xe-0/0/2 {
unit 0 {family ethernet-switching {
interface-mode trunk;
vlan {
members [ 15 51 123 207 2260-2263 ];连接网络分析器的端口:
xe-1/0/21 {
unit 0 {
family ethernet-switching {
interface-mode access;但是我在端口1/0/21上的服务器接收到的数据包上有错误的vlan标记,一半的流量被标记,其余的没有。
我该怎么做?有可能镜像一个主干端口并保存标签吗?
提前谢谢你的回答
发布于 2016-03-26 11:36:29
尝试将接口xe-1/0/21置于主干模式,而不是访问。根据MX平台上的经验,我必须在镜像端口上设置一个类似的选项,同时对数据包进行layer2镜像以保留标记。所以也许同样的伎俩也能胜任前任的工作。不过,我没有找到这方面的文件。
https://networkengineering.stackexchange.com/questions/28970
复制相似问题