switch命令汇总

1、设置主机名
switch(config)# hostname 主机名
 
2、设置使能口令
switch(config)# enable password 口令
switch(config)# enable secret 口令
 
3.设置交换机IP
switch(config)# interface vlan 1
switch(config-if)# ip address ip-address netmask
switch(config-if)# ip default-gateway ip-address
 
4. 为了将交换机配置成一个集群的命令交换机,首先要给管理接口分配一个IP地址,然后使用下列命令
switch(config)# cluster enable cluster-name
 
5.基于IOS的交换机的端口描述
switch(config-if)# description description-string
 
6.在基于IOS的交换机上设置端口速度
switch(config-if)# speed{10|100|auto}
 
7.在基于IOS的交换机上设置以太网的链路模式:
switch(config-if)# duplex {auto|full|half}
 
8.在基于IOS的交换机上配置静态VLAN
方法一:vlan数据库模式
switch# vlan database
switch(vlan)# vlan vlan-id name vla-name
switch(vlan)# exit
方法二:全局模式
switch# configure teriminal
switch(config)# vlan vlan-id
switch(config)# name vlan-name
 
9.将接口加入vlan
switch(config)#interface type slot/port
switch(config-if)# switchport access vlan vlan-id
switch(config-if)# end
 
将多个端口加入vlan
interface range f0/1 -10
switchport mode acccess
switchport access vlan 20
注意,f0/1后面有个空格,然后才是-10
 

10.在基于IOS的交换机上配置VLAN中继链路
switch(config)# interface type slot/port
switch(config-if)# switchport mode trunk
switch(config-if)# switchport trunk encapsulation {isl|dotlq}
注:trunk,中继链路默认承载所有vlan的数据。
可以从trunk中删除某个vlan:
switch(config-if)# switchport trunk allowed vlan remove vlan-list
也可以在trunk上添加某个vlan:
switch(config-if)# switchport trunk allowed vlan add vlan-list

11.在基于IOS的交换机上配置VTP管理域
创建vtp域名
switch(config)# vtp domain domain-name
配置vtp模式
switch(config)# vtp  mode {sever|cilent|transparent}
配置vtp密码
switch(config)# vtp password 密码
配置vtp修剪
switch(config# vtp pruning
配置vtp版本
switch(config# vtp version 2
注意:vtp可以再全局模式下配置,也可以在vlan database数据库模式下配置。

12.配置以太信道(将多个物理接口逻辑捆绑在一起)
switch(config)# interface range f0/1 - 2
switch(config-if-range)# channel-group 1 mode on

13.STP的配置命令
启用生成树(默认是启用的)
switch(config)#spanning-stree vlan vlan-list
配置交换机为根网桥
switch(config)#spanning-tree vlan vlan-list root primary | secondary
修改交换机的优先级
switch(config)#spanning-tree vlan vlan-list priority bridge-priority
修改端口路径成本
switch(config-if)#spanning-tree vlan vlan-list cost 端口成本
修改端口优先级
switch(config)#spanning-tree vlan vlan-list port-priority priority
配置上行速链路
switch(config)#spanning-tree uplinkfast
配置速端口
switch(config-if)#spanning-tree  portfast

14.show命令
查看当前的配置信息
switch# show run
查看接口的配置(包括描述、速率、双工、连接状态)
switch# show  int status
查看MAC地址表:
switch# show mac-address-table
查看vlan信息
switch# show vlan
查看端口的模式
switch# show int f0/0 switchport
查看vtp配置信息
switch# show vtp status
查看以太网通道的配置
switch# show etherchannel 1 summary
查看生成树信息
switch# show spanning-tree

你可能感兴趣的:(职场,休闲)