'2008/10'에 해당되는 글 1건

  1. 2008.10.14 port bonding by 알 수 없는 사용자

port bonding

Tip & Tech : 2008. 10. 14. 12:28
*** Case1. 2G Port Bonding
###########################
 Backup ( Save before config )
###########################
!
dir
copy run start
###########################
 Add Port-channel ( by 39 )
###########################
show run    // Check current status of Port-channel
show vlan    // Check status of Vlan
conf t
interface Port-channel 39    // create port-channel
switchport    // 6509 의 경우 switchport mode access, switchport access vlan 1 과 같은 세팅을 해줘야 하나 3506은 default 로 올라오므로 추가 작업이 필요없었음.
###########################
 Interface configuration
###########################
!
interface GigabitEthernet 0/7
 channel-group 39 mode on    // include created port-channel at 39
!
!
interface GigabitEthernet 0/8
 channel-group 39 mode on    // include created port-channel at 39
!
###########################
 Check Port-channel
###########################
!
sh eth sum
!
###########################
 Connect RJ-45 Port
###########################
###########################
 Re-check Port-channel setting
###########################
!
sh eth sum
!


Posted by 알 수 없는 사용자