XDBR_LAB>
备注:如果想从任何模式下直接退到特权模式用”end”命令
设置密码、远程登录、及常用命令解析
Router>en Router#conf t
Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hos XDBR_lab
XDBR_lab(config)#no ip domain-lookup \*关掉域名解析功能,不然打错命令会等待30秒 XDBR_lab(config)#line console 0\*进入控制台
XDBR_lab(config-line)#logging synchronous \*日志同步,以免日志把正常输入打乱 XDBR_lab(config-line)#exit
XDBR_lab(config)#lin vty 0\*开启telnet 功能
XDBR_lab(config)#lin vty 0 ?\*允许多少个用户同时telnet因IOS版本不同而变化 <1-871> Last Line number
<cr>
XDBR_lab(config)#lin vty 0 4 \*这里代表开了5条线,思科接口都是从0开始 XDBR_lab(config-line)#password cisco\*VTY的密码 XDBR_lab(config-line)#login \*允许登录
XDBR_lab(config-line)#exi
XDBR_lab(config)#enable password cisco \*全局密码(明文)
XDBR_lab(config)#enable secret xdbr@cisco\*全局密码(密文),同时配置时明文密码无效,并且明文密码和密文密码不能一样
XDBR_lab(config)#interface fastEthernet 0/0\*进入一个物理接口
XDBR_lab(config-if)#ip address 137.0.0.200 255.255.255.0\*配置这个接口的地址
XDBR_lab(config-if)#description connection-to-Wireless\*此接口描述,即连的设备类型
XDBR_lab(config-if)#ip add 192.168.1.1 255.255.255.0
XDBR_lab(config-if)#clock rate ? \*配置串口的时钟速率(bits per second)
With the exception of the following standard values not subject to rounding,
1200 2400 4800 9600 14400 19200 28800 38400 56000 64000 128000 2015232
accepted clockrates will be bestfitted (rounded) to the nearest value supportable by the hardware.
<246-8064000> DCE clock rate (bits per second)
XDBR_lab(config-if)#clock rate 64000 \*配置一个适合的时钟速度 XDBR_lab(config-if)#no sh