天天看点

交换机的一些基本命令

一.交换机的五种模式

swith>用户模式

swith#特权模式

swith(config)#     全局配置模式

swith(config-if)#  接口模式

swith(config-li)#  线模式

二.设置交换机的密码

1.用户模式到特权模式的密码

swith(config)#enable password 123 : 明文 

swith(config)#enable secret       : 密文

如果两个都设则密文生效

2.控制台CONSOLE密码设置

swith(config)#line con 0

swith(config-line)#login

swith(config-line)#password telnet123 : 设置 console密码为telnet123

3.启用telnet密码

swith(config)#line vty 0 15 :最多有0-15个人可以teinet访问swith

swith(config-line)#password telnet123:设置telnet密码为telnet123

注意:要真正生效telnet还要设置特权密码

三.交换机命名

swith(config)#hostname benetsw01  :使用benesw01作为交换机的名字

四.show命令集

swith#show version               :显示IOS版本信息

swith#show int vlan 1 briet      :简单的显示VLAN1的信息

swith#show running-config        :显示正在运行的配置信息

swith#show startup-config        :显示已经保存的配置文件

swith#show mac-address-table     :显示MAC地址表

swith#show neihbor detail        :显示邻居详细信息

swith#show traffic               :显示CDP的流量

五.设置交换机的网关和DNS名称服务器的IP

swith(config)#ip default-gateway 192.168.10.8  :设置交换机的网关

swith(config)#domain-name server 202.160.0.20  :设置DNS名称服务器地址

swith(config)#no ip domain-lookup              :交换机名称服务器的域名查询

继续阅读