配置單區域OSPF Enabling OSPF

2021-09-21 16:16:12 字數 2782 閱讀 5279

1.按照拓撲圖配置好每台路由器的介面ip位址;

2.配置單區域ospf:

r1(config)#router ospf 10               //啟用ospf路由協議,程序id為10

r1(config-router)#network 10.1.1.0 0.0.0.255 area 0   //指明直連網段10.1.1.0,注意後面跟的是子網掩碼的反碼

r1(config-router)#network 10.2.2.0 0.0.0.31 area 0

r1(config-router)#network 10.3.3.0 0.0.0.255 area 0

r1(config-router)#exit

r2(config)#router ospf 20

r2(config-router)#network 10.3.3.0 0.0.0.255 area 0

r2(config-router)#network 172.16.3.0 0.0.0.255 area 0

r2(config-router)#exit

r3(config)#router ospf 30

r3(config-router)#network 172.16.3.0 0.0.0.255 area 0

r3(config-router)#network 172.16.1.0 0.0.0.255 area 

r3(config-router)#network 172.16.1.0 0.0.0.255 area 0

r3(config-router)#network 172.16.2.0 0.0.0.31 area 0

r3(config-router)#exit

注:子網掩碼的反碼:就是用255.255.255.255減去子網掩碼所得到的數,例如:255.255.255.224的掩碼反碼為:255.255.255.255-255.255.255.224=0.0.0.31,就和上面的10.2.2.0/27和172.16.2.0/27網段計算出來的一樣。

3.驗證:使用ping命令測試連通行,這裡略。我們用show命令檢視一下ospf相關資訊,例如r1:

r1#show ip route 

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

d - eigrp, ex - eigrp external, 

o - ospf, ia - ospf inter area 

n1 - ospf nssa external type 1, n2 - ospf nssa external type 2

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

i - is-is, su - is-is summary, l1 - is-is level-1, l2 - is-is level-2

ia - is-is inter area, * - candidate default, u - per-user static route

o - odr, p - periodic downloaded static route

gateway of last resort is not set

172.16.0.0/16 is variably subnetted, 3 subnets, 2 masks

o       172.16.1.1/32 [110/129] via 10.3.3.2, 00:00:02, serial1/1

o       172.16.3.0/24 [110/128] via 10.3.3.2, 00:00:02, serial1/1

o       172.16.2.1/32 [110/129] via 10.3.3.2, 00:00:02, serial1/1

10.0.0.0/8 is variably subnetted, 3 subnets, 2 masks

c       10.3.3.0/24 is directly connected, serial1/1

c       10.2.2.0/27 is directly connected, loopback1

c       10.1.1.0/24 is directly connected, loopback0

r1#show ip ospf neighbor 

neighbor id     pri   state           dead time   address         inte***ce

172.16.3.2        0   full/  -        00:00:36    10.3.3.2        serial1/1

r1#show ip ospf database 

ospf router with id (10.2.2.1) (process id 10)

router link states (area 0)

link id         adv router      age         seq#       checksum link count

10.2.2.1        10.2.2.1        37          0x80000004 0x003032 4

172.16.2.1      172.16.2.1      27          0x80000002 0x00330e 4

172.16.3.2      172.16.3.2      28          0x80000003 0x001eef 4

ok,實驗完。

思科單區域OSPF配置實驗

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

配置NSSA區域

實驗名稱 配置nssa區域 實驗要求 如圖配置裝置ip位址和ospf區域 r4去往isp,使用的是靜態的預設路由 r1去往合作公司,使用的也是靜態路由,僅需要訪問 pc 1 即可 區域 123 不允許出現 5類 lsa 確保 pc 1 和 server 1 互通 實驗拓撲 實驗配置 r1 ip 配置...

OSPF單區域路由協議

1.ospf協議的全程是開放式最短路徑優先協議,協議採用鏈路狀態協議演算法 ls協議 2.ospf協議配置的過程 主要指令 router ospf x 開啟ospf協議 其中x代指ospf路由程序id router id x.x.x.x 指定路由器的router id network x.x.x.x...