實驗二——————路由器口令配置

FLy_鵬程萬里發表於2018-05-25

實驗目的

通過本實驗,可以掌握以下技能:

  • 配置介面IP地址。
  • 配置路由器口令。
  • 驗證路由口令的配置。

裝置需求

  • Cisco路由器3臺,分別命名為RouterA、RouterB和RouterC。其中RouterA具有1個乙太網介面和1個序列介面;RouterB具有1個乙太網介面和2個序列介面;RouterC具有1個乙太網介面和1個序列介面。
  • 3根交叉線序雙絞線,2根序列線。
  • 1臺access server,及用於反向Telnet的相應電纜。
  • 1臺帶有超級終端程式的PC機,以及Console電纜及轉接器。

拓撲結構及配置說明

實驗的拓撲結構如下所示。通過2根序列線分別把RouterA和RouterB連線起來,RouterB和RouterC連線起來。


各路由器使用的介面及其編號見圖10-1所示的標註。各介面IP地址分配如下:

  • RouterA:E0:172.16.11.1  S0:172.16.20.1
  • RouterB:E0:172.16.10.6  S0:172.16.20.2  S1:172.16.40.1 
  • RouterC:E0:172.16.50.1  S0:172.16.40.2

實驗配置

配置路由器串列埠與乙太網介面:

RouterA:

一個串列埠,一個乙太網介面


RouterB

兩個串列埠,一個乙太網介面



RouterC

一個乙太網介面,一個串列埠



網路結構圖


基本網路配置

RouterA 

主機名、IP、子網掩碼(下面的應該是“子網掩碼”不是閘道器,我這裡寫錯了,但是截圖的原因就不好改了,太麻煩,請讀者注意一下哈


涉及程式碼:


Router>enable
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname RouterA
RouterA(config)#interface Ethernet0/0/0
RouterA(config-if)#ip address 172.16.11.1 255.255.255.0
RouterA(config-if)#no shutdown

RouterA(config-if)#
%LINK-5-CHANGED: Interface Ethernet0/0/0, changed state to up

RouterA(config-if)#exit
RouterA(config)#interface Serial0/1/0
RouterA(config-if)#ip address 172.16.20.1 255.255.255.0
RouterA(config-if)#clock rate 56000
RouterA(config-if)#no shutdown

%LINK-5-CHANGED: Interface Serial0/1/0, changed state to down
RouterA(config-if)#exit

驗證


RouterB

主機名、IP、子網掩碼配置(下面的應該是“子網掩碼”不是閘道器,我這裡寫錯了,但是截圖的原因就不好改了,太麻煩,請讀者注意一下哈


具體程式碼:

Router>enable
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname RouterB
RouterB(config)#interface Ethernet0/1/0
RouterB(config-if)#ip address 172.16.10.6 255.255.255.0
RouterB(config-if)#no shutdown

RouterB(config-if)#
%LINK-5-CHANGED: Interface Ethernet0/1/0, changed state to up

RouterB(config-if)#interface Serial0/0/0
RouterB(config-if)#ip address 172.16.20.2 255.255.255.0
RouterB(config-if)#no shutdown

RouterB(config-if)#
%LINK-5-CHANGED: Interface Serial0/0/0, changed state to up

RouterB(config-if)#interface 
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed st
RouterB(config-if)#interface Serial0/0/1
RouterB(config-if)#ip address 172.16.40.1 255.255.255.0
RouterB(config-if)#clock rate 56000
RouterB(config-if)#no shutdown

%LINK-5-CHANGED: Interface Serial0/0/1, changed state to down
RouterB(config-if)#exit
RouterB(config)#^Z
RouterB#
%SYS-5-CONFIG_I: Configured from console by console

驗證


RouterC

主機名、IP、子網掩碼配置


涉及原始碼:

Router>enable
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname RouterC
RouterC(config)#interface Ethernet0/1/0
RouterC(config-if)#ip address 172.16.50.1 255.255.255.0
RouterC(config-if)#no shutdown
RouterC(config-if)#interface Serial0/0/0
RouterC(config-if)#ip address 172.16.40.2 255.255.255.0
RouterC(config-if)#no shutdwon
                           ^
% Invalid input detected at '^' marker.
	
RouterC(config-if)#no shutdown
RouterC(config-if)#exit
RouterC(config)#^Z
RouterC#
%SYS-5-CONFIG_I: Configured from console by console

RouterC#

驗證


最後的網路拓撲結構(這裡的PC2、PC3自我配置只需要在一個子網中即可,此處不再多說)


配置路由器特權口令

RouterA:


RouterA>enable
RouterA#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
RouterA(config)#enable secret twins

檢視口令(此時的口令是經過加密的,而且主要是在特權模式下檢視不是在全域性配置模式下哈)


配置路由器Console口令

RouterA


驗證:


配置路由器Telnet口令

RouterA#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
RouterA(config)#line vty 0 4
RouterA(config-line)#password twins
RouterA(config-line)#^Z
RouterA#
%SYS-5-CONFIG_I: Configured from console by console

RouterA#

驗證:


相關文章