赞
踩
链路聚合组LAG(Link Aggregation Group)是指将若干条以太链路捆绑在一起形成一条逻辑链路,也称Eth-Trunk链路。每个聚合组对应一个链路聚合接口或Eth-Trunk接口,组成Eth-Trunk接口的各个物理接口称为成员接口,成员接口对应的链路称为成员链路。链路聚合接口可以作为普通的以太网接口来使用,与普通以太网接口的差别在于:转发的时候链路聚合组需要从成员接口中选择一个或多个接口来进行数据转发。
路由器间的聚合、三层交换机间的聚合、路由器和交换机间的聚合等,本次实验基于三层交换机间的聚合,采用静态LACP模式,默认为手动负载。
LAG是一种链路聚合技术,当在两台交换机之间并行连接多个端口并将它们配置为LAG时,链路聚合组就会形成,而LACP是一种自动建立LAG的控制协议,用于启用LAG自动配置网络交换机端口、分离链路故障和激活故障切换。
1.配置环境
2.SW1配置
注意:配置完eth-trunk后不要忘记 undo shutdown
#
sysname SW1
#
undo info-center enable
#
vlan batch 10 30
#
interface Vlanif10
ip address 192.168.1.17 255.255.255.248
#
interface Vlanif30
ip address 192.168.1.1 255.255.255.252
#
interface MEth0/0/1
#
interface Eth-Trunk1
port link-type access
port default vlan 30
mode lacp-static
lacp preempt delay 20
#
interface GigabitEthernet0/0/1
port link-type access
port default vlan 10
#
interface GigabitEthernet0/0/23
eth-trunk 1
#
interface GigabitEthernet0/0/24
eth-trunk 1
#
ip route-static 192.168.1.8 255.255.255.248 192.168.1.2
#
3.SW2配置
sysname SW2
#
undo info-center enable
#
vlan batch 20 30
#
interface Vlanif20
ip address 192.168.1.9 255.255.255.248
#
interface Vlanif30
ip address 192.168.1.2 255.255.255.252
#
interface MEth0/0/1
#
interface Eth-Trunk1
port link-type access
port default vlan 30
mode lacp-static
lacp preempt delay 20
#
interface GigabitEthernet0/0/1
port link-type access
port default vlan 20
#
interface GigabitEthernet0/0/23
eth-trunk 1
#
interface GigabitEthernet0/0/24
eth-trunk 1
#
ip route-static 192.168.1.16 255.255.255.240 192.168.1.1
4.测试
SW1的eth-trunk配置结果
SW2的eth-trunk配置结果
SW1到SW2的连通性测试
SW2到SW1的连通性测试
PC1到PC2的连通性测试
PC2到PC1的连通性测试
个人学习实验,仅供参考!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。