描述
rip(routing information protocol,路由資訊協議)是一種內部閘道器協議(igp),是一種動態路由選擇協議,用於自治系統(as)內的路由資訊的傳遞。rip協議基於距離向量演算法(distancevectoralgorithms),使用「跳數」(即metric)來衡量到達目標位址的路由距離。這種協議的路由器只關心自己周圍的世界,只與自己相鄰的路由器交換資訊,範圍限制在15跳(15度)之內,再遠,它就不關心了。rip應用於osi網路五層模型的應用層。
連線裝置
配置介面ip
裝置名介面ip
閘道器pc1
fa0192.168.0.0
192.168.0.2
pc0fa0
192.168.1.1
192.168.1.2
router0
g0/0
192.168.1.2
router0
g0/1
10.0.0.1
router0
s0/0/0
30.0.0.2
router1
g0/1
10.0.0.2
router1
g0/0
20.0.0.2
router2
g0/0
20.0.0.1
router2
g0/1
192.168.0.2
router2
s0/0/0
30.0.0.1
router0配置
注:這裡只配置路由器router0 ,其他兩個路由器配置內容一樣
router>enable
router#config terminal //進入全域性模式
enter configuration commands, one per line. end with cntl/z.
router(config)
#int g0/1 //進入埠 g0/1
router(config-if)
#ip address 10.0.0.1 255.0.0.0 //配置ip位址
router(config-if)
#no shutdown //重啟埠
//配置埠g0/0
router(config)
#int g0/0
router(config-if)
#ip address 192.168.1.2 255.255.255.0
router(config-if)
#no shutdown
//配置埠s0/0/0
router(config)
#int s0/0/0
router(config-if)
#ip address 30.0.0.2 255.0.0.0
router(config-if)
#no shutdown
配置rip協議注:這裡只配置路由器router0,其他兩個路由器配置類似
router(config)
#router rip
router(config-router)
#network 10.0.0.0
router(config-router)
#network 30.0.0.2
router(config-router)
#network 192.168.1.0
檢視路由表交換過程 思科RIP協議基礎配置
步驟一 如圖拓撲 驗證有路由條目及server1 ping通server0 步驟二 1 server1配置 ip 192.168.1.8 24 閘道器 192.168.1.252 2 三層裝置ms1配置 ms1 config int vlan 1 ms1 config if ip add 192.1...
QYT思科模擬器EVE部署
eve模擬器是當下最流行的模擬器,也是學習利器!接下來為您講解如何在個人電腦部署 步驟1.請自行 並安裝vmware workstation軟體並重啟電腦 不重啟電腦虛擬機器軟體不能正常執行 步驟2.使用vmware workstion匯入已經封裝完畢的模擬器 1 在安裝完畢vmware軟體之後,找...
思科模擬器之網路訪問控制
管的過於寬泛,不夠細化。盡可能遠離ip 使用標準訪問控制列表 即對ip進行訪問控制 檢視訪問控制列表 show access list 全域性模式下 access list id 1 99 操作 permi deny ip mask access list 3 deny 192.168.1.0 0....