LAB 8 MPLS VPN MENGGUNAKAN EIGRP

Topologi, IP address, serta MPLS & LDP sudah di aktifkan serta masih sama
 dengan lab sebelumnya,  hanya saja routing OSPF di CE ke PE ataupun sebaliknya
di hapus, diganti dengan routing EIGRP,

Ingat pada R2-PE, R3-P dan R4-PE menggunakan routing OSPF serta BGP AS 234

di Router 2-PE

Konfigurasi EIGRP
router eigrp 100
 !       
 address-family ipv4 vrf car2 autonomous-system 100
  redistribute bgp 234 metric 1 1 1 1 1
  network 12.12.12.2 0.0.0.0
 exit-address-family
!       

Konfigurasi BGP

router bgp 234
 bgp log-neighbor-changes
 neighbor 4.4.4.4 remote-as 234
 neighbor 4.4.4.4 update-source Loopback0
 !       
 address-family vpnv4
  neighbor 4.4.4.4 activate
  neighbor 4.4.4.4 send-community extended
 exit-address-family
 !       
 address-family ipv4 vrf car2
  redistribute eigrp 100
 exit-address-family
!       

Konfigurasi di VRF untuk car2

ip vrf car2
 rd 1:10 
 route-target export 1:105
 route-target import 1:105
!


R4-PE

Konfigurasi EIGRP

router eigrp 100
 !       
 address-family ipv4 vrf car4 autonomous-system 100
  redistribute bgp 234 metric 1 1 1 1 1
  network 45.45.45.4 0.0.0.0
 exit-address-family
!   

Konfigurasi RIPv2

router rip
 version 2
 !       
 address-family ipv4 vrf cbr6
  network 46.0.0.0
  no auto-summary
  version 2
 exit-address-family
!     

Konfigurasi BGP

router bgp 234
 bgp log-neighbor-changes
 neighbor 2.2.2.2 remote-as 234
 neighbor 2.2.2.2 update-source Loopback0
 !       
 address-family vpnv4
  neighbor 2.2.2.2 activate
  neighbor 2.2.2.2 send-community extended
 exit-address-family
 !       
 address-family ipv4 vrf car4
  redistribute eigrp 100
 exit-address-family
 !       
 address-family ipv4 vrf cbr6
 exit-address-family
!       


Verifikasi IP route bgp di R2-PE dan R4-PE

R2-PE#sh ip bgp vpnv4 vrf car2 | b Net
     Network          Next Hop            Metric LocPrf Weight Path
Route Distinguisher: 1:10 (default for vrf car2)
 *>  1.1.1.1/32       12.12.12.1          409600         32768 ?
 *>i 5.5.5.5/32       4.4.4.4             409600    100      0 ?
 *>  12.12.12.0/24    0.0.0.0                  0         32768 ?
 *>i 45.45.45.0/24    4.4.4.4                  0    100      0 ?
R2-PE#


R4-PE#sh ip bgp vpnv4 vrf car4 | b Net
     Network          Next Hop            Metric LocPrf Weight Path
Route Distinguisher: 1:20 (default for vrf car4)
 *>i 1.1.1.1/32       2.2.2.2             409600    100      0 ?
 *>  5.5.5.5/32       45.45.45.5          409600         32768 ?
 *>i 12.12.12.0/24    2.2.2.2                  0    100      0 ?
 *>  45.45.45.0/24    0.0.0.0                  0         32768 ?
R4-PE#
   

Test Ping dari car2 ke car 4 dan sebaliknya juga

CAR2#ping 5.5.5.5
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 5.5.5.5, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 3/6/8 ms
CAR2#


CAR4#ping 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/3/6 ms
CAR4#

Mantab Mas bro, network yang berada car2 dapat terhubung dengan baik melalui
network MPLS untuk menuju car4 menggunakan EIGRP, sampai sini selesei.


Salam Ngoprek

Leave a Reply