交换机可以为接入交换机的任意两个网络节点提供独享的电信号通路,最常见的交换机是以太网交换机。虽然说现在大多数的交换机不需要进行配置就能直接使用,但是某些时候还是需要我们使用交换机命令对交换机进行设置。而交换机命令则是一种计算机语言,是专门用来控制交换机的语言。那么网络交换机命令有哪些呢?赛耐斯给大家科普一下。
一、模式命令
-
用户模式:Switch>
-
特权模式:Switch>enable Switch #
-
全局配置模式:Switch#config terminal Switch(config) #
-
接口配置模式:Switch(config)#interface fastethernet0/1 Switch(config-if) #
-
Line模式:Switch(config)#line console 0 Switch(config-line) #
二、特权模式下的命令
-
查看机MAC地址:Switch#show mac-address-table
-
发现(CDP): Switch#show cdp Switch#show cdp interface fastethernet0/1 Switch#show cdp neighbors Switch#show cdp neighbors detail Switch#show cdp entry
-
保存机配置: Switch#copy running-config startup-config或者Switch#write
-
恢复交换机出厂值: Switch#erase startup-config Switch#reload
三、全局配置模式下的命令
-
配置主机名:Switch(config)#hostname Sw1 Sw1(config) #
-
设置登陆台密码:Switch(config)#line console 0 Switch(config-line)#password 密码 Switch(config-line)#login
-
使能口令:Switch(config)#enable Password 密码
-
加密保存的使能口令:Switch(config)#enable secret 密码
-
配置IP地址: Switch(config)#interface vlan 1 Switch(config-if)#ip address IP地址 网关 Switch(config-if)#no shutdown
-
配置交换机网关:Switch(config)#ip default-gateway 网关
四、VLAN配置命令
-
创建vlan命令: a) 全局配置模式下: Switch(config)#vlan2、 Switch(config)#name v2 Switch(config)#mtu 数值 Switch(config)#end b) Vlan数据库下: Switch#vlan database Switch#vlan 2 name v2 Switch#vlan 2 mut 数值 Switch#exit
-
删除vlan命令: a) 全局配置模式下: Switch(config)#no vlan 2 Switch(config)#end b) Vlan数据库下: Switch#no vlan 2 name v2 Switch#exit
-
在vlan中添加端口: Switch#config terminal Switch(config)#interface f0/1(端口) Switch(config-if)#Switchport mode access Switch(config-if)#switchport access vlan 2 Switch(config-if)#end 一次将多个端口添加到vlan中: Switch#config terminal Switch(config)#interface range f0/1 - 5(端口) Switch(config-if)#switchport access vlan 2 Switch(config-if)#end 注:switch#show vlan biref(查看vlan信息)
-
配置vlan trunk: (1)配置接口为trunk命令: Switch(config)# interface f0/1(端口) Switch(config-if)#Switchport mode trunk (2)配置接口为动态协商模式的命令: Switch(config)# interface f0/1(端口) Switch(config-if)#switchport mode dynamic desirable/auto (3)从trunk中删除vlan: Switch(config)# interface f0/1(端口) Switch(config-if)#Switchport trunk allowed vlan remove 2 (4)在trunk中添加vlan: Switch(config)# interface f0/1(端口) Switch(config-if)#Switchport trunk allowed vlan add 2。
这些交换机的命令虽然简单,但是想要操作正确还是得费一番功夫,赛耐斯提示当你的交换机出现故障,自己不知道如何操作,以防操作失误造成更大的损失,必要请寻找专业人士的帮助。