Mikrotik - jak skonfigurować tunel EoIP lub VPLS (i test RB750)
Konfiguracja startowa
Do demonstracji używamy dwóch urządzeń RB750, połączone jak na rysunku poniżej:
Tunel EoIP
Urządzenie pierwsze
Ustawiamy adresację IP dla interfejsu ether5:
/ip address add address=172.16.1.1/30 interface=ether5 disabled=no
Dodajemy interfejs EoIP:
/ip eoip add name=eoip1 remote-address=172.16.1.2 tunnel-id=1 disabled=no
Tworzymy interfejs bridge:
/int bridge add name=bridge1
do którego dodajemy ether1 i eoip1
/int bridge port add bridge=bridge1 interface=eoip1
/int bridge port add bridge=bridge1 interface=ether1
Urządzenie drugie
Ustawiamy adresację IP dla interfejsu ether5:
/ip address add address=172.16.1.2/30 interface=ether5 disabled=no
Dodajemy interfejs EoIP:
/ip eoip add name=eoip1 remote-address=172.16.1.1 tunnel-id=1 disabled=no
Tworzymy interfejs bridge:
/int bridge add name=bridge1
do którego dodajemy ether1 i eoip1
/int bridge port add bridge=bridge1 interface=eoip1
/int bridge port add bridge=bridge1 interface=ether1
VPLS / MLPS
Urządzenie pierwsze
Ustawiamy adresację IP dla interfejsu ether5:
/ip address add address=172.16.1.1/30 interface=ether5 disabled=no
Włączamy LDP aby wymieniać etykiety pomiędzy ruterami:
/mpls ldp set enbled=yes lsr-id=172.16.1.1 transport-address=172.16.1.1
Dodajemy interfejs ether5 do LDP:
/mpls ldp interface add interface=ether5
Konfigurujemy tunel VPLS:
/interface vpls add name=vpls1 remote-peer=172.16.1.2 vpls-id=1:1 disabled=no
Tworzymy interfejs bridge:
/int bridge add name=bridge1
do którego dodajemy ether1 i vpls1
/int bridge port add bridge=bridge1 interface=vpls1
/int bridge port add bridge=bridge1 interface=ether1
Urządzenie drugie
Ustawiamy adresację IP dla interfejsu ether5:
/ip address add address=172.16.1.2/30 interface=ether5 disabled=no
Włączamy LDP aby wymieniać etykiety pomiędzy ruterami:
/mpls ldp set enbled=yes lsr-id=172.16.1.2 transport-address=172.16.1.2
Dodajemy interfejs ether5 do LDP:
/mpls ldp interface add interface=ether5
Konfigurujemy tunel VPLS:
/interface vpls add name=vpls1 remote-peer=172.16.1.1 vpls-id=1:1 disabled=no
Tworzymy interfejs bridge:
/int bridge add name=bridge1
do którego dodajemy ether1 i vpls1
/int bridge port add bridge=bridge1 interface=vpls1
/int bridge port add bridge=bridge1 interface=ether1
Test wydajności obu tuneli na dwóch urządzeniach RB750
Używamy oprogramowania w wersji 5.24, test prędkości za pomocą iperf pomiędzy dwoma segmentami LAN.
Dla EoIP wynik ok. 88,6Mbps (duplex):
Dla VPLS wynik ok. 85,4Mbps (duplex):
|