Link to home
Start Free TrialLog in
Avatar of skywalker7
skywalker7

asked on

Mikrotik pppoe ospf question

Hello Experts !

I have implemented pppoe with OSPF, it works well with one subnet added, how can i add more subnet to the ospf ?

This enables OSPF for the 10.0.110.0/24 network.
/routing ospf area add area-id=0.0.0.110 name=public_110
/routing ospf network add area=public_110 network=10.0.110.0/24
/routing ospf area range add area=public_110 range 10.0.110.0/24 cost=default advertise=yes

Suppose i want to add this ranges ?

xx.xxx.160.0
xx.xxx.161.0
xx.xxx.162.0
xx.xxx.163.0

and how many concurrent connection RB1000 support ?

Thanks a lot !
Avatar of asdlkf
asdlkf

can we see a show run
Avatar of skywalker7

ASKER

its a mikrotik !
/routing ospf network
add network=xx.xxx.160.0/24 area=backbone
add network=xx.xxx.161.0/24 area=backbone
add network=xx.xxx.163.0/24 area=backbone
i have added the above range already and now i want to add more ranges, why should i all to backbone?

thanks for the answer.
It does not have to be backbone, that is OSPF area 0.  Just put it in there since I don't really know the network there.  All you have to do is the following:
/routing ospf network
add network=x.x.x.x/24 area=public

do this for any network you are sure you want OSPF to advertise to it's neighbors.

http://wiki.mikrotik.com/wiki/OSPF_and_PPPoE_Setup
this is waht i have followed, now i need to add some more ranges.
Okay, I am tracking.  Do the following:
/routing ospf area range add area=public_110 range X.X.X.0/24 cost=default advertise=yes
/routing ospf area range add area=public_110 range X.X.X.0/24 cost=default advertise=yes
/routing ospf area range add area=public_110 range X.X.X.0/24 cost=default advertise=yes

Change the area=public_110 to the area you are using.  Then change the range to be whatever range you wish it to be.  "public_110" is just the area id that is assigned here.  it can be whatever you want it to be.
/routing ospf area add area-id=0.0.0.110 name=public_110
/routing ospf network add area=public_110 network=10.0.110.0/24
/routing ospf area range add area=public_110 range 10.0.110.0/24 cost=default advertise=yes

i have the above added, I need to add more rages, so all i do :-

/routing ospf area range add area=public_110 range X.X.X.0/24 cost=default advertise=yes
/routing ospf area range add area=public_110 range X.X.X.0/24 cost=default advertise=yes
/routing ospf area range add area=public_110 range X.X.X.0/24 cost=default advertise=yes

so i keep the public_110 name as it is ?

thanks a lot for your time.
ASKER CERTIFIED SOLUTION
Avatar of ccie22921
ccie22921
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
all worked