思科路由器介面
阿新 • • 發佈:2021-08-10
介面配置是最重要的路由器配置之一,因為若沒有介面,路由器幾乎就毫無用處。另外,要與其
他裝置通訊,介面配置必須絕對精確。
配置介面時,我們需要指定網路層地址、介質型別和頻寬,還需使用其他管理命令。
不同路由器在選擇要配置的介面時有不同的方法。例如,下面的命令表明,路由器有 10 個序列
介面,編號為 0-9:
Router(config)#int serial ?
<0-9> Serial interface number
#選擇要配置的介面後,你就進入了介面配置模式
#對5號串列埠進行配置
Router(config)#int serial 5
Router(config)-if)
選擇內建的快速乙太網介面
Todd(config)#int fastEthernet O/?
<0-1> FastEthernet interface number
Todd(config)#int fastEthernet 0/0
Todd(config-if)#
#注意,我們不能只使用命令 int fastethernet 0 ,而必須指定型別和插槽號/埠號
#即使用命令 type slot/port 或 int fastethernet % (或 int fa 0/0)
有些路由器需要使用 3 個編號,而不是2個。第一個 0 表示路由器本身,第二個編號為插槽號,第三個為埠號。
Todd(config-if)#do show run Building configuration... [output cut] interface FastEthernetOjO no ip address shutdown duplex auto speed auto interface FastEthernetOjl no ip address shutdown duplex auto speed auto interface SerialOjOjO no ip address shutdown no fair-queue interface SerialOjOjl no ;p address shutdown interface Ser;alOjljO no ip address shutdown ;nterface SerialOj2jO no ;p address shutdown clock rate 2000000 [output cut]
啟用介面
如果介面被禁用,則在命令 show i nterfaces (簡寫為 sh i nt) 的輸出中,該介面顯示為管理性關閉 (down):
Todd#sh int fO/l
FastEthernetO/l is administratively down , line protocol is down
[output cut]
Todd#config t Todd(config)#int fO/l Todd(config-if)#no shutdown Todd(config-if)# *Feb 28 22:45:08.455: %LINK-3-UPDOWN: Interface FastEthernetO/l , changed state to up Todd(config-if)#do show int fO/l FastEthernetO/l is up , line protocol is up [output cut]
- 給介面配置ip地址
Todd(config)#int fO/l
Todd(config-if)#ip address 172.16.10.2 255.255.255.0
如果要給介面配置第二個地址,我們必須使用引數 secondary。如果配置另一個 IP 地址並按回
車鍵,它將取代原來的主 IP 地址和子網掩碼。
Todd(config-if)#;p address 172.16.20.2 255.255.255.0 ?
secondary Make this IP address a secondary address
Todd(config-if)#ip address 172.16.20.2 255.255.255.0 secondary
Todd(config-if)#^Z
Todd(config-if)#do sh run
Building configuration...
[output cut]
interface FastEthernetOj1
ip address 172.16.20.2 255.255.255.0 secondary
ip address 172.16.10.2 255.255.255.0
duplex auto
speed auto
不建議給介面配置多個 E 地址,因為這種做法糟糕而低效。
- 使用管道
管道( I )讓你能夠在配置或其他冗長輸出中迅速找到目標
Todd#sh run | ?
append Append redirected output to URL (URLs supporting append operation
only)
begin Begin with the line that matches
exclude Exclude lines that match
include lnclude lines that match
redirect Redirect output to URL
section Filter a section of output
tee Copy output to URL
Todd#sh run | begin interface
interface FastEthernetOjO
description Sales VLAN
ip address 10.10.10.1 255.255.255.248
duplex auto
speed auto
interface FastEthernetOj1
ip address 172.16.20.2 255.255.255.0 secondary
ip address 172.16.10.2 255.255.255.0
duplex auto
speed auto
interface SerialO/O/O
description Wan to SF circuit number 6fdda 12345678
no ip address
管道符號(輸出限定符)可幫助你快速找到目標。比如確定大型路由選擇表裡是否包含特定路由。