华为supervlan+sub address组网模拟与sub vlan互通方法
一 组网说明
Supervlan100,里面有多个sub地址段
二 设备配置
2.1 HX配置
sysname HX
#
vlan batch 10 20 30 40 100 1000
#
vlan 10
description subvlan
vlan 20
description subvlan
vlan 30
description subvlan
vlan 40
description subvlan
vlan 100
description supervlan
aggregate-vlan
access-vlan 10 20 30 40
vlan 1000
description TO-R
#
interface Vlanif100
description supervlan
ipaddress 192.168.4.1 255.255.255.0
ipaddress 192.168.5.1 255.255.255.0 sub
ipaddress 192.168.6.1 255.255.255.0 sub
#
interface Vlanif1000
description TO-R
ipaddress 1.1.1.1 255.255.255.0
#
interface GigabitEthernet0/0/1
portlink-type trunk
porttrunk allow-pass vlan 10 20 30 40
#
interface GigabitEthernet0/0/2
portlink-type access
portdefault vlan 1000
#
interface LoopBack0
ipaddress 8.8.8.8 255.255.255.255
#
ip route-static 8.8.8.8 255.255.255.2551.1.1.2
#
2.2 HJ配置
sysname HJ
#
vlan batch 10 20 30 40
#
vlan 10
description subvlan
vlan 20
description subvlan
vlan 30
description subvlan
vlan 40
description subvlan
#
interface GigabitEthernet0/0/1
portlink-type trunk
porttrunk allow-pass vlan 10 20 30 40
#
interface GigabitEthernet0/0/2
portlink-type trunk
porttrunk allow-pass vlan 10
#
interface GigabitEthernet0/0/3
portlink-type trunk
porttrunk allow-pass vlan 20
#
interface GigabitEthernet0/0/4
portlink-type trunk
porttrunk allow-pass vlan 30
#
interface GigabitEthernet0/0/5
portlink-type trunk
porttrunk allow-pass vlan 40
#
2.3 JR01-4段配置
sysname JR01-4
#
vlan batch 10
#
interface GigabitEthernet0/0/1
portlink-type trunk
porttrunk allow-pass vlan 10
#
interface GigabitEthernet0/0/2
portlink-type access
portdefault vlan 10
#
2.4 JR02-4段配置
sysname JR01-4
#
vlan batch 20
#
interface GigabitEthernet0/0/1
portlink-type trunk
porttrunk allow-pass vlan 20
#
interface GigabitEthernet0/0/2
portlink-type access
portdefault vlan 20
#
2.5 JR03-5段配置
sysname JR01-4
#
vlan batch 30
#
interface GigabitEthernet0/0/1
portlink-type trunk
porttrunk allow-pass vlan 30
#
interface GigabitEthernet0/0/2
portlink-type access
portdefault vlan 30
#
2.6 JR04-6段配置
sysname JR01-4
#
vlan batch 40
#
interface GigabitEthernet0/0/1
portlink-type trunk
porttrunk allow-pass vlan 40
#
interface GigabitEthernet0/0/2
portlink-type access
portdefault vlan 40
#
2.6 R配置
sysname R
#
vlan batch 1000
#
interface Vlanif1000
ipaddress 1.1.1.2 255.255.255.0
#
interface GigabitEthernet0/0/1
portlink-type access
portdefault vlan 1000
#
ip route-static 192.168.0.0 255.255.0.01.1.1.1
#
三 业务测试
3.1 PC1测试
Subvlan的相同网段地址不通
3.2 PC2测试
类似PC1
3.2 PC3测试
类似PC1
3.4 PC4测试
类似PC1
四 supervlan虚接口下配置arp代理
4.1 supervlan虚接口下配置
[HX-Vlanif100]arp-proxy ?
enable Enable proxyARP(Address Resolve Protocol)
inner-sub-vlan-proxy Proxy ARPwithin a VLAN
inter-sub-vlan-proxy Proxy ARPbetween VLANs
[HX-Vlanif100]arp-proxy
最终配置
#
interface Vlanif100
description supervlan
ipaddress 192.168.4.1 255.255.255.0
ipaddress 192.168.5.1 255.255.255.0 sub
ipaddress 192.168.6.1 255.255.255.0 sub
arp-proxy inter-sub-vlan-proxy enable //不同vlan之间的相同网段地址
#
