Cisco switches wave configuration

Cisco switches wave configuration

1, an example of the configuration vlan

vlan  3
no shutdown
#####################################
interface vlanif 3
no shutdown

2, the configuration aggregation port

interface port-channel 1
no shutdown

3, the configuration interface polymerization, the polymerization and added to the physical interface port (mode of Active), and set the trunk, perform vlan allow all through.

############################################################################
#注意:接口的设置要和聚合端口配置设置成一样才能将物理端口加入到聚合端口。
############################################################################
interface port-channel  1
no shutdown
switchport 
switchport mode trunk
switchport trunk allow vlan all

#########################################################
interface Ethernet 0/2
no shutdown
switchport
switchport mode trunk
switchport trunk allow vlan all
channel-group 1 mode active

4, set the mtu

############################################################################
#注意:接口的设置要和聚合端口配置设置成一样才能将物理端口加入到聚合端口。
############################################################################
interface port-channel  1
no shutdown
switchport 
switchport mode trunk
switchport trunk allow vlan all
mtu 9216

#########################################################
interface Ethernet 0/2
no shutdown
switchport
switchport mode trunk
switchport trunk allow vlan all
mtu 9216
channel-group 1 mode active

###########################################################
vlan 2
no shutdown

interface vlanif 2
no shutdown
mtu 9216    

Guess you like

Origin www.cnblogs.com/yanling-coder/p/11986806.html