Router>(用户模式)
接口默认是shutdown的,只有激活后才能通信。
同步通信都要有时钟进行同步的,配置时钟频率就要告诉这个端口是以自身的时钟为准,还是取线路时钟,或者取外部的DTE时钟。只有确立的同步方式,串口才可以好好的工作,否则不是不通!
1) 控制台密码
Router(config)#line console 0
Router(config-line)#password <cisco>
Router(config-line)#login local
2) 虚拟终端(Telnet)密码
Router(config)#line vty 0 4
Router(config-line)#password <cisco>
Router(config-line)#login
Sh user :谁对我telnet
Clear line vty 0 :关闭由远端设备建立的会话。
Router(config)#enable password <cisco>
4)加密的特权密码
Router(config)#enable secret <wnt>
注意:2950交换机跟路由器密码配置一样
区别:2950(config)#line vty 0 15
2950(config-line)#pass cisco
2950(config-line)#login
5)在路由器以上对所有明文密码加密
Router(config)#service password-encryption
r1#show run
3、在两个路由器之间的串行链路上配置带宽(512K)
从全局模式下进入接口模式下,在接口模式下执行下面的命令:
r1(config)#int s0/0
r1(config-if)#bandwidth 512
在全局模式下进入接口下,在接口下执行下面的命令:
sw1(config)#int f0/1
sw1(config-if)#duplex half
hh:mm:ss Current Time:时间的格式。
sw1#clock set 10:13:30 10 feb 2009
6、给路由器和交换机配置提示语(即标志区)
注意:提示语必须用#字号括起来。
sw1(config)#banner motd #huan ying guan lin#
sw1(config)#int f0/1
sw1(config-if)#description 《caiwujingli》
sw1(config-if)#exit
9、通过命令对路由器交换机保存配置文件到NVRAM(注意:有两个保存配置命令)
1)、r1#copy run startup-config
Destination filename [startup-config]? (问你是否保存,默认回车就行了)
Building configuration...
[OK]
或是:
r1#write
Building configuration...
[OK](保存成功)
r1#copy run tftp
Address or name of remote host []? 202.106.1.1(服务器的IP地址)
Destination filename [r1-confg]? (问你是否保存,默认回车就行了)
!!
[OK - 417 bytes](保存成功)
r1#copy startup-config run
r1#copy tftp run
1)路由器和交换机版本
r1#sh version
r1#sh flash
r1#sh controllers s0/0
r1#sh int s0/0
(注意:明白什么是DTE和DCE)
r1#sh processes
sw1#sh mac-address-table
12、清空路由器交换机配置
sw1#erase startup-config
Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]
[OK](清空成功)
或是:
sw1#reload(严格来说,这是重启)
Proceed with reload? [confirm]
Sh running-config :查看当前配置。
Sh interfaces :查看接口信息。
Sh version :查看版本。
Sh startup-config :查看启动保存配置。
Sh history :查看历史命令。
No cdp run :
No cdp enable :关闭接收信息。
Sh cdp entry :查看邻居详细信息。
Sh cdp neighbor :查看邻居简要信息。
Sh cdp traffic :查看传输量。
Sh cdp interface :查看cdp接口状态。
Ctrl + shift + 6 x :挂起telnet连接。
Resume 1 :恢复挂起telnet。
主机名到地址的映射: ip host {hostname} {ip}
Traceroute :路由跟踪命令,主要是实现跟踪从源到目标的经过路径。
Config-register :设定配置寄存器的值。
Sh flash :查看ios文件。
Copy running startup :覆盖。
Copy startup running :合并。
Copy running-config tftp :备份配置。
Copy tftp running-config :恢复配置。
注意;配置文件的扩展名都是以cfg结尾的。
Copy tftp flash :升级ios文件。