单臂路由和Eth-trunk

一、实验拓扑图

1.实验拓扑图

二、实验目的

1.配置单臂路由和Eth-trunk

三、单臂路由和Eth-trunk

1.单臂路由(router-on-a-stick)是指在路由器的一个接口上通过配
	置子接口的方式,实现原来相互隔离的不同VLAN(之间的互联互通。
2.Eth-Trunk接口是一种可以动态创建的接口,该类型接口可以绑定若
干物理的以太网接口作为一个逻辑接口使用,实现增加带宽提高靠性的目的。
	①.通Trunk接口实现负载担Eth-Trunk接口内实现流量负载担。
	②.某员接口连接物理链路现故障流量切换其用链路提高整Trunk
	  链路靠性。
	③.Trunk接口总带宽各员接口带宽。

四、简单配置

1.sysname LSW1
#
vlan batch 5 to 6
#
interface Ethernet0/0/1
 port link-type access
 port default vlan 5
#
interface Ethernet0/0/2
 port link-type access
 port default vlan 6
#
interface GigabitEthernet0/0/1
 port link-type trunk
 port trunk allow-pass vlan 5 to 6
#
return 
2.sysname AR1
#
interface GigabitEthernet0/0/0
 ip address 10.0.12.1 255.255.255.0 
#
interface GigabitEthernet0/0/1.1
 dot1q termination vid 5
 //子接口接收数据时终结(去掉)数据包的VALN标签(和vid相同的VLAN标签)
 //子接口发送数据时打上子接口的vid
 ip address 10.0.5.254 255.255.255.0 
 arp broadcast enable
#
interface GigabitEthernet0/0/1.2
 dot1q termination vid 6
 ip address 10.0.6.254 255.255.255.0 
 arp broadcast enable
#
ospf 1 
 area 0.0.0.0 
  network 10.0.5.0 0.0.0.255 
  network 10.0.6.0 0.0.0.255 
  network 10.0.12.0 0.0.0.255 
#
return
3.sysname LSW2
#
vlan batch 5 to 8
#
interface Vlanif5
 ip address 10.0.12.2 255.255.255.0 
#
interface Vlanif7
 ip address 10.0.7.254 255.255.255.0 
#
interface Vlanif8
 ip address 10.0.8.254 255.255.255.0 
#
interface Eth-Trunk1
 port link-type trunk
 port trunk allow-pass vlan 7 to 8
#
interface GigabitEthernet0/0/1
 eth-trunk 1
#
interface GigabitEthernet0/0/2
 eth-trunk 1
#
interface GigabitEthernet0/0/24
 port link-type access
 port default vlan 5
#
ospf 1 
 area 0.0.0.0 
  network 10.0.7.0 0.0.0.255 
  network 10.0.8.0 0.0.0.255 
  network 10.0.12.0 0.0.0.255 
#
return 
4.sname LSW3
#
vlan batch 7 to 8
#
interface Eth-Trunk1
//创建并进入Eth-Trunk 1中
 port link-type trunk
 port trunk allow-pass vlan 7 to 8
#
interface Ethernet0/0/1
 port link-type access
 port default vlan 7
#
interface Ethernet0/0/2
 port link-type access
 port default vlan 8
#
interface GigabitEthernet0/0/1
 eth-trunk 1
 //加入Eth-trunk 1中
#
interface GigabitEthernet0/0/2
 eth-trunk 1
 //加入Eth-trunk 1中
#
return 

你可能感兴趣的:(VLAN终结/以太网子接口,VLAN,链路聚合,交换,单臂路由,Eth-tunk,OSPF)