Trunk

Trunk的作用

  .不同的交换机之间相同vlan通信

 

Trunk的模式和协商

  接入(access):永久非中继模式

  干道(trunk):永久中继模式

  动态期望(dynamicdesirable):主动尝试将链路转换为中继链路

  动态自动(dynamicauto):被动将链路转换为中继链路

  非协商(nonegotiate):禁止接口产生DTP

 

Trunk的配置

1.在接口配置模式,选择封装类型

   Switch(config-if)#switchport  trunk  encapsulation  dot1q

2.将接口配置为trunk

   Switch(config-if)#switchport  mode trunk

3.(可选)指定Native  vlan

   Switch(config-if)#switchport  trunk native  vlan  vlan-id

4.不需要trunk传送某个VLan的数据,可以从trunk中删除这个vlan

   Switch(config-if)#switchport  trunk allowed  vlan  remove vlan-id

5.trunk上添加某个vlan

    Switch(conifig-if)#switchport  trunk allowed  vlan  add vlan-id

6.查看接口模式

    Switch#show  interface interface-id  switchport

 

EthernetChannel

  1.多条线路负载均衡,带宽提高

  2.容错,当一条线路失效是,其他线路通信,不会丢包

 

以太网通道的配置

Switch(config)#interface  range fastethernet  0/1 �C 2

Switch(config-if-range)#channel-group  1  modeon


你可能感兴趣的:(trunk)