华为路由器子接口,vlan

VLAN:虚拟局域网
路由器和交换机协同工作,之后将原来的一个广播域逻辑的切分为多个;
配置思路:
1、交换机上创建vlan
2、交换机上各个接口划分到对应的vlan中
3、TRUNK干道----中继干道 SW-SW SW-ROUTER
4、Vlan间路由-----单臂路由(子接口)、多层交换机
创建vlan 0-4095 其中 1-4094可用
1-1005标准vlan
1006-4094扩展vlan — VTP模式必须为透明模式

默认交换机上存在vlan1,1002-1005;且所有的接口默认处于vlan1
拓扑图:
华为路由器子接口,vlan_第1张图片

在SW1 SW2 SW3上划分vlan并把接口划入不同的vlan,配置过程:
sw1上:
vlan batch 11 12
quit
int g0/0/3
port link-type access//设置接口模式为access模式
port default vlan11
quit
int g0/0/4
port link-type access
port default vlan12
quit
int g0/0/1
port link-type trunk//设置接口模式为trunk模式
port trunk allow-pass vlan all//允许所有vlan通过trunk
quit
int g0/0/0/2
port link-type trunk
port trunk allow-pass vlan all
同理在SW2 SW3 上配置
在R1 上起子接口
int g0/0/0.1//起子接口1
ip address 192.168.1.1 24
dot1q terminatiion vid11//子接口允许vlan11通过
arp brodcast enable
quit
int g0/0/0.2//起子接口2
ip address 192.168.2.1 24
dot1q terminatiion vid12//子接口允许vlan12通过
arp brodcast enable
quit
int g0/0/0.3//起子接口3
ip address 192.168.3.1 24
dot1q terminatiion vid13//子接口允许vlan13通过
arp brodcast enable
quit
然后 在R2路由器上:
int g0/0/0
ip address 192.168.1.2 24
quit在
R3上

int g0/0/0
ip address 192.168.2.2 24
quit
R4 上同理

你可能感兴趣的:(华为路由器)