我有一个 2 EX4600-40f 的虚拟机箱。我的 ESX 连接的 4 个端口(0/0/1、0/0/2、0/0/3、0/0/4)配置为带有一些 VLAN 的中继模式。我想将我的 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 标记不正确,一半的流量被标记,其余的没有。
我能怎么做 ?是否可以镜像中继端口并保留标签?
提前感谢您的回答