一、VLAN配置
1.1、拓扑图
1.2、SW1配置
1.3、SW2配置
1.4、测试结果
二、单臂路由配置
2.1、拓扑图
2.2、SW1
2.3、R1
2.4、测试结果
一、VLAN配置
1.1、SW1配置
undo terminal monito ##关闭弹出信息##
sys ##进入系统视图##
[Huawei]user-interface console 0 ##进入console配置模式##
[Huawei-ui-console0]idle-timeout 0 0 ##配置永不超时##
[Huawei-ui-console0]q ##退回上一级##
[Huawei]sysname SW1 ##重命名为SW1##
[SW1]vlan batch 10 20 ##创建VLAN 10 20##
[SW1]int E0/0/1 ##进入接口##
[SW1-Ethernet0/0/1]port link-type access ##将接口配置为access##
[SW1-Ethernet0/0/1]port default vlan 10 ##将接口划分为VLAN 10##
[SW1-Ethernet0/0/1]q ##退回上一级##
[SW1]int E0/0/2 ##进入接口##
[SW1-Ethernet0/0/2]port link-type access ##将接口配置为access##
[SW1-Ethernet0/0/2]port default vlan 20 ##将接口划分为VLAN 20##
[SW1-Ethernet0/0/2]q ##退回上一级##
[SW1]int E0/0/3 ##进入接口##
[SW1-Ethernet0/0/3]port link-type trunk ##将接口配置为trunk##
[SW1-Ethernet0/0/3]port trunk allow-pass vlan 10 20 ##设置trunk允许VLAN 10 20 通过##
1.2、SW2配置
undo terminal monito ##关闭弹出信息##
sys ##进入系统视图##
[Huawei]user-interface console 0 ##进入console配置模式##
[Huawei-ui-console0]idle-timeout 0 0 ##配置永不超时##
[Huawei-ui-console0]q ##退回上一级##
[Huawei]sysname SW1 ##重命名为SW2##
[SW2]vlan batch 10 20 ##创建VLAN 10 20##
[SW2]int E0/0/1 ##进入接口##
[SW2-Eternet0/0/1]port link-type access ##将接口配置为access##
[SW2-Ethernet0/0/1]port default vlan 10 ##将接口划分为VLAN 10##
[SW2-Ethernet0/0/1]q ##退回上一级##
[SW2]int E0/0/2 ##进入接口##
[SW2-Ethernet0/0/2]port link-type access ##将接口配置为access##
[SW2-Ethernet0/0/2]port default vlan 20 ##将接口划分为VLAN 20##
[SW2-Ethernet0/0/2]q ##退回上一级##
[SW2]int E0/0/3 ##进入接口##
[SW2-Ethernet0/0/3]port link-type trunk ##将接口配置为trunk##
[SW2-Ethernet0/0/3]port trunk allow-pass vlan 10 20 ##设置trunk允许VLAN 10 20 通过##
二、单臂路由配置
2.1、SW1
undo terminal monito ##关闭弹出信息##
sys ##进入系统视图##
[Huawei]user-interface console 0 ##进入console配置模式##
[Huawei-ui-console0]idle-timeout 0 0 ##配置永不超时##
[Huawei-ui-console0]q ##退回上一级##
[Huawei]sysname SW1 ##重命名为SW1##
[SW1]vlan batch 10 20 ##创建VLAN 10 20##
[SW1]int E0/0/1 ##进入接口##
[SW1-Ethernet0/0/1]port link-type access ##将接口配置为access##
[SW1-Ethernet0/0/1]port default vlan 10 ##将接口划分为VLAN 10##
[SW1-Ethernet0/0/1]q ##退回上一级##
[SW1]int E0/0/2 ##进入接口##
[SW1-Ethernet0/0/2]port link-type access ##将接口配置为access##
[SW1-Ethernet0/0/2]port default vlan 20 ##将接口划分为VLAN 20##
[SW1-Ethernet0/0/2]q ##退回上一级##
[SW1]int E0/0/3 ##进入接口##
[SW1-Ethernet0/0/3]port link-type trunk ##将接口配置为trunk##
[SW1-Ethernet0/0/3]port trunk allow-pass vlan 10 20 ##设置trunk允许VLAN 10 20 通过##
2.2、R1
undo terminal monito ##关闭弹出信息##
sys ##进入系统视图##
[Huawei]user-interface console 0 ##进入console配置模式##
[Huawei-ui-console0]idle-timeout 0 0 ##配置永不超时##
[Huawei-ui-console0]q ##退回上一级##
[Huawei]sysname R1 ##重命名为R1##
[R1]int g0/0/0.1 ##进入子接口##
[R1-GigabitEthernet0/0/0.1]dot1q termination vid 10 ##封装协议##
[R1-GigabitEthernet0/0/0.1]ip address 192.168.10.1 24 ##配置IP##
[R1-GigabitEthernet0/0/0.1]arp broadcast enable ##开启ARP广播,高级企业路由器需要手动开启##
[R1-GigabitEthernet0/0/0.1]q ##退回上一级##
[R1]int g0/0/0.2 ##进入子接口##
[R1-GigabitEthernet0/0/0.2]dot1q termination vid 20 ##封装协议##
[R1-GigabitEthernet0/0/0.2]ip address 192.168.20.1 24 ##配置IP##
[R1-GigabitEthernet0/0/0.2]arp broadcast enable ##开启ARP广播,高级企业路由器需要手动开启##