與交換機一樣,路由器自身沒有輸入/輸出裝置,需要通過其它計算機登入到路由器後才能配置。
根據配置路由器所需的計算機與路由器的連線方式,路由器的配置方式有兩種:
第一次使用路由器時必須使用console 埠。
進入路由器的第乙個模式為使用者模式,系統提示符為 :
red-giant>
進入特權模式
red-giant> enable
進入全域性配置模式
red-giant#configure terminal
進入路由器f0/0的介面模式
red-giant(config)
#inte***ce fastethernet 0/0
退回到上一級操作模式
red-giant(config-if)
# exit
直接退回特權模式
red-giant(config)
# end
顯示當前模式下所有可執行的命令
red-giant>?
顯示當前模式下所有co開頭的命令
red-giant#co?
顯示copy命令後可執行的引數
red-giant#copy ?
與交換機的一樣,點我進入
路由器埠的配置
red-giant# enable
red-giant# configure terminal
red-giant(config)
#hostname routera
routera(config)
# inte***ce fastethernet 1/0
給介面設定ip位址
routera(config-if)
# ip address ip位址 子網掩碼
開啟介面
routera(config-if)
#no shutdown
檢視路由器各項資訊
檢視路由器的版本資訊
red-giant# show version
檢視路由表資訊
red-giant# show ip route
檢視路由器當前生效的配置資訊
在路由器router1上配置介面的ip位址
router>enable
router#configure terminal
router(config)
#inte***ce fastethernet 0/0
router(config-if)
#ip address 192.168.2.1 255.255.255.0
router(config-if)
#no shutdown
router(config-if)
#exit
router(config)
#inte***ce fastethernet 1/0
router(config-if)
#ip address 192.168.1.2 255.255.255.0
router(config-if)
#no shutdown
router(config-if)
#exit
在路由器router1上配置靜態路由router(config)
#ip route 192.168.3.0 255.255.255.0 192.168.1.1
router(config)
#exit
驗證router1上的靜態路由配置
router#show ip route
在路由器router2上配置介面的ip位址router>enable
router#configure terminal
router(config)
#inte***ce fastethernet 0/0
router(config-if)
#ip address 192.168.3.1 255.255.255.0
router(config-if)
#no shutdown
router(config-if)
#exit
router(config)
#inte***ce fastethernet 1/0
router(config-if)
#ip adress 192.168.1.1 255.255.255.0
router(config-if)
#ip address 192.168.1.1 255.255.255.0
router(config-if)
#no shutdown
router(config-if)
#exit
router(config)
#inte***ce fastethernet1/0
router(config-if)
#exit
在路由器router2上配置靜態路由router(config)
#ip route 192.168.2.0 255.255.255.0 192.168.1.2
router(config)
#exit
rip是小型網路中廣泛應用的一種內部閘道器協議。rip協議採用距離向量演算法,實現路由資訊的自學習。 計算機網路之路由器與分組交換
路由器是實現分組交換 packet switching 的關鍵構件,其任務是 收到的分組,這是網路核心部分最重要的功能。分組交換是用儲存 技術實現的。通常我們把要傳送的整塊資料稱為乙個報文 message 傳送報文之前,先把較長的報文劃分為乙個個更小的等長資料段,在每乙個資料段前面加上一些必要的控制...
計算機網路(路由器與路由演算法)
外部閘道器協議 後記昨天經過位元組一面感覺自己對路由器了解甚少,所以決定還是認真學習一下路由器與路由演算法吧。自治系統 autonomous system,as 指的是在單一技術管理下的一組路由器,這些路由器使用同一種內部路由選擇協議並且通過外部路由協議與其他的as進行連線,一般來說乙個大學 乙個公...
計算機網路中關於路由器的作用
計算機網路中關於路由器的作用 首先我們得知道,計算機之間是如何通訊的?最簡單的答案就是用一根網線將兩個計算機a,b相互連線,這樣從某種意義上來講,這兩台計算機就構成了乙個區域網。簡單相連模型 但當我們想要在這個區域網中再加入一台計算機c的時候該怎麼辦呢?我們都知道,每台計算機都只有乙個網絡卡介面,一...