發布ospf的路由協議,實現企業級網路通訊

2021-09-21 10:57:21 字數 3822 閱讀 2755

發布ospf的路由協議,實現企業級網路通訊

[url]

路由器的配置思路:

1,應用性:

1)配置埠:

1>區域網埠:

(config)#inte***ce  埠

(config-if)#ip  address  ip位址   掩碼

//給埠配置ip位址,掩碼

(config-if)#no shutdown

//啟用埠

2>廣域網埠

(config)#inte***ce  埠

(config-if)#ip  address  ip位址   掩碼

//給埠配置ip位址,掩碼

(config-if)#encapsulation   廣域網協議

//封裝協議

(config-if)# clock  rate   56000/64000

// 可選項,指定時鐘頻率

(config-if)#no shutdown

(config-router)#router   ospf   區域號

(config-router)#net   網路號/子網號/具體ip    匹配碼  area  區域號

試驗環境:pc1  192.168.10.2   閘道器192.168.10.1

pc2: 192.168.20.2   閘道器192.168.20.1

路由器a  s0:202.110.100.1

路由器b,  s0:202.110.100.2

路由器a和pc1是公司的總部,路由器b和pc2是公司的分支機構,現在要實現總部和分支機構的通訊,在中間的幹線上採用ddn幹線。

利用動態路由配置企業級環境需求:

路由器a上的操作。

router>

router>

router>en

router#config t

enter configuration commands, one per line.  end with cntl/z.

router(config)#host a

a(config)#int e0

a(config-if)#ip addr 192.168.10.1 255.255.255.0

a(config-if)#no shut

%link-3-updown: inte***ce ethernet0, changed state to up

a(config-if)#int s0

a(config-if)#ip addr 202.110.100.1 255.255.255.0

a(config-if)#encap hdlc

a(config-if)#clock rate 56000

a(config-if)#no shut

%link-3-updown: inte***ce serial0, changed state to up

a(config-if)#exit

%link-3-updown: inte***ce serial0, changed state to down

%lineproto-5-updown: line protocol on inte***ce serial0, changed state to down

a(config)#router ospf 100

a(config-router)#net 192.168.10.0 0.0.0.255 area 0

a(config-router)#net 202.110.100.1 0.0.0.0 area 0

%link-3-updown: inte***ce serial0, changed state to up

%lineproto-5-updown: line protocol on inte***ce serial0, changed state to up

a#a#show ip ro

codes: c - connected, s - static, i - igrp, r - rip, m - mobile, b - bgp

d - eigrp, ex - eigrp external, o - ospf, ia - ospf inter area

e1 - ospf external type 1, e2 - ospf external type 2, e - egp

i - is-is, l1 - is-is level-1, l2 - is-is level-2, * - candidate default

u - per-user static route

gateway of last resort is not set

c    192.168.10.0 is directly connected, ethernet0

c    202.110.100.0 is directly connected, serial0

o    192.168.20.0 [110/64] via 192.168.20.1, 00:02:10, serial0

在路由器b上的操作:

router>

router>

router>en

router#config t

enter configuration commands, one per line.  end with cntl/z.

router(config)#host b

b(config)#int e0

b(config-if)#ip addr 192.168.20.1 255.255.255.0

b(config-if)#no shut

%link-3-updown: inte***ce ethernet0, changed state to up

b(config-if)#int s0

b(config-if)#ip addr 202.110.100.2 255.255.255.0

b(config-if)#encap hdlc

b(config-if)#no shut

%link-3-updown: inte***ce serial0, changed state to up

b(config-if)#exit

b(config)#router ospf 100

b(config-router)#net 192.168.20.0 0.0.0.255 area 0

b(config-router)#net 202.110.100.2 0.0.0.0 area 0 b#

b#show ip ro

codes: c - connected, s - static, i - igrp, r - rip, m - mobile, b - bgp

d - eigrp, ex - eigrp external, o - ospf, ia - ospf inter area

e1 - ospf external type 1, e2 - ospf external type 2, e - egp

i - is-is, l1 - is-is level-1, l2 - is-is level-2, * - candidate default

u - per-user static route

gateway of last resort is not set

c    192.168.20.0 is directly connected, ethernet0

c    202.110.100.0 is directly connected, serial0

o    192.168.10.0 [110/64] via 192.168.10.1, 00:04:36, serial0

OSPF路由協議

圖 執行ospf路由協議的網路環境 ospf路由協議對路由網路區域的劃分 在榮新外企it培訓中心全國互連的網路中總路由器多達上百臺。這樣龐大的網路中如果沒有區域的劃分,按照ospf路由協議的規定,每台路由器都要熟悉整個的網路拓撲結構並且計算全部網路的路由資訊,對於路由器本身來說造成了非常大的負載需求...

路由協議OSPF

lsdb鏈路狀態資料庫思科命令 show ip ospf database show ip ospf database database summary 顯示lsdb中基於區域和lsa分類的lsa統計資訊。lsa在lsdb中老化時間是增大的,如果到1小時,就會從lsdb中清除,每30分鐘一次的lsr...

OSPF路由協議

二.ospf基本部署 三.ospf鄰居建立 四.ospf路由分組 五.ospf路由彙總 骨幹區域 area 0,用於實現其他常規區域的流量中轉 實現區域間防環。常規區域 area x,一般給分支機構 部門使用,常規區域之間不能直接通訊,必須經過骨幹區域。區域劃分使得ospf的網路拓撲變得更加層次性和...