路由綜合實驗
技術原理
為了支援本裝置能夠運作多個路由協定程序,系統軟體提供了路由資訊從一個路由程序重分布到另一個路由器程序的功能。
實驗步驟:
1.pc與交換機間用直線連接配接;pc與路由、路由與路由之間用交叉線連接配接。
2.再三層交換機劃分2個vlan,運作ripv2協定;R2運作ospf協定
3.在路由器R1上左側配置RIPV2路由協定;右側配置ospf協定
4.在R1路由器程序中引入外部路由,進行路由分布
5.将pc1、pc2主機預設網關分别設定為與直接網絡裝置接口ip位址
6.驗證pc1、pc2主機之間可以互相通信
SW0交換機配置:
<a target="_blank" href="http://blog.51cto.com/attachment/201307/162148642.png"></a>
Switch>en
Switch#config t
Enter configuration commands, one perline. End with CNTL/Z.
Switch(config)#host SW0
SW0(config)#vlan 2
SW0(config-vlan)#name v2
SW0(config-vlan)#exit
SW0(config)#int fa0/10
SW0(config-if)#switchport access vlan 2
SW0(config-if)#exit
SW0(config)#int vlan 1
SW0(config-if)#ip address 192.168.1.1255.255.255.0
SW0(config-if)#no shut
%LINK-5-CHANGED: Interface Vlan1, changedstate to up
%LINEPROTO-5-UPDOWN: Line protocol on InterfaceVlan1, changed state to up
SW0(config)#int vlan 2
SW0(config-if)#
%LINK-5-CHANGED: Interface Vlan2, changedstate to up
SW0(config-if)#ip address 192.168.2.1255.255.255.0
SW0(config)#router rip
SW0(config-router)#network 192.168.1.0
SW0(config-router)#network 192.168.2.0
SW0(config-router)#version 2
SW0(config-router)#exit
SW0(config)#ip routing
R0配置
Router>en
Router#config t
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: Interface FastEthernet0/0,changed state to up
%LINEPROTO-5-UPDOWN: Line protocol onInterface 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)#
%LINK-5-CHANGED: Interface FastEthernet0/1,changed state to up
exit
R0(config)#exit
R0#
%SYS-5-CONFIG_I: Configured from console byconsole
R0#config t
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
R1配置:
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
%LINEPROTO-5-UPDOWN: Line protocol onInterface 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)#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-router)#redistribute ospf 1
R0(config-router)#redistribute rip subnets
R0(config)#
在SW0上添加靜态路由:SW0(config)#ip route 0.0.0.0 0.0.0.0 192.168.2.2
就一切ok了。
本文轉自 zhuxtqw 51CTO部落格,原文連結:http://blog.51cto.com/1054054/1252712,如需轉載請自行聯系原作者