Community discussions

MikroTik App
 
Ghaith93
newbie
Topic Author
Posts: 38
Joined: Sat Apr 23, 2016 5:51 pm

Re: one interface two pppoe-client

Wed Jul 06, 2016 4:44 am

Hi

you can't connect more than pppoe on same mac address 

**your ISP make this rule**

try to divide on 2 interface using Switch  
 
User avatar
nickshore
Long time Member
Long time Member
Posts: 524
Joined: Thu Mar 03, 2005 4:14 pm
Location: Suffolk, UK.
Contact:

Re: one interface two pppoe-client

Wed Jul 06, 2016 11:14 am

Use one pppoe-client and route the additional IP to it.
You will need to manually assign it on the client RouterBoard.

Nick
 
pe1chl
Forum Guru
Forum Guru
Posts: 10568
Joined: Mon Jun 08, 2015 12:09 pm

Re: one interface two pppoe-client

Wed Jul 06, 2016 12:24 pm

Or you could run an autorouting protocol like BGP (with a private AS number) to cover cases like this.
Of course not linked to the full internet BGP!
 
pe1chl
Forum Guru
Forum Guru
Posts: 10568
Joined: Mon Jun 08, 2015 12:09 pm

Re: one interface two pppoe-client

Wed Jul 06, 2016 2:16 pm

Now I have a little experience with it I use it all the time and don't have to worry anymore
about what addresses and what subnets are located where.
BGP is really simple to setup.  But maybe it is something to remember when more situations
like this do appear.
 
pe1chl
Forum Guru
Forum Guru
Posts: 10568
Joined: Mon Jun 08, 2015 12:09 pm

Re: one interface two pppoe-client

Wed Jul 06, 2016 6:09 pm

I use only eBGP, on a closed network, and it is very easy to get going on MikroTik.
Only set an AS number from the private range, and set "redistribute connected", then add Peer
items for the directly connected routers with nexthop-choice=force-self ttl=1 and the peer AS and IP.
Optionally (recommended) add a simple output filter that accepts your network range and discards all others,
like:
add action=accept chain=filter-out prefix=10.0.0.0/8 prefix-length=8-32
add action=discard chain=filter-out

From then on, no routing worries anymore :-)