配置接口的description、IP地址、时钟频率;启用接口
配置description
配置接口描述是说明接口的用途、连接情况等信息,便于网络的管理。
该命令是否配置并不影响接口的功能和运行,只是为管理员提供帮助信息,当链路出现故障时非常有用。
test(config)#interface fa0/0
test(config-if)#description This is No.1 connection to Core Router
test(config-if)#end
配置IP地址
test(config-if)#ip address 172.16.10.10 255.255.255.0
配置时钟频率(比特/秒)
test(config-if)#clock rate ?
Speed (bits per second
1200
2400
4800
9600
19200
38400
56000
64000
72000
125000
128000
148000
250000
500000
800000
1000000
1300000
2000000
4000000
<300-4000000> Choose clockrate from list above
test(config-if)#clock rate 72000
连接串行接口的线缆两端是有区别的,DCE端连接DCE设备,DTE端连接DTE设备,连接时需要查看线缆两端的标识。
使用show controllers
可以查看接口连接的串行线缆是DCE线还是DTE线。
test#show controllers
Interface Serial0/3/0
Hardware is PowerQUICC MPC860
DCE V.35, clock rate 72000
启用/关闭接口
用no shutdown
激活接口,shutdown
关闭已激活的接口
test(config-if)#no shutdown
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
test(config-if)#shutdown
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to administratively down