Community discussions

MikroTik App
 
Nanflexal
Member Candidate
Member Candidate
Topic Author
Posts: 127
Joined: Wed Sep 16, 2009 7:34 am

Help on MPLS and PPOE Configuration

Sun Jul 22, 2012 3:25 am

Guys,

I don't have experience in deploying MPLS and PPOE so i need your help about how to inter-connect does site using MPLS. I need help about configuration in RB450G to establish MPLS.

Site A Configuration
/system identity set name=Site A

# add loopback interface
/interface bridge
add name=loopback
/ip address
add address=10.255.255.1/32 interface=loopback
add address=10.10.10.1/24 interface=ether1

#set up ospf
/routing ospf instance
set default redistribute-connected=as-type-1
/routing ospf network
add network=10.10.0.0/24 area=backbone

# set up MPLS/LDP
/mpls interface set 0 mpls-mtu=1512
/mpls ldp
set enabled=yes lsr-id=10.255.255.1 transport-address=10.255.255.1
/mpls ldp interface
add interface=ether1
--------------------

Site B Configuration
/system identity set name=Site B

# add loopback interface
/interface bridge
add name=loopback
/ip address
add address=10.255.255.2/32 interface=loopback
add address=10.10.10.2/24 interface=ether1


#set up ospf
/routing ospf instance
set default redistribute-connected=as-type-1
/routing ospf network
add network=10.10.0.0/24 area=backbone


# set up MPLS/LDP
/mpls interface set 0 mpls-mtu=1512
/mpls ldp
set enabled=yes lsr-id=10.255.255.2 transport-address=10.255.255.2
/mpls ldp interface
add interface=ether1

--------------------

Site C
/system identity set name=Site C

# add loopback interface
/interface bridge
add name=loopback
/ip address
add address=10.255.255.3/32 interface=loopback
add address=10.10.10.3/24 interface=ether1

# set up pppoe
/interface pppoe-server server
add interface=ether2 service-name=mpls max-mru=1500 max-mtu=1500

/ppp secret
add name=mplsR3 service=pppoe remote-address=192.168.0.2 local-address=192.168.0.1
add name=mplsR4 service=pppoe remote-address=192.168.0.3 local-address=192.168.0.1
add name=mplsR4 service=pppoe remote-address=192.168.0.4 local-address=192.168.0.1

/interface pppoe-server
add name="mpls-Site-D" user="mpls-Site-D" service="mpls"
add name="mpls-Site-E" user="mpls-Site-E" service="mpls"
add name="mpls-Site-F" user="mpls-Site-F" service="mpls"

#set up ospf
/routing ospf instance
set default redistribute-connected=as-type-1
/routing ospf network
add network=10.10.0.0/24 area=backbone
add network=192.168.0.2/32 area=backbone
add network=192.168.0.3/32 area=backbone
add network=192.168.0.4/32 area=backbone

# set up MPLS/LDP
/mpls interface set 0 mpls-mtu=1512
/mpls ldp
set enabled=yes lsr-id=10.255.255.3 transport-address=10.255.255.3
/mpls ldp interface
add interface=ether1
add interface=mpls-Site-D
add interface=mpls-Site-E
add interface=mpls-Site-F
-------------------------

Site G

Site H

I should be able to hand out public IP and Class C IP in Site D,E and F via Site C.

I'm not sure about this config so please check guys.



Thanks in advance.
You do not have the required permissions to view the files attached to this post.
 
adairw
Frequent Visitor
Frequent Visitor
Posts: 57
Joined: Sun Jan 29, 2012 6:32 pm

Re: Help on MPLS and PPOE Configuration

Sun Jul 22, 2012 7:34 am

I'm probably missing something here, but why do you need mpls and pppoe?
Unless you're going to run vpls or true end to end mpls I don't think you need any of it for pppoe.
 
Nanflexal
Member Candidate
Member Candidate
Topic Author
Posts: 127
Joined: Wed Sep 16, 2009 7:34 am

Re: Help on MPLS and PPOE Configuration

Sun Jul 22, 2012 8:42 am

I'm probably missing something here, but why do you need mpls and pppoe?
Unless you're going to run vpls or true end to end mpls I don't think you need any of it for pppoe.
I'm just trying to make my network better, be it VPLS or MPLS and you're right, ppoe does not need MPLS.

if you have true end to end MPLS, can i see your diagram.

I have never done VPLS or MPLS deployment so please bear with me and i have limited knowledge at the moment.

Thanks
 
adairw
Frequent Visitor
Frequent Visitor
Posts: 57
Joined: Sun Jan 29, 2012 6:32 pm

Re: Help on MPLS and PPOE Configuration

Sun Jul 22, 2012 8:15 pm

I use mpls with vpls strictly to transport things around my network. I think of it like a routeable vlan that I bridge with physical interfaces or vlans. This way my customers don't see my network, just my edge router and that's it.
Your mpls config looked correct just quickly looking at it.
 
pospanko
Member Candidate
Member Candidate
Posts: 283
Joined: Sun Dec 18, 2005 4:23 pm

Re: Help on MPLS and PPOE Configuration

Mon Aug 20, 2012 4:45 pm

But I think you should consider replacing RB450(G) with something else (RB2011 or something like that) because of RB450's MTU od 1520. You need at least 1526 fall trought your network for PPPoE over VPLS.