實驗四————RIP協議的配置

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

實驗目的

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

  • 配置介面IP地址。
  • 配置RIP協議。
  • 驗證RIP協議配置。

裝置需求

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

拓撲結構及配置說明

實驗的拓撲結構如圖10-3所示。通過2對交叉線序雙絞線分別把twins和sa連線起來,twins和gill連線起來。



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

  • twins:E0:192.168.2.1  E1:192.168.3.1
  • sa:E0:192.168.2.2  E1:192.168.4.1
  • gill:E0:192.168.3.2  E1:192.168.5.1

實驗配置

基本網路配置

首先新增路由器與主機搭建基本的網路拓撲結構(其中三個路由需要分別新增兩個乙太網介面


地址資訊配置(這裡使用圖形化操作完成)

sa



twins



gill



PC0



PC1


最後的網路拓撲結構如下



配置RIP協議

sa


Router#
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#router rip
Router(config-router)#network 192.168.2.0
Router(config-router)#network 192.168.4.0
Router(config-router)#^Z
Router#
%SYS-5-CONFIG_I: Configured from console by console

Router#

twins


Router>enable
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#router rip
Router(config-router)#network 192.168.2.0
Router(config-router)#network 192.168.3.0
Router(config-router)#^Z
Router#
%SYS-5-CONFIG_I: Configured from console by console

Router#

Gill


Router>enable
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#router rip
Router(config-router)#network 192.168.3.0
Router(config-router)#network 192.168.5.0
Router(config-router)#^Z
Router#
%SYS-5-CONFIG_I: Configured from console by console

Router#

驗證RIP協議配置

sa


twins


gill


驗證IP設定

sa


twins


gill


最終的網路拓撲圖如下(這裡將PC改為了Server)

相互ping

sa ping  twins


sa ping   gill


gill ping twins


gill ping sa



之後使用PC1 ping  server0


然後用server0 ping pc1


至此該實驗完成!

相關文章