路由綜合實驗
技術原理
為了支援本裝置能夠執行多個路由協議程序,系統軟體提供了路由資訊從乙個路由程序重分布到另乙個路由器程序的功能。
實驗步驟:
1.pc與交換機間用直線連線;pc與路由、路由與路由之間用交叉線連線。
2.再三層交換機劃分2個vlan,執行ripv2協議;r2執行ospf協議
3.在路由器r1上左側配置ripv2路由協議;右側配置ospf協議
4.在r1路由器程序中引入外部路由,進行路由分布
5.將pc1、pc2主機預設閘道器分別設定為與直接網路裝置介面ip位址
6.驗證pc1、pc2主機之間可以互相通訊
sw0交換機配置:
r0配置
router>en
router#config t
enter configuration commands, one perline. end with cntl/z.
router(config)#host r0
r0(config)#int fa0/0
r0(config-if)#ip address 192.168.2.2255.255.255.0
r0(config-if)#no shut
%link-5-changed: inte***ce fastethernet0/0,changed state to up
%lineproto-5-updown: line protocol oninte***ce fastethernet0/0, changed state to up
r0(config-if)#exit
r0(config)#int fa0/1
r0(config-if)#ip address 192.168.3.1255.255.255.0
r0(config-if)#no shut
r0(config-if)#
%link-5-changed: inte***ce fastethernet0/1,changed state to up
exit
r0(config)#exit
r0#%sys-5-config_i: configured from console byconsole
r0#config t
enter configuration commands, one perline. end with cntl/z.
r0(config)#router rip
r0(config-router)#network 192.168.2.0
r0(config-router)#version 2
r0(config-router)#exit
r0(config)#router ospf 1
r0(config-router)#network 192.168.3.00.0.0.255 area 0
r0(config-router)#exit
r1配置:
router>en
router#config t
enter configuration commands, one perline. end with cntl/z.
router(config)#host r1
r1(config)#int fa0/1
r1(config-if)#ip address 192.168.3.2255.255.255.0
r1(config-if)#no shut
%link-5-changed: inte***ce fastethernet0/1,changed state to up
%lineproto-5-updown: line protocol oninte***ce fastethernet0/1, changed state to up
r1(config-if)#exit
r1(config)#int fa0/0
r1(config-if)#ip address 192.168.4.1 255.255.255.0
r1(config-if)#no shut
%link-5-changed: inte***ce fastethernet0/0,changed state to up
%lineproto-5-updown: line protocol oninte***ce fastethernet0/0, changed state to up
r1(config-if)#exit
r1(config)#router ospf 1
r1(config-router)#network 192.168.3.00.0.0.255 area 0
r1(config-router)#network 192.168.4.00.0.0.255
00:26:58: %ospf-5-adjchg: process 1, nbr192.168.3.1 on fastethernet0/1 from loading to full, loading done
area 0
r1(config-router)#network 192.168.4.00.0.0.255 area 0
r1(config-router)#exit
r1(config)#
測試:ping 192.168.4.2 不通;
在交換機sw0上sh ip route只能看見兩條直連路由。
在r0上配置:
r0#config t
enter configuration commands, one perline. end with cntl/z.
r0(config)#router rip
r0(config-router)#redistribute ospf 1
r0(config-router)#exit
r0(config)#router ospf 1
r0(config-router)#redistribute rip subnets
r0(config-router)#exit
r0(config)#
在sw0上新增靜態路由:sw0(config)#ip route 0.0.0.0 0.0.0.0 192.168.2.2
就一切ok了。
思科路由器ios系統學習 八 綜合實驗
實驗 基本配置 優化命令 裝置名稱修改 建立vlan 劃分vlan trunk sw1 config vlan 10 sw1 config vlan exit sw1 config vlan 20 sw1 config vlan exit sw1 config int f0 1 sw1 config...
路由器配置DHCP實驗
我能否這樣看,所謂的dhcp 其本身從網路程式設計的角度來看 乙個dhcp 是乙個網路應用程式 凡是網路應用程式,都分客戶端和 網路端 同樣,對於dhcp這個網路程式,也不例外 dhcp客戶端 發出dhcp request,同時,接收來自dhcp伺服器端的應答 dhcp伺服器端 響應 dhcp客戶端...
Click軟體路由器實驗
click路由器的官方 目標 構建一台軟體路由器 測試1 實現發包與接收 第一步 安裝vmware,在vmware裡安裝兩個ubuntu虛擬機器a和b 可以利用轉殖的方式減少空間占用 按照下圖為主機 虛擬機器新增網絡卡並配置網絡卡的ip。編譯命令 進入click目錄,weconfig make 第三...