因此,我有可配置的交换机、两台 PC(第一台 PC 在 VLAN 101 上,第二台 PC 在 VLAN 102 上)和一个在 VLAN 103 上的路由器。
VLAN 103(名为路由器)处于中继模式。
switchport mode trunk
switchport trunk allow vlan 102,103
VLAN 101(pirmas)VLAN 102(antras)处于访问模式
switchport mode access
switchport access vlan 101 / vlan 102
但我仍然无法从 VLAN 103 ping 到 VLAN101 102 或反之,即使它们是中继的。方案如下:
你能告诉我我做错了什么吗?
答案1
在路由器上,您需要将 VLAN 配置为子接口:
interface FastEthernet0/0
no ip address
no shutdown
!
interface FastEthernet0/0.101
encapsulation dot1Q 101
ip address 192.168.1.1 255.255.255.0
no shutdown
!
interface FastEthernet0/0.102
encapsulation dot1Q 102
ip address 192.168.2.1 255.255.255.0
no shutdown
!
VLAN 101 上的 PC 需要一个192.168.1.0/24
网关为 的网络地址192.168.1.1
。
192.168.2.0/24
VLAN 102 上的 PC 需要网络中网关为 的地址192.168.2.1
。
路由器不需要单独的 VLAN。您可以根据需要设置管理 VLAN,但该 VLAN 中没有任何设备。