我有以下情况:
EX2200 开关丝毫
- ge-0/0/8 设置为 VLAN 80 上的访问端口
- ge-0/0/0 设置为连接到催化剂交换机的中继端口,允许通过包括 vlan 80 的各种 vlan
在Catalyst 交换机上。
- 端口 #3 设置为从 EX 交换机接收流量的中继端口。
- 端口 46 也设置为连接到 cisco 路由器的中继端口。端口#48 是主机曾经连接的地方
主机 → EX2200 → 催化剂 → 路由器
问题是这个EX2200是网络的新成员,主机之前连接到 GigabitEthernet1/48 上的催化剂交换机。
流量不是从主机到路由器,但路由器可以向主机发送 ARP 请求。
以下是相关配置:
Catalyst 交换机: interface GigabitEthernet1/3 ### trunk to EX2200 Switch switchport trunk encapsulation dot1q switchport trunk allowed vlan 69,74,80,82,231,401 switchport mode trunk !
interface GigabitEthernet1/46
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 80,82,83,93,289
switchport mode trunk
mtu 1532
media-type rj45
speed 1000
duplex full
arp timeout 300
!
interface GigabitEthernet1/48
switchport access vlan 80
switchport mode access
mtu 1532
media-type rj45
speed 100
duplex full
arp timeout 300
no cdp enable
!
EX2200 交换机:
ge-0/0/0 { ###TRUNK TO Catalyst switch on Ge 1/3
unit 0 {
family ethernet-switching {
port-mode trunk;
vlan {
members [ 69 74 80 82 231 401 ];
}
native-vlan-id 1;
}
}
}
root@XXXXX# show vlans
...
XXXXXXXXXXXXXXX { ###CONNECTS TO Host that was on cisco Ge 1/48
vlan-id 80;
interface {
ge-0/0/8.0;
}
}
...
因此,为了恢复问题,当主机连接到 cisco 交换机的端口 48 时,一切正常,但是当我们将连接移动到端口 ge-0/0/8 上的新交换机 EX2200 时,流量停止工作。
另一个注意事项是在端口 3 到 5 上的 EX2200 交换机上配置的 VLAN 69 工作正常。
我们又做了一次测试,把juniper switch换成cisco switch,流量正常。