1、初始配置
 
Would you like to enter the initial configuration dialog? [yes/no]:  是否按提示步骤操作    % Please answer yes or no. 
Would you like to enter the initial configuration dialog? [yes/no]: n  输入n(自己手工设置)    Press RETURN to get
started!   
Switch>     首先看到的是用户模式  
Switch>en   输入en(即 enable)进入特权模式   
Switch#conf t 进入配置模式 
      Enter configuration commands, one per line. End with CNTL/Z. 
Switch(config)#hostname sw2960  给交换机命名  
sw2960(config)#enable secret Cisco   设置特权加密口令  
sw2960(config)#enable password Cisco  给交换机配置特权管理口令(明码的)
sw2960(config)#line consle 0   进入控制台口( RS232)
sw2960(config-line)#password Cisco   设置登录口令  
sw2960(config-line)#login   登录要求口令验证  
sw2960(config-line)#exit 退出到上级目录 
sw2960(config)#line vty 0 4  给交换机开启远程管理      
sw2960(config-line)#pass Cisco!  设置远程管理口令     
sw2960(config-line)#login  允许远程登陆    
sw2960(config-line)#exit  退出到上级目录    
sw2960(config)#int vlan 1  进入vlan1 接口    
sw2960(config-if)#no shut  开启此接口  
  1y13w: %LINK-3-UPDOWN: Interface Vlan1, changed state to up 
  1y13w: %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up 
sw2960(config-if)#ip add 192.168.1.2 255.255.255.0  设置此接口地址    
sw2960(config-if)#exit  退出到上一层  
sw2960(config-if-range)#exit  退出到上一级目录  
sw2960(config)#show run   查看配置信息    
sw2960(config)#end  退到根目录  
sw2960#write  保存配置   
 
2、bond配置(负载均衡)
switch(config)#interface range gigabitEthernet 2/0/1-2   将fasternet0/1和0/2 口捆绑
switch(config-if)#channel-group 1 mode on    配置以太通道模式 
switch(config-if)#port-channel load-balance {dst-mac | src-mac}在链路间实现负载均衡  switch#show etherchannel  1  summary    查看通道信息 
switch#show etherchannel  load-balance    查看通道信息
 

版权声明:本文为buhejiu原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/buhejiu/p/8377135.html