(注:红色为变量)
1、路由配置ip:r1(config)#interface f0/0
r1(config-if)#ip add 192.168.1.1255.255.255.0
r1(config-if)#no sh
2、交换机配置IP:sw1(config)#interface vlan 1
Sw1(config-if)#ip add 192.168.1.1 255.255.255.0
sw2(config-if)#no sh
3、配置主机名:r1(或者sw1)(config)#host name
4、显示系统及IOS名称及版本信息:sw1#sh ver
5、查看当前配置信息:sw1#show run
6、查看以保存信息:sw1#show star
7、保存当前配置:sw1#copy run star
8、删除已保存信息:sw1#erase nvram(真实机)/erase startup-config(虚拟机)
9、永不超时:sw1(config-line)#exec-timeout 0 0
10、显示同步:sw1(config-line)# logging synchronous
11、禁止dns查找:sw1(config)#no ip domain-10
12、指定接口的双工模式:sw1(config-if)#duplex {full / half /auto}
13、指定接口的通信速率:sw(config-if)#speed {10/100/1000/auto}
14、查看路由表:r1#show ip route
15、配置默认路由:r1(config)#ip route 0.0.0.0 0.0.0.0 192.168.1.1
16、配置console口密码:r1(或sw1)(config)#line console 0
(config-line)#password cisco
(config-line)#login
17、配置特权模式密码:r1(或sw1)(config)#enable password cisco /明文显示
r1(或sw1)(config)#servicepassword-encryption /加密明文密码
18、路由器密码恢复:a、重启路由器,按ctrl+breack。 b、rommom>config 0x2142 c、在重启。Rommom>reset. D、router#copystartup-config running-config
E、修改密码。F、router(config)#config-register 0x2102
Router(config)#exit router#copy running-config startup-config
19、交换机密码恢复:a、把电源插头。B、按“mode” c、switch:flash_init d、switch:rename flash:config.txt flash:config.old e、switch:boot f、switch#rename flash:config.old flash:config.text g、switch#copy flash:config.Text system:running-config h、修改密码并保存
20、设置VTY密码:sw1(config)#line vty 0 4
Sw1(config-line)#password cisco
Sw1(config-line)#login
21、登录交换机:C:\>telnet 192.168.1.10
22、配置默认网关:sw1(config)#ip default-getway 192.168.2.254
23、升级路由IOS:router#copytftp flash
备份IOS:router#copy flash tftp
24、 在交换机上配置DHCP
配置地址池:Ø
(config)# ip dhcp pool t114
配置网段:Ø
(dhcp-config)# network 192.168.1.0 255.255.255.0
Ø配置默认网关:
(dhcp-config)#default-route 192.168.1.1
Ø配置dns:
(dhcp-config)#dns-server 202.0.0.1
Ø配置租期:
(dhcp-config)#lease 2
配置静态预留地址:Ø
(config)#ip dhcp excluded-address 192.168.1.30