Interkoneksi BGP Routing: Difference between revisions
No edit summary |
No edit summary |
||
| Line 11: | Line 11: | ||
== Interkoneksi BGP di ISP1 FRR == | == Interkoneksi BGP di ISP1 FRR == | ||
# ''' | # '''Konfigurasi Route-Map''' # | ||
route-map ISP2-IN permit 10 | route-map ISP2-IN permit 10 | ||
| Line 24: | Line 24: | ||
exit | exit | ||
# ''' | # '''Konfigurasi Large Community List''' # | ||
bgp large-community-list seq 5 permit 56789:56789:01234 | bgp large-community-list seq 5 permit 56789:56789:01234 | ||
# '''Konfigurasi BGP Peer''' # | |||
router bgp 56789 | |||
neighbor ISP2 peer-group | |||
neighbor 10.212.212.10 peer-group ISP2 | |||
neighbor 10.212.212.10 description ISP2 | |||
neighbor ISP2 remote-as 20940 | |||
address-family ipv4 | |||
neighbor ISP2 soft-reconfiguration inbound | |||
neighbor ISP2 route-map ISP2-IN in | |||
neighbor ISP2 route-map ISP2-OUT out | |||
exit | |||
exit | |||