一、设备模式的介绍
用户模式
>代表在用户模式
,只能查看设备的基本简单信息。并且不能做任何修改配置。
Switch>
进入特权模式
#号代表特权模式
,可以查看所有配置信息,可以保存、初始化等操作。但是不能对设备进行配置
。
Switch>enable
Switch#
进入全局模式
(config)全局模式
,可以修改配置,且全局生效。
Switch#config terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#
接口配置模式
Switch(config-if)#
代表接口配置模式,默认不能查看配置,可以修改配置,且对该端口生效。
Switch(config)#interface GigabitEthernet0/1
Switch(config-if)# #if是interface的缩写
Switch(config-if)#exit #退出一级
Switch(config)#end #直接切换到特权模式
Switch#
console口模式
进入console管理接口,Switch(config-line)#
代表console口模式。默认不能查看配置,可以修改配置,且对console口生效。
Switch(config)#line console 0
Switch(config-line)#
小结:命令的简写
Switch#enable
Switch#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#int f0/1
Switch(config-if)#exit
Switch(config)#line co 0
Switch(config-line)#exit
Switch(config)#
二、基本命令
更改设备名
只要敲完命令就会立即生效
Switch(config)#hostname pokes
pokes(config)#
历史命令show history
Switch#show history
en
conf tr
show history
交换机配置console密码(用户密码)
Switch#enable
Switch#conf ter
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#lin
Switch(config)#line console 0
Switch(config-line)#password pokes #配置密码为pokes
Switch(config-line)#login #允许登录的意思
设置特权非加密口令
switch(config)#enable password pokes #配置密码为pokes
非加密口令,可以在特权模式下用show run
进行查看
设置特权加密口令
设置密码
switch(config)#enable secret pokes #配置密码为pokes
登陆演示
Switch>enable
Password:
重启设备
Switch#reload
System configuration has been modified. Save? [yes/no]:no
Proceed with reload? [confirm]
保存配置
Switch#write
验证保存
只要里面有记录的,说明都是保存的。
Switch#show run
交换机恢复出厂值
Switch#erase startup-config #恢复出厂值
Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]
#翻译:准备删除所有你之前的配置,你确定要这样做吗?
回车,重启之后就会初始化。
三、快捷键
ctrl+u #快速删除光纤所有命令
ctrl+a #快速移动光标到行首
ctrl+e #快速移动光标到行尾
四、删除配置
- 在哪配置的,就在哪删除;
- 命令前加no和空格;
- 原命令中有参数,并且参数具有唯一性,则删除时不需要加参数。
五、show查看命令
查看交换机接口
Switch>show ip interface brief
查看vlan
Switch>show vlan
查看路由表
R1(config)#do show ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.1.1.0/24 is directly connected, GigabitEthernet0/0/1
L 10.1.1.254/32 is directly connected, GigabitEthernet0/0/1
六、do的用法
其他模式下加do空格可以强制使用特权模式的命令:
do sh run
do sh ip int b
do wr
七、关于出厂默认开启功能的说明
上图中只要连完线,fa02和fa01分别到PC端物理上就已经是绿色了,绿色就表示物理已经联通。
而交换机与路由器的两个g01口却依然时红色呢?
那是因为:思科在出厂时
- 二层功能默认就是开启的;
- 三层功能默认是关闭,需要手动开启。
- 开启命令:
no shut