1. 程式人生 > >路由器基礎配置之廣播多路訪問鏈路上的ospf

路由器基礎配置之廣播多路訪問鏈路上的ospf

都是 學習 ima In 之間 基礎配置 interface net 路由

技術分享圖片

我們將以上面的拓撲圖進行實驗,因為是要以不斷廣播的形式進行ospf,所有中間加了一個集線器,這種ospf和前一種不同,路由器之間會在配置好ospf之後選舉出一個老大,DR,一個備份,BDR,而其他路由器只和DR和BDR建立關系,他們相互之間是不會學習的,所有的路由器,包括BDR都是先由DR學習到所有路由表後從DR那開始學習的,選舉的規則首先是時間,最先啟動的就是DR,同時一樣,則看接口優先級,默認情況下,多路訪問的默認為1,如果都相同,則看路由器id,最高的則被選為DR,註意最高是1比2高,以此類推,那麽我們可以開始配置了

首先配置路由器的ip地址

router8:

enbale

config t

interface L0

ip address 1.1.1.1 255.255.255.0

exit

interface g0/0

ip address 192.168.100.1 255.255.255.0

no shu

router9:

enbale

config t

interface L0

ip address 3.3.3.3 255.255.255.0

exit

interface g0/0

ip address 192.168.100.3 255.255.255.0

no shu

router6

enbale

config t

interface L0

ip address 1.1.1.1 255.255.255.0

exit

interface g0/0

ip address 192.168.100.1 255.255.255.0

no shu

router7:

enbale

config t

interface L0

ip address 4.4.4.4 255.255.255.0

exit

interface g0/0

ip address 192.168.100.4 255.255.255.0

no shu

配置完ip地址開始配置ospf

router8

在全局配置模式下

router ospf 1

router-id 1.1.1.1

network 1.1.1.0 0.0.0.255 area 0

network 192.168.100.0 0.0.0.255 area 0

router9

在全局配置模式下

router ospf 1

router-id 2.2.2.2

network 2.2.2.0 0.0.0.255 area 0

network 192.168.100.0 0.0.0.255 area 0

router6

在全局配置模式下

router ospf 1

router-id 3.3.3.3

network 3.3.3.0 0.0.0.255 area 0

network 192.168.100.0 0.0.0.255 area 0

router7

在全局配置模式下

router ospf 1

router-id 4.4.4.4

network 4.4.4.0 0.0.0.255 area 0

network 192.168.100.0 0.0.0.255 area 0

配置完畢,可以在特權模式下使用show ip route 來查看路由表

也可以相互之間ping一下

因為啟動時間與接口都是一樣的,所有會根據id來選舉DR和BDR

最大的是router8,所以router8為DR

第二大為router9,所以router9為BDR

路由器基礎配置之廣播多路訪問鏈路上的ospf