Categories:

    OSPF over VPN MPLS

    Typical configuration (pada Provider Edge) OSPF lewat network VPN MPLS. Diasumsikan disisi provider ada 3 Router PE yaitu: PE A, PE B, PE C, status WAN MPLS dianggap sudah running. Dan sebuah customer bernama EKO dengan satu head office dan dua remote, salah satu remote menggunakan akses frame relay, terkoneksi ke WAN MPLS.

    OSPF over MPLS

    nama hafidz di ganti dengan eko coz gak ada gambarnya lagi :D

    Keterangan gambar:

    eko head office : 10.10.1.2/30

    eko remote1 : 10.30.1.2/30

    eko remote2 : 10.20.1.2/30 DLCI 301

    Konfigurasi PE A

    ip vrf eko
    rd 007:013
    route-target export 007:013
    route-target import 007:013

    interface FastEthernet4/0/0.100
    description eko_headoffice
    encapsulation dot1Q 100
    ip vrf forwarding eko
    ip address 10.10.1.1 255.255.255.252

    router ospf 1 vrf eko
    log-adjacency-changes
    redistribute static subnets
    redistribute bgp 2906 subnets
    network 10.10.1.0 0.0.0.3 area 1

    router bgp 2906
    address-family ipv4 vrf eko
    redistribute connected
    redistribute static
    redistribute ospf 1 vrf eko
    default-information originate
    no auto-summary
    no synchronization
    exit-address-family

    Konfigurasi PE B

    ip vrf eko
    rd 007:013
    route-target export 007:013
    route-target import 007:013

    interface FastEthernet5/0/0.101
    description eko_remote1
    encapsulation dot1Q 101
    ip vrf forwarding eko
    ip address 10.30.1.1 255.255.255.252

    router ospf 1 vrf jiwasraya
    log-adjacency-changes
    redistribute static subnets
    redistribute bgp 2906 subnets
    network 10.30.1.0 0.0.0.3 area 1

    router bgp 2906
    address-family ipv4 vrf eko
    redistribute connected
    redistribute static
    redistribute ospf 1 vrf eko
    no auto-summary
    no synchronization
    exit-address-family

    Konfigurasi PE C

    ip vrf eko
    rd 007:013
    route-target export 007:013
    route-target import 007:013

    interface Serial0/1.301 point-to-point
    description hafidz_remote2
    ip vrf forwarding eko
    ip address 10.20.1.1 255.255.255.252
    frame-relay interface-dlci 301

    router ospf 1 vrf eko
    log-adjacency-changes
    redistribute static subnets
    redistribute bgp 2906 subnets
    network 10.20.1.0 0.0.0.3 area 1

    router bgp 2906
    address-family ipv4 vrf eko
    redistribute connected
    redistribute static
    redistribute ospf 1 vrf eko
    no auto-summary
    no synchronization
    exit-address-family

    1 Response

    1. referensinya bisa dilihat dari sini:
      http://blog.hafidz.web.id/2006/09/19/ospf-over-vpn-mpls/