使用OSPF重分發生成的預設路由將預設路由重分發到O

2021-04-03 05:50:51 字數 6566 閱讀 6871

1樓:清楚的細節

ospf引入路由

可以先建立一條預設路由,然後重分發到ospf裡還可以建立一條預設路由然後在ospf配置模式下router(config-router)#default-information originate always 這樣的話就會像area 0裡注入一條到預設路由

ospf中重分發預設路由和重分發靜態路由是否相同? 理由

2樓:安徽電信網上營業廳

靜態路由和ospf之間不存在雙向重分發,雙向重分發是動態路由協議之間的,靜態路由不是動態路由協議。預設路由和靜態路由之間也是有區別的,前者為系統預設選項,根據管理員設定好的引數來自動分配,而後者是需要管理員手動設定。

1.預設路由是一種特殊的靜態路由,指的是當路由表中與包的目的地址之間沒有匹配的表項時路由器能夠做出的選擇。如果沒有預設路由,那麼目的地址在路由表中沒有匹配表項的包將被丟棄· 預設路由在某些時候非常有效,當存在末梢網路時,預設路由會大大簡化路由器的配置,減輕管理員的工作負擔,提高網路效能。

2.靜態路由是指由使用者或網路管理員手工配置的路由資訊。當網路的拓撲結構或鏈路的狀態發生變化時,網路管理員需要手工去修改路由表中相關的靜態路由資訊。

靜態路由資訊在預設情況下是私有的,不會傳遞給其他的路由器。當然,網管員也可以通過對路由器進行設定使之成為共享的。靜態路由一般適用於比較簡單的網路環境,在這樣的環境中,網路管理員易於清楚地瞭解網路的拓撲結構,便於設定正確的路由資訊。

3.ospf(open shortest path first開放式最短路徑優先)是一個內部閘道器協議(interior gateway protocol,簡稱igp),用於在單一自治系統(autonomous system,as)內決策路由。是對鏈路狀態路由協議的一種實現,隸屬內部閘道器協議(igp),故運作於自治系統內部。

著名的迪克斯加演算法(dijkstra)被用來計算最短路徑樹。ospf分為ospfv2和ospfv3兩個版本,其中ospfv2用在ipv4網路,ospfv3用在ipv6網路。ospfv2是由rfc 2328定義的,ospfv3是由rfc 5340定義的。

與rip相比,ospf是鏈路狀態協議,而rip是距離向量協議。

4.動態路由是與靜態路由相對的一個概念,指路由器能夠根據路由器之間的交換的特定路由資訊自動地建立自己的路由表,並且能夠根據鏈路和節點的變化適時地進行自動調整。當網路中節點或節點間的鏈路發生故障,或存在其它可用路由時,動態路由可以自行選擇最佳的可用路由並繼續**報文。

將靜態路由重分發到ospf,將預設路由重分發到ospf,要全能通的 請把命令詳細點謝謝

3樓:匿名使用者

r1>en

r1#sh run

building configuration...

current configuration : 741 bytes

!version 12.2

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname r1!!

!!!!

!!!!

!!!!

!!!!

inte***ce fastethernet0/0

ip address 192.168.3.1 255.255.255.0

duplex auto

speed auto

!inte***ce fastethernet0/1

ip address 192.168.1.2 255.255.255.0

duplex auto

speed auto

!inte***ce fastethernet1/0

ip address 192.168.5.1 255.255.255.0

duplex auto

speed auto

!router ospf 1

router-id 1.1.1.1

log-adjacency-changes

network 192.168.3.0 0.0.0.255 area 0

network 192.168.1.0 0.0.0.255 area 1

default-information originate

!ip classless

ip route 0.0.0.0 0.0.0.0 192.168.5.2 !!

!!!!

!line con 0

exec-timeout 0 0

line vty 0 4

login!!

!end

r2#sh run

building configuration...

current configuration : 665 bytes

!version 12.2

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname r2!!

!!!!

!!!!

!!!!

!!!!

inte***ce fastethernet0/0

ip address 192.168.3.2 255.255.255.0

duplex auto

speed auto

!inte***ce fastethernet0/1

ip address 192.168.4.1 255.255.255.0

duplex auto

speed auto

!router ospf 1

router-id 2.2.2.2

log-adjacency-changes

redistribute rip metric 200 subnets tag 200

network 192.168.3.0 0.0.0.255 area 0

