分發列表實現路由控制過濾(RIP)實驗

2022-09-23 00:51:14 字數 2248 閱讀 6596

一、基本實驗配置

r1 參考配置

配置介面位址

inte***ce loopback0

ip address 172.16.1.1 255.255.255.0

inte***ce loopback1

ip address 172.16.2.1 255.255.255.0

inte***ce loopback2

ip address 10.1.1.1 255.255.255.0

inte***ce fastethernet0/0

ip address 200.1.1.1 255.255.255.0

no shutdown

配置rip路由:

router rip

version 2

timers basic 5 10 10 15 修改計時器

network 10.0.0.0

network 172.16.0.0

network 200.1.1.0

no auto-summary

r2參考配置

介面位址配置

inte***ce fastethernet0/0

ip address 200.1.1.2 255.255.255.0

no shutdown

inte***ce fastethernet1/0

ip address 200.1.2.1 255.255.255.0

no shutdown

rip路由配置

router rip

version 2

timers basic 5 10 10 15 修改計時器

network 200.1.1.0

network 200.1.2.0

no auto-summary

r3 參考配置

inte***ce loopback0

ip address 192.168.1.1 255.255.255.0

inte***ce fastethernet0/0

ip address 200.1.2.2 255.255.255.0

no shutdown

router rip

version 2

timers basic 5 10 10 15

network 192.168.1.0

network 200.1.2.0

no auto-summary

配置完成後在r2上檢視路由

r 172.16.1.0/24 is possibly down,

routing via 200.1.1.1, fastethernet0/0

r 172.16.2.0/24 is possibly down,

routing via 200.1.1.1, fastethernet0/0

10.0.0.0/24 is subnetted, 1 subnets

r 10.1.1.0 [120/1] via 200.1.1.1, 00:00:01, fastethernet0/0

r 192.168.1.0/24 [120/1] via 200.1.2.2, 00:00:01, fastethernet1/0

在r2過濾掉172.16.0.0 的路由

第一步建立列表

access-list 10 deny 172.16.0.0 0.0.255.255

access-list 10 permit any

第二步確定方向和介面,並應用分發列表

r2(config)#router rip

r2(config-router)#distribute-list 10 in fastethernet0/0

在f0/0口的in方向應用分發列表呼叫10號訪問控制列表

檢視路由,172.16.0.0的路由已經消失,但10.1.1.0的路由依然可以看到,說明實驗成功

c 200.1.1.0/24 is directly connected, fastethernet0/0

c 200.1.2.0/24 is directly connected, fastethernet1/0

10.0.0.0/24 is subnetted, 1 subnets

r 10.1.1.0 [120/1] via 200.1.1.1, 00:00:00, fastethernet0/0

r 192.168.1.0/24 [120/1] via 200.1.2.2, 00:00:01, fastethernet1/0

使用分發列表過濾BGP路由

一 拓撲圖 二 配置各路由器的 ip位址,並執行 bgp協議。1 為了讓 r3學到明細路由 我們把 r1自動彙總關掉 r1 config router bgp 64512 r1 config router no auto summary r1 config router net 172.16.255...

RIP 路由控制

同中協議修改開銷值,不同協議修改優先順序 修改優先順序 ad 值 r1 rip 1 preference 99 通過rip學習的路由都將被修改優先順序,但只限本地。修改開銷值 cost metric 在進出路由的介面上呼叫 使用時需呼叫acl metricout 出方向 影響其他路由器的選路 met...

rip路由協議使用路由控制基本配置

要求 r2只傳送給r3 10.10.10.0 24 10.10.11.0 24 10.10.20.0 24的路由條目給r3 使用acl實現路由條目過濾 r3只接受r2傳送的10.10.10.0 24 10.10.20.0 24的路由條目 使用ip prefix實現路由條目過濾 r1 inte ce ...