1. 程式人生 > >利用OSPF等多種協議實現全網互通

利用OSPF等多種協議實現全網互通

OSPF RIP 靜態路由 默認路由 重分發

技術分享圖片

需求分析:

公司網絡中運行了多種路由協議,通過重分發實現內網互通,
並通過R3總公司網絡重分發默認路由實現全網互通。
(註:拓撲中未詳細說明的IP段落均以192.168開頭,
如10.1段落意為192.168.10.1/24)

具體配置流程如下:

R1配置

1、配置端口IP

int f0/0
ip add 192.168.30.1 255.255.255.0
int f0/1
ip add 192.168.20.2 255.255.255.0

2、R1和R2之間為靜態路由:

ip route 192.168.10.0 255.255.255.0 192.168.20.1

3、配置OSPF,宣告直連網段,重分發未知網段

router ospf 1 ##設置ospf進程號為1;
router-id 1.1.1.1 ##設置router-id;
network 192.168.30.0 0.0.0.255 area 1 ##宣告在area1中的網段(采取反掩碼)
redistribute connected subnets ##重分發直連的20網段
redistribute static subnets ##重分發靜態路由部分

R2配置

R1和R2之間組成內部網絡,因此不需要設置ospf等協議;

1、配置端口IP

int f0/0
ip add 192.168.20.1 255.255.255.0

int f0/1
ip add 192.168.10.2 255.255.255.0

2、R2和R1之間為靜態路由:

ip route 0.0.0.0 0.0.0.0 192.168.20.2

R3配置

R3為域間路由,扮演著ABR的角色,同時又和直連PC與ISP運營商相連;

1、配置端口IP

int f0/0
ip add 192.168.30.2 255.255.255.0
int f0/1
ip add 192.168.40.1 255.255.255.0
int range f1/0 -1 ##綜合配置端口
no switchport ##打開端口的路由功能
int f1/0
ip add 12.0.0.1 255.255.255.0

int f1/1
ip add 192.168.70.2 255.255.255.0

2、R3和ISP為默認路由

ip route 0.0.0.0 0.0.0.0 12.0.0.2

3、配置ospf,宣告直連網段

router ospf 1
router-id 3.3.3.3 ##設置router-id
network 192.168.30.0 0.0.0.255 area 1
network 192.168.40.0 0.0.0.255 area 0
##此處端口所在網段在哪個area,宣告時需要註意;
network 192.168.70.0 0.0.0.255 area 0

4、重分發R3直連區域未知網絡
R3和ISP為直連默認路由

default-information originate ##重分發默認路由

R4配置

R4隸屬於area0,扮演ASBR的角色

1、配置端口IP

int f0/0
ip add 192.168.40.2 255.255.255.0
int f0/1
ip add 192.168.50.1 255.255.255.0

2、配置ospf協議,宣告直連網段

router ospf 1
router-id 4.4.4.4
network 192.168.40.0 0.0.0.255 area 0

3、配置rip協議
R4路由50.0網段端口連接rip協議,故需要配置rip

router rip
version 2
no auto-summary
network 192.168.50.0 ##宣告50.0網段

4、重分發rip協議網段;

ospf區域中註入rip協議;

router ospf 1
redistribute rip subnets

rip中註入ospf協議;

router rip
redistribute ospf 1 metric 3

R6配置

R6整個路由器運行rip協議

1、配置端口IP

int f0/0
ip add 192.168.50.2 255.255.255.0
int f0/1
ip add 192.168.60.1 255.255.255.0

2、配置rip協議,宣告rip網段

router rip
version 2
no auto-summary
network 192.168.50.0
network 192.168.60.0 ##宣告rip直連網段

ISP配置

ISP與R3直連,故配置默認路由

1、配置端口IP

int f0/0
ip add 12.0.0.2 255.255.255.0
int f0/1
ip add 13.0.0.1 255.255.255.0

2、配置默認路由

ip route 0.0.0.0 0.0.0.0 12.0.0.1

各個路由及協議配置完成,利用VPCS配置及檢驗是否互通;
技術分享圖片
由上,實現了全網互通!

利用OSPF等多種協議實現全網互通