Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| networking:cisco:redistribution-route [2026/02/04 16:48] – [Konfigurasi] ilyasa | networking:cisco:redistribution-route [2026/02/04 16:53] (current) – [Testing] ilyasa | ||
|---|---|---|---|
| Line 195: | Line 195: | ||
| Table routing pada R0 tersimpan rute kesemua network akan tetapi pada R21 hanya mendapatkan advertaise rute ospf dari R0. Untuk R0 dapat membagikan table routing ke protocol lain (misal eigrp) maka kita perlu mendistribusikan eigrp pada ospf. DST… | Table routing pada R0 tersimpan rute kesemua network akan tetapi pada R21 hanya mendapatkan advertaise rute ospf dari R0. Untuk R0 dapat membagikan table routing ke protocol lain (misal eigrp) maka kita perlu mendistribusikan eigrp pada ospf. DST… | ||
| + | ==== Redistrubute Conntected, Static,dan EIGRP ke table routing OSPF. ==== | ||
| + | <code js> | ||
| + | R0(config)# | ||
| + | R0(config-router)# | ||
| + | R0(config-router)# | ||
| + | R0(config-router)# | ||
| + | </ | ||
| + | <WRAP center round info 100%> | ||
| + | tanpa '' | ||
| + | </ | ||
| - | * **Step 1 : Pembuatan VLANs** | + | ==== Redistrubute Static, EIGRP ke table routing EIGRP. == |
| - | < | + | < |
| - | Switch(config)#vlan 10 | + | R0(config)#router eigrp 1 |
| - | Switch(config-vlan)#name BIRU | + | R0(config-router)#redistribute ospf 1 metric 10000 100 255 1 1500 |
| - | Switch(config-vlan)#exit | + | R0(config-router)#redistribute static metric 10000 100 255 1 1500 |
| + | R0(config-router)# | ||
| + | </ | ||
| + | <WRAP center round info 100%> | ||
| + | Untuk redistribute OSPF ke EIGRP pastikan anda menentukan metricnya. Terkadang route tidak terdistribusikan apabila anda tidak menentukanya. | ||
| + | </ | ||
| - | Switch(config)#vlan 20 | + | |
| - | Switch(config-vlan)#name MAGENTA | + | ===== Testing ===== |
| - | Switch(config-vlan)#exit | + | * **R22 : Table Routing setelah kite mendistribute route** |
| + | <code js> | ||
| + | R22#show ip route | ||
| + | Codes: L - local, 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, E - EGP | ||
| + | i - IS-IS, 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 | ||
| + | |||
| + | O E2 192.168.11.0/ | ||
| + | O E2 192.168.12.0/ | ||
| + | O 192.168.21.0/ | ||
| + | | ||
| + | C | ||
| + | L | ||
| + | O E2 192.168.31.0/ | ||
| + | O E2 192.168.32.0/ | ||
| </ | </ | ||
| - | * **Step 2 : Assign VLANs ke Ports** | ||
| - | < | ||
| - | Switch(config)# | ||
| - | Switch(config-if)# | ||
| - | Switch(config-if)# | ||
| - | Switch(config-if)# | ||
| - | Switch(config)#interface f0/2 | + | * **R32 : Table Routing setelah kite mendistribute route** |
| - | Switch(config-if)# | + | <code js> |
| - | Switch(config-if)# | + | R32#show ip route |
| - | Switch(config-if)#exit | + | Codes: L - local, 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, E - EGP | ||
| + | i - IS-IS, 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 | ||
| + | |||
| + | D EX 192.168.11.0/ | ||
| + | D EX 192.168.12.0/ | ||
| + | D EX 192.168.21.0/ | ||
| + | D EX 192.168.22.0/ | ||
| + | D 192.168.31.0/ | ||
| + | | ||
| + | C | ||
| + | L | ||
| </ | </ | ||
| + | * **Test Ping** | ||
| + | <code js> | ||
| - | ===== Testing ===== | + | R12#ping 192.168.22.2 |
| + | |||
| + | Type escape sequence to abort. | ||
| + | Sending 5, 100-byte ICMP Echos to 192.168.22.2, | ||
| + | !!!!! | ||
| + | Success rate is 100 percent (5/5), round-trip min/ | ||
| + | </ | ||
| + | |||
| + | <code js> | ||
| + | R12#ping 192.168.32.2 | ||
| + | |||
| + | Type escape sequence to abort. | ||
| + | Sending 5, 100-byte ICMP Echos to 192.168.32.2, | ||
| + | !!!!! | ||
| + | Success rate is 100 percent (5/5), round-trip min/ | ||
| + | </ | ||