首页 > 学院 > 网络通信 > 正文

EtherChannel配置

2019-11-04 20:36:08
字体:
来源:转载
供稿:网友

  EtherChannel是把多条独立的以太网链路捆绑成为一条单独的逻辑链路。每个EtherChannel的接口都必须具有相同的速度,以及必须都被配置为二层或者三层接口。假如EtherChannel内的某一条链路失效了,原来在失效链路上面传输的流量将会那条EtherChannel内剩下的链路上面继续进行传输。交换机将收到一个信息,表明那条EtherChannel里面的链路失效了。从EtherChannel内其中一条链路进入的广播或者多播包将会被拒绝向EtherChannel内的其他链路进行转发。
  
  为二层接口创建EtherChannel是不同于为三层接口创建EtherChannel的,但是,两种配置都需要应用逻辑接口。
  
  下面的例子显示了如何将快速以太网接口0/4和0/5作为静态访问端口被分配到VLAN 10到Channel 5里面,采用PAgP desirable模式:
  
  Switch# configure terminal
  Switch(config)# interface range fa0/4 -5
  Switch(config-if)# switchport mode access
  Switch(config-if)# switchport access vlan 10
  Switch(config-if)# channel-group 5 mode desirable
  Switch(config-if)# end
  可以采用no channel-group接口配置命令,把一个接口从EthterChannel组中删除。
  
  下面的例子显示了如何创建一个逻辑端口Channel 5并分配172.10.20.10作为它的ip地址:
  
  Switch# configure terminal
  Switch(config)# interface port-channel 5
  Switch(config-if)# no switchport
  Switch(config-if)# ip address 198.10.20.10 255.255.255.0
  Switch(config-if)# end
  可以采用no interface port-channel [port-channel-number]全局配置命令将一个port-channel删除。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表