路由器和交换机基本配置命令
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
路由器和交换机基本配置命令
网络111
2900系列以上交换机设置IP地址
(config)# interface vlan 1 (进入VLAN 1 接口) (config-if)# ip address [IP地址] [掩码](设置IP地址)
(config-if)# no shutdown (打开该接口) (config-if)# exit (返回到全局模式) (config)#
例:
(config)# interface vlan 1
(config-if)# ip address 192.168.1.253 255.255.255.0
(config-if)# no shutdown
(config-if)# exit
Router设置IP地址
(config)# interface [接口名](进入接口)
(config-if)# ip address [IP地址] [掩码](设置IP地址)
(config-if)# no shutdown(打开该接口) (config-if)# exit (返回到全局模式) (config)#
例:
(config)# interface f0/0
(config-if)# ip address 192.168.1.254 255.255.255.0
(config-if)# no shutdown
(config-if)# exit
(config)#
定义从用户模式进入特权模式的口令:
(config)# enable password [口令](设置明文口令) (config)# enable secret [口令](设置密文口令)
例:
(config)#enable password 12345
(config)#enable secret cisco
定义Console接口的口令
(config)# line con 0(进入控制接口)
(config-line)# password [口令](设置口令)
(config-line)# login (设置口令生效)
(config-line)# exit(返回到特权模式)
例:
User Access Verification
Password:___________ (Console接口的口令)
s1>enable
Password:___________ (从用户模式进入特权模式的口令)
s1#
定义Telnet用户接口的口令
(config)# line vty 0 4 (进入vty接口)
(config-line)# password [口令](设置口令)
(config-line)# login (设置口令生效)
(config-line)# exit(返回到特权模式) (config)#
[0 4] 是指最多允许5位用户对设备进行Telnet登陆)
给设备定义时间、日期、年份:
(config)# clock timezone [时区名称] [时区范围](设置时区) # clock set [时间] [日期] [月份(英文表示)] [年份] (设置时间)
例:
(config)# clock timezone beijing +8
(config)# exit
# clock set 19:30:00 24 may 2006
#
# show clock
19:31:17.059 beijing Wed May 24 2006
#
(config)# banner motd #(定义启动显示文本)
例:
(config)# banner motd #
Enter TEXT message. End with the character '#'.
********************
* *
* xxxx *
* *
********************
#
Router上的指令
# show controller [串行接口编号]
(查看该接口连接的是DTE线缆还是DCE线缆)
例:
# show controller serial 0/0 ............... ......................V.35 DTE cable ...............
# show controller serial 0/0 ............... ......................V.35 DCE cable ...............
如果串行接口连接的是DCE线缆,则需要定义时钟
> enable
# conf t
(config)# interface [串行接口编号] (进入串行接口) (config-if)# clock rate 64000(定义时钟频率) (config-if)# exit (返回到全局模式) (config)#
例:
(config)# interface serial 0/0
(config-if)# clock rate 64000
(config-if)# exit
(config)#
# show interface [接口号]
Serial0/0 is up, line protocol is up
(代表该接口可以正常使用)
Serial0/0 is up, line protocol is down
(两端协议不匹配) HDLC ---------- PPP
(串行DCE接口没有设置时钟)
Serial0/0 is down, line protocol is down
(线缆故障)
(对端设备接口没有打开,或对端设备关闭电源)
Serial0/0 is administratively down, line protocol is down (人为将接口关闭,通过指令可以打开)