!router rip

version 2

redistribute ospf 1 metric 10

network 192.168.4.0

no auto-summary

!ip classless!!

!!!!

!line con 0

line vty 0 4

login!!

!end

r3#sh run

building configuration...

current configuration : 663 bytes

!version 12.2

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname r3!!

!!!!

!!!!

!!!!

!!!!

inte***ce fastethernet0/0

ip address 192.168.2.1 255.255.255.0

duplex auto

speed auto

!inte***ce fastethernet0/1

ip address 192.168.1.1 255.255.255.0

duplex auto

speed auto

!router ospf 1

router-id 3.3.3.3

log-adjacency-changes

redistribute static metric 100 subnets tag 100

redistribute connected

network 192.168.1.0 0.0.0.255 area 1

!ip classless

ip route 100.1.1.0 255.255.255.0 192.168.2.2 !!

!!!!

!line con 0

exec-timeout 0 0

line vty 0 4

login!!

!end

r4#sh run

building configuration...

current configuration : 512 bytes

!version 12.2

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname r4!!

!!!!

!!!!

!!!!

!!!!

inte***ce loopback1

ip address 100.1.1.1 255.255.255.0

!inte***ce fastethernet0/0

ip address 192.168.2.2 255.255.255.0

duplex auto

speed auto

!inte***ce fastethernet0/1

no ip address

duplex auto

speed auto

shutdown

!ip classless

ip route 0.0.0.0 0.0.0.0 192.168.2.1 !!

!!!!

!line con 0

line vty 0 4

login!!

!end

r5#sh run

building configuration...

current configuration : 555 bytes

!version 12.2

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname r5!!

!!!!

!!!!

!!!!

!!!!

inte***ce loopback1

ip address 200.1.1.1 255.255.255.0

!inte***ce fastethernet0/0

ip address 192.168.4.2 255.255.255.0

duplex auto

speed auto

!inte***ce fastethernet0/1

no ip address

duplex auto

speed auto

shutdown

!router rip

version 2

network 192.168.4.0

network 200.1.1.0

no auto-summary

!ip classless!!

!!!!

!line con 0

line vty 0 4

login!!

!end

isp#sh run

building configuration...

current configuration : 517 bytes

!version 12.2

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname isp!!

!!!!

!!!!

!!!!

!!!!

inte***ce loopback1

ip address 202.100.110.1 255.255.255.0

!inte***ce fastethernet0/0

ip address 192.168.5.2 255.255.255.0

duplex auto

speed auto

!inte***ce fastethernet0/1

no ip address

duplex auto

speed auto

shutdown

!ip classless

ip route 0.0.0.0 0.0.0.0 192.168.5.1 !!

!!!!

!line con 0

line vty 0 4

login!!

!end

OSPF使用的LSA型別有哪些詳細介紹下OSPF的7種LSA的型別

文件裡出現總共抄 有11種lsa,常見的bai是7種lsa,1 router lsa 2 work lsa 3 summary lsa 4 summary lsa abr發的du 5 external lsa asbr發的 6 n1 lsa 經過完全非純zhi末節區域dao 的7 n2 lsa 經過...

電腦出現使用中鍵盤 滑鼠突然同時失靈問題,重啟就好了

建議你先弄清楚是usb插口的問題還是滑鼠鍵盤的問題 為什麼電腦滑鼠 鍵盤突然失靈,重啟後就好了,這種情況反覆出現?對於使用者來說,最為常見,也最讓人心煩的鍵鼠故障,就是各種不期而至的鍵盤滑鼠突然失靈的問題。下面就讓我們對各種鍵鼠失靈現象進行分析,看看都有那些原因,可能造成鍵鼠失靈。系統休眠可能對部分...

如何清洗使用過的口罩,用過的口罩怎麼消毒重複使用嗎?

1.開水浸泡5分鐘 首先燒一鍋開水,水開後,倒入放口罩的盆裡。如果是塑料盆的話,開水建議先晾晾,然後浸泡口罩。如果有陶瓷盆建議用陶瓷盆浸泡。把陶瓷盆清洗乾淨,放入口罩在倒入沸水浸泡5分。2.肥皂清洗 可以用肥皂,洗衣粉等輕輕揉搓口罩。把灰塵髒的地方都好好的揉揉。如果力道過大的話,會讓口罩的布料變的鬆...