Community discussions

MikroTik App
 
User avatar
shadowskippie
Member Candidate
Member Candidate
Topic Author
Posts: 213
Joined: Tue Dec 21, 2010 6:20 pm

trying to peer into network using OSPF

Mon Jun 06, 2011 3:17 pm

Afternoon

i need a little help trying to peer into a network that is attached to an ospf network without using masquerade.

I'll first start by giving you some exports of router that this all needs to take place from.
Flags: D - dynamic, X - disabled, R - running, S - slave 
 #     NAME                                        TYPE             MTU   L2MTU
 0  R  ether3                                      ether            1500  1600 
 1  R  ether1                                      ether            1500  1600 
 2  R  ether2                                      ether            1500  1600 
 3  R  Hunters                                     wlan             1500  2290 
 4  R  Belvidere                                   wlan             1500  2290 
 5  X  anthony                                     wlan             1500 
 6  R  Omni                                        wlan             1500  2290 
 7  R  Stadium                                     wlan             1500  2290 
Ether 1 heads to the core router that supplies internet to the network. ether 2 is the main office. ether 3 is where this peering needs to happen, it connects directly to a radius server.
 #   ADDRESS            NETWORK         BROADCAST       INTERFACE              
                
 1   192.168.252.1/24   192.168.252.0   192.168.252.255 ether2                 
          
 3   192.168.100.2/30   192.168.100.0   192.168.100.3   ether1                 
\

**note: i am only showing you the IPs pertaining to the ether ports
AS you can see only ether 1 and 2 have IP addresses. when i just could not look back into ether 3 without masquerade i setup a PPP on the server. it work halfway.
Flags: X - disabled, I - invalid, D - dynamic 
 0   chain=srcnat action=masquerade out-interface=ether1 

 1   chain=srcnat action=masquerade out-interface=ether2 
as you can see masquerade is running on ether 1 and 2. it cannot run on ether 3 or the radius server will not know from where the requests came from but without the masquerade i can't even ping the server.



i need to be able to peer the server from anywhere on the network without putting masquerade on the ether port it connects to.
Can anyone help me with this
 
fewi
Forum Guru
Forum Guru
Posts: 7717
Joined: Tue Aug 11, 2009 3:19 am

Re: trying to peer into network using OSPF

Mon Jun 06, 2011 4:22 pm

Apply an IP address to a port, put the server behind it, add that network and interface to the OSPF process.
 
User avatar
shadowskippie
Member Candidate
Member Candidate
Topic Author
Posts: 213
Joined: Tue Dec 21, 2010 6:20 pm

Re: trying to peer into network using OSPF

Mon Jun 06, 2011 4:37 pm

sorry, i'm not very clued up with OSPF

Could you explain to me how to go about that please
 
fewi
Forum Guru
Forum Guru
Posts: 7717
Joined: Tue Aug 11, 2009 3:19 am

Re: trying to peer into network using OSPF

Mon Jun 06, 2011 5:02 pm

Add an IP address to an interface as you usually would. That will form the default gateway for the network the server will be on, and the network that will be advertised via OSPF.

Then add the network to OSPF: http://wiki.mikrotik.com/wiki/Manual:Ro ... PF#Network. You can emulate the other networks already in OSPF on that router.
That go to the OSPF interfaces: http://wiki.mikrotik.com/wiki/Manual:Ro ... #Interface. Add the interface the network you just added is on is and set its 'passive' parameter to 'yes'.

Then check that the network is being seen by other routers in the OSPF domain.

If you're going to run OSPF it's worth learning about it. It's not as trivial as some other routing protocols. Waiting until you have to troubleshoot it because there's an issue is a bad time to learn - Cisco and Juniper have excellent, free, on-line documentation that includes OSPF. It's aimed at their platforms but is still going to explain the concepts fairly well.
 
User avatar
shadowskippie
Member Candidate
Member Candidate
Topic Author
Posts: 213
Joined: Tue Dec 21, 2010 6:20 pm

Re: trying to peer into network using OSPF

Tue Jun 07, 2011 9:44 am

I never setup this OSPF, it was done by our previous network admin. when he left i was forced to have to fill his shoes which is not easy.
I have a book called basic routing with seems to cover the theory of OSPF but it does help me with the practical use and my CCNA coarse hardly even goes over it.

Any ways.
I have done what you told me but right now i'm getting a small issue. from the directly connected router i can ping the server but not from anywhere else.

I'm gonna give you a snap shot of the OSPf from the connected router and then one sitting at the end of the network



Connected router
Flags: X - disabled, I - invalid 
 #   NETWORK            AREA                                                   
 0   0.0.0.0/0          backbone                                               
 1   192.168.253.0/24   backbone                                               
the second i put in, the first was placed by our old admin
173 192.168.253.0/24   intra-area     10           0.0.0.0         ether3     >
Pulled this our of the OSPF routes table, this is what the connected tower is seeing
Flags: X - disabled 
 0   name="default" router-id=192.168.100.126 distribute-default=never 
     redistribute-connected=no redistribute-static=as-type-2 
     redistribute-rip=no redistribute-bgp=no redistribute-other-ospf=no 
     metric-default=1 metric-connected=20 metric-static=20 metric-rip=20 
     metric-bgp=auto metric-other-ospf=auto in-filter=ospf-in 
     out-filter=ospf-out

And now a far end router
Flags: X - disabled, I - invalid 
 #   NETWORK            AREA                                                   
 0   192.168.0.0/16     backbone                                               
175 192.168.253.0/24   intra-area     80           192.168.100.5   ether2     >
Again, pulled this route out of the route table
Flags: X - disabled 
 0   name="default" router-id=192.168.100.6 distribute-default=never 
     redistribute-connected=no redistribute-static=as-type-2 
     redistribute-rip=no redistribute-bgp=no redistribute-other-ospf=no 
     metric-default=1 metric-connected=20 metric-static=20 metric-rip=20 
     metric-bgp=20 metric-other-ospf=auto in-filter=ospf-in 
     out-filter=ospf-out 


everything was done by our network admin, the only change i have done is adding that 192.168.253.0/24 network on the connecting tower as well as the interface. basically what you told me to add.

If you need any more info please ask
 
User avatar
shadowskippie
Member Candidate
Member Candidate
Topic Author
Posts: 213
Joined: Tue Dec 21, 2010 6:20 pm

Re: trying to peer into network using OSPF

Tue Jun 07, 2011 4:04 pm

right. been doing a little testing. it turns out the reason the ping test on the connected router could ping the Radius server was because it was performing pings out of the connected interface. if i tried to from from a different network which is sitting on a different interface the ping fails

192.168.253.8 > server
this ping fails
however pinging the interface itself does receive an echo
192.168.253.1 > interface
this one responds



I'm gonna add an export of the OSPF interfaces
Flags: X - disabled, I - inactive, D - dynamic, P - passive 
 #    INTERFACE                COST  PRI NETWORK-TYPE   AUT... AUTHENTICATIO...
 0  P ether3                   10    1   broadcast      none                   
 1 D  Hunters                  10    1   broadcast      none                   
 2 D  Belvidere                10    1   broadcast      none                   
 3 D  <pppoe-janie>            10    1   point-to-point none                   
 4 D  ether1                   10    1   broadcast      none                   
 5 D  <pppoe-seanetadmin-1>    10    1   point-to-point none                   
 6 D  <pppoe-katt>             10    1   point-to-point none                   
 7 D  ether2                   10    1   broadcast      none                   
 8 D  Stadium                  10    1   broadcast      none                   
 9 D  <pppoe-radius-1>         10    1   point-to-point none                   
 
fewi
Forum Guru
Forum Guru
Posts: 7717
Joined: Tue Aug 11, 2009 3:19 am

Re: trying to peer into network using OSPF

Tue Jun 07, 2011 4:23 pm

According to that other towers have a route to that network, as they should. Are you sure you're not duplicating IP space and that the network you're introducing isn't somewhere else already? This could also be as simple as the server not having the correct default gateway configured so it can't talk to anyone that is not directly connected. Or its firewall being configured to only allow ping from directly connected networks, this happens a lot with recent versions of Windows.

Please post the following from the directly connected router:
"/interface print detail", "/ip address print detail", "/ip route print detail", "/routing ospf export", and "/routing ospf lsa print detail". Include the line of the ccommand being run in what you copy/paste so that it's easy to figure out the router name and exact command syntax that led to the output. Also post a network diagram.

Also, and I am not saying that to make you feel bad or anything, but if you inherited a network with OSPF then it's time to hunker down and study OSPF. You cannot administrate a network where you cannot predict packet paths because you don't know the routing protocol being used inside out. Sooner or later that will lead to very not fun nights troubleshooting.
 
User avatar
shadowskippie
Member Candidate
Member Candidate
Topic Author
Posts: 213
Joined: Tue Dec 21, 2010 6:20 pm

Re: trying to peer into network using OSPF

Wed Jun 08, 2011 10:37 am

i am trying to learn but the books i have on the subject talk about the protocol, its theory but when i try take that to the practical stage it just doesn't want to work right :(
I have some virtual machines at home (i'd have them here at work if the machine i worked on was powerful enough to run multiple virtual machines) running RouterOS and even there i can't get it working right. that basically tells me, despite me having read through those books a few times trying to understand it, there must be something very simple that i'm just not seeing.

anyways, onto the print outs

*Warning, prepare for a wall of text* 0.o
Flags: D - dynamic, X - disabled, R - running, S - slave 
 0  R  name="ether3" type="ether" mtu=1500 l2mtu=1600 

 1  R  name="ether1" type="ether" mtu=1500 l2mtu=1600 

 2  R  name="ether2" type="ether" mtu=1500 l2mtu=1600 

 3  R  name="Hunters" type="wlan" mtu=1500 l2mtu=2290 

 4  R  name="Belvidere" type="wlan" mtu=1500 l2mtu=2290 

 5  X  name="anthony" type="wlan" mtu=1500 

 6  R  name="Omni" type="wlan" mtu=1500 l2mtu=2290 

 7  R  name="Stadium" type="wlan" mtu=1500 l2mtu=2290 

 8 DR  name="<pppoe-janie>" type="pppoe-in" mtu=1480 

 9 DR  name="<pppoe-radius-1>" type="pppoe-in" mtu=1480 

10 DR  name="<pppoe-katt>" type="pppoe-in" mtu=1480 
Flags: X - disabled, I - invalid, D - dynamic 
 0   address=192.168.100.126/30 network=192.168.100.124 broadcast=192.168.100.127 interface=Hunters actual-interface=Hunters 

 1   address=192.168.252.1/24 network=192.168.252.0 broadcast=192.168.252.255 interface=ether2 actual-interface=ether2 

 2   address=192.168.100.153/30 network=192.168.100.152 broadcast=192.168.100.155 interface=Belvidere actual-interface=Belvidere 

 3   address=192.168.100.2/30 network=192.168.100.0 broadcast=192.168.100.3 interface=ether1 actual-interface=ether1 

 4   address=192.168.100.201/30 network=192.168.100.200 broadcast=192.168.100.203 interface=Stadium actual-interface=Stadium 

 5 D address=192.168.104.223/32 network=192.168.104.220 broadcast=0.0.0.0 interface=<pppoe-janie> actual-interface=<pppoe-janie> 

 6   address=192.168.253.1/24 network=192.168.253.0 broadcast=192.168.253.255 interface=ether3 actual-interface=ether3 

 7 D address=192.168.140.1/32 network=192.168.140.2 broadcast=0.0.0.0 interface=<pppoe-radius-1> actual-interface=<pppoe-radius-1> 

 8 D address=192.168.104.176/32 network=192.168.104.172 broadcast=0.0.0.0 interface=<pppoe-katt> actual-interface=<pppoe-katt> 
Flags: X - disabled, A - active, D - dynamic, C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme, B - blackhole, U - unreachable, P - prohibit 
 0 A S  dst-address=0.0.0.0/0 gateway=192.168.100.1 gateway-status=192.168.100.1 reachable ether1 distance=1 scope=30 target-scope=10 

 1 ADo  dst-address=10.5.50.0/24 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=20 ospf-type=intra-area 

 2 ADo  dst-address=10.5.51.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 ospf-type=intra-area 

 3 A S  dst-address=192.168.0.0/24 gateway=192.168.100.1 gateway-status=192.168.100.1 reachable ether1 distance=1 scope=30 target-scope=10 

 4  Do  dst-address=192.168.0.0/24 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

 5 ADo  dst-address=192.168.1.0/24 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=30 ospf-type=intra-area 

 6 ADo  dst-address=192.168.2.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 ospf-type=intra-area 

 7 ADo  dst-address=192.168.12.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=90 ospf-type=intra-are>

 8 ADo  dst-address=192.168.15.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 ospf-type=intra-are>

 9 ADo  dst-address=192.168.16.0/24 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

10 ADo  dst-address=192.168.17.0/24 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

11 ADo  dst-address=192.168.19.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 ospf-type=intra-are>

12 ADo  dst-address=192.168.21.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 ospf-type=intra-are>

13 ADo  dst-address=192.168.23.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 ospf-type=intra-are>

14 ADo  dst-address=192.168.42.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 ospf-type=intra-are>

15 ADo  dst-address=192.168.87.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=external-type-2 

16 ADC  dst-address=192.168.100.0/30 pref-src=192.168.100.2 gateway=ether1 gateway-status=ether1 reachable distance=0 scope=10 

17 ADo  dst-address=192.168.100.4/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

18 ADo  dst-address=192.168.100.8/29 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

19 ADo  dst-address=192.168.100.16/28 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

20 ADo  dst-address=192.168.100.40/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

21 ADo  dst-address=192.168.100.44/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

22 ADo  dst-address=192.168.100.60/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

23 ADo  dst-address=192.168.100.100/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

24 ADo  dst-address=192.168.100.101/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=external-type-2 

25 ADo  dst-address=192.168.100.104/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=50 
        ospf-type=intra-area 

26 ADo  dst-address=192.168.100.108/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=50 
        ospf-type=intra-area 

27 ADo  dst-address=192.168.100.120/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

28 ADC  dst-address=192.168.100.124/30 pref-src=192.168.100.126 gateway=Hunters gateway-status=Hunters reachable distance=0 scope=10 

29 ADC  dst-address=192.168.100.152/30 pref-src=192.168.100.153 gateway=Belvidere gateway-status=Belvidere reachable distance=0 scope=10 

30 ADo  dst-address=192.168.100.156/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

31 ADo  dst-address=192.168.100.161/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=external-type-2 

32 ADo  dst-address=192.168.100.162/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=external-type-2 

33 ADo  dst-address=192.168.100.188/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

34 ADC  dst-address=192.168.100.200/30 pref-src=192.168.100.201 gateway=Stadium gateway-status=Stadium reachable distance=0 scope=10 

35 ADo  dst-address=192.168.100.204/30 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

36 ADo  dst-address=192.168.101.16/30 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

37 ADo  dst-address=192.168.102.8/29 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

38 ADo  dst-address=192.168.102.16/29 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

39 ADC  dst-address=192.168.104.172/32 pref-src=192.168.104.176 gateway=<pppoe-katt> gateway-status=<pppoe-katt> reachable distance=0 scope=10 

40 ADC  dst-address=192.168.104.220/32 pref-src=192.168.104.223 gateway=<pppoe-janie> gateway-status=<pppoe-janie> reachable distance=0 scope=10 

41 ADo  dst-address=192.168.121.26/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=90 
        ospf-type=intra-area 

42 ADo  dst-address=192.168.121.44/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

43 ADo  dst-address=192.168.121.91/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

44 ADo  dst-address=192.168.121.245/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

45 ADo  dst-address=192.168.121.249/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

46 ADo  dst-address=192.168.121.253/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

47 ADC  dst-address=192.168.140.2/32 pref-src=192.168.140.1 gateway=<pppoe-radius-1> gateway-status=<pppoe-radius-1> reachable distance=0 scope=10 

48 ADo  dst-address=192.168.140.18/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=90 
        ospf-type=intra-area 

49 ADo  dst-address=192.168.140.28/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

50 ADo  dst-address=192.168.140.30/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

51 ADo  dst-address=192.168.140.34/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

52 ADo  dst-address=192.168.141.2/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

53 ADo  dst-address=192.168.151.226/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

54 ADo  dst-address=192.168.151.232/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

55 ADo  dst-address=192.168.151.237/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

56 ADo  dst-address=192.168.151.242/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

57 ADo  dst-address=192.168.151.244/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

58 ADo  dst-address=192.168.151.248/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

59 ADo  dst-address=192.168.152.34/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

60 ADo  dst-address=192.168.152.57/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

61 ADo  dst-address=192.168.152.74/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

62 ADo  dst-address=192.168.152.75/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

63 ADo  dst-address=192.168.152.79/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

64 ADo  dst-address=192.168.152.86/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

65 ADo  dst-address=192.168.152.88/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

66 ADo  dst-address=192.168.152.90/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

67 ADo  dst-address=192.168.152.91/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

68 ADo  dst-address=192.168.152.92/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

69 ADo  dst-address=192.168.152.96/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

70 ADo  dst-address=192.168.152.102/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

71 ADo  dst-address=192.168.152.109/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

72 ADo  dst-address=192.168.152.125/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

73 ADo  dst-address=192.168.152.139/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

74 ADo  dst-address=192.168.152.141/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

75 ADo  dst-address=192.168.152.154/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

76 ADo  dst-address=192.168.152.170/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

77 ADo  dst-address=192.168.152.172/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

78 ADo  dst-address=192.168.152.200/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

79 ADo  dst-address=192.168.152.201/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

80 ADo  dst-address=192.168.152.206/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

81 ADo  dst-address=192.168.152.209/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

82 ADo  dst-address=192.168.152.211/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

83 ADo  dst-address=192.168.152.218/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

84 ADo  dst-address=192.168.152.237/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

85 ADo  dst-address=192.168.152.240/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

86 ADo  dst-address=192.168.152.241/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

87 ADo  dst-address=192.168.152.243/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

88 ADo  dst-address=192.168.152.244/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

89 ADo  dst-address=192.168.152.245/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

90 ADo  dst-address=192.168.152.246/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=40 
        ospf-type=intra-area 

91 ADo  dst-address=192.168.153.33/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=50 
        ospf-type=intra-area 

92 ADo  dst-address=192.168.153.36/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=50 
        ospf-type=intra-area 

93 ADo  dst-address=192.168.153.111/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=50 
        ospf-type=intra-area 

94 ADo  dst-address=192.168.154.20/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

95 ADo  dst-address=192.168.154.21/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

96 ADo  dst-address=192.168.154.22/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

97 ADo  dst-address=192.168.154.23/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

98 ADo  dst-address=192.168.154.24/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

99 ADo  dst-address=192.168.154.27/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

100 ADo  dst-address=192.168.154.28/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

101 ADo  dst-address=192.168.154.30/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

102 ADo  dst-address=192.168.154.47/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

103 ADo  dst-address=192.168.154.49/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

104 ADo  dst-address=192.168.154.84/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

105 ADo  dst-address=192.168.154.164/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

106 ADo  dst-address=192.168.154.177/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

107 ADo  dst-address=192.168.154.210/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

108 ADo  dst-address=192.168.154.219/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

109 ADo  dst-address=192.168.154.221/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

110 ADo  dst-address=192.168.154.243/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

111 ADo  dst-address=192.168.154.252/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=intra-area 

112 ADo  dst-address=192.168.155.37/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

113 ADo  dst-address=192.168.155.46/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

114 ADo  dst-address=192.168.155.140/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

115 ADo  dst-address=192.168.155.164/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

116 ADo  dst-address=192.168.155.181/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

117 ADo  dst-address=192.168.155.193/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

118 ADo  dst-address=192.168.155.194/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

119 ADo  dst-address=192.168.155.223/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

120 ADo  dst-address=192.168.156.34/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

121 ADo  dst-address=192.168.156.44/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

122 ADo  dst-address=192.168.156.171/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

123 ADo  dst-address=192.168.156.203/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

124 ADo  dst-address=192.168.156.242/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

125 ADo  dst-address=192.168.156.252/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

126 ADo  dst-address=192.168.156.254/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

127 ADo  dst-address=192.168.157.63/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=90 
        ospf-type=intra-area 

128 ADo  dst-address=192.168.157.65/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=90 
        ospf-type=intra-area 

129 ADo  dst-address=192.168.158.245/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

130 ADo  dst-address=192.168.159.212/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

131 ADo  dst-address=192.168.159.216/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

132 ADo  dst-address=192.168.159.217/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

133 ADo  dst-address=192.168.159.231/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

134 ADo  dst-address=192.168.159.233/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

135 ADo  dst-address=192.168.159.234/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

136 ADo  dst-address=192.168.159.236/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

137 ADo  dst-address=192.168.159.240/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

138 ADo  dst-address=192.168.160.96/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

139 ADo  dst-address=192.168.160.99/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

140 ADo  dst-address=192.168.163.241/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

141 ADo  dst-address=192.168.163.243/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

142 ADo  dst-address=192.168.164.29/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

143 ADo  dst-address=192.168.164.78/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

144 ADo  dst-address=192.168.164.129/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

145 ADo  dst-address=192.168.164.218/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

146 ADo  dst-address=192.168.164.219/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

147 ADo  dst-address=192.168.164.220/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

148 ADo  dst-address=192.168.165.163/32 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

149 ADo  dst-address=192.168.165.171/32 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

150 ADo  dst-address=192.168.165.177/32 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=20 
        ospf-type=intra-area 

151 ADo  dst-address=192.168.166.246/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

152 ADo  dst-address=192.168.166.249/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

153 ADo  dst-address=192.168.166.253/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

154 ADo  dst-address=192.168.167.2/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

155 ADo  dst-address=192.168.167.3/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

156 ADo  dst-address=192.168.167.22/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

157 ADo  dst-address=192.168.167.33/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

158 ADo  dst-address=192.168.167.34/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

159 ADo  dst-address=192.168.167.81/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

160 ADo  dst-address=192.168.167.98/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

161 ADo  dst-address=192.168.167.102/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

162 ADo  dst-address=192.168.167.251/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

163 ADo  dst-address=192.168.167.252/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
163 ADo  dst-address=192.168.167.252/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

164 ADo  dst-address=192.168.167.253/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

165 ADo  dst-address=192.168.168.227/32 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

166 ADo  dst-address=192.168.168.249/32 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

167 ADo  dst-address=192.168.168.251/32 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

168 ADo  dst-address=192.168.168.253/32 gateway=192.168.100.202 gateway-status=192.168.100.202 reachable Stadium distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

169 ADo  dst-address=192.168.169.16/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

170 ADo  dst-address=192.168.169.22/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

171 ADo  dst-address=192.168.169.37/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

172 ADo  dst-address=192.168.169.98/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

173 ADo  dst-address=192.168.169.99/32 gateway=192.168.100.154 gateway-status=192.168.100.154 reachable Belvidere distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

174 ADo  dst-address=192.168.171.162/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

175 ADo  dst-address=192.168.173.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=external-type-2 

176 ADo  dst-address=192.168.173.99/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=60 
        ospf-type=external-type-2 

177 ADo  dst-address=192.168.209.246/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=80 
        ospf-type=intra-area 

178 ADo  dst-address=192.168.209.248/32 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=70 
        ospf-type=intra-area 

179 ADo  dst-address=192.168.250.0/24 gateway=192.168.100.125 gateway-status=192.168.100.125 reachable Hunters distance=110 scope=20 target-scope=10 ospf-metric=30 
        ospf-type=intra-area 

180 ADC  dst-address=192.168.252.0/24 pref-src=192.168.252.1 gateway=ether2 gateway-status=ether2 reachable distance=0 scope=10 

181 ADC  dst-address=192.168.253.0/24 pref-src=192.168.253.1 gateway=ether3 gateway-status=ether3 reachable distance=0 scope=10 
# jun/08/2011 09:34:29 by RouterOS 4.17
# software id = TMY7-IFE2
#
/routing ospf instance
set default comment="" disabled=no distribute-default=never in-filter=ospf-in metric-bgp=auto metric-connected=20 metric-default=1 metric-other-ospf=auto metric-rip=20 \
    metric-static=20 name=default out-filter=ospf-out redistribute-bgp=no redistribute-connected=no redistribute-other-ospf=as-type-2 redistribute-rip=no redistribute-static=\
    as-type-2 router-id=192.168.100.126
/routing ospf area
set backbone area-id=0.0.0.0 comment="" disabled=no instance=default name=backbone type=default
/routing ospf area range
add advertise=yes area=backbone comment="" cost=calculated disabled=no range=0.0.0.0/0
/routing ospf interface
add authentication=none authentication-key="" authentication-key-id=1 comment="" cost=10 dead-interval=40s disabled=no hello-interval=10s instance-id=0 interface=ether3 \
    network-type=broadcast passive=yes priority=1 retransmit-interval=5s transmit-delay=1s use-bfd=no
/routing ospf network
add area=backbone comment="" disabled=no network=0.0.0.0/0
add area=backbone comment="" disabled=no network=192.168.253.0/24
 instance=default area=backbone type=router id=192.168.100.6 originator=192.168.100.6 sequence-number=0x80000685 age=358 checksum=0x5847 options="E" body=
     flags=
         link-type=Stub id=192.168.171.162 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.5 data=192.168.100.6 metric=10

 instance=default area=backbone type=router id=192.168.100.10 originator=192.168.100.10 sequence-number=0x8000357F age=423 checksum=0x2A97 options="E" body=
     flags=EXTERNAL
         link-type=Stub id=192.168.19.0 data=255.255.255.0 metric=10
         link-type=Transit id=192.168.100.5 data=192.168.100.5 metric=10
         link-type=Transit id=192.168.100.46 data=192.168.100.45 metric=10
         link-type=Stub id=192.168.155.193 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.121.44 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.155.37 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.155.194 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.155.223 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.155.46 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.155.140 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.9 data=192.168.100.10 metric=10
         link-type=Stub id=192.168.155.181 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.209.248 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.155.164 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.100.17 originator=192.168.100.17 sequence-number=0x800005E4 age=435 checksum=0xCE81 options="E" body=
     flags=EXTERNAL
         link-type=Transit id=192.168.100.18 data=192.168.100.17 metric=10
         link-type=Stub id=192.168.250.0 data=255.255.255.0 metric=10
         link-type=Transit id=192.168.100.42 data=192.168.100.41 metric=10
         link-type=Stub id=192.168.160.99 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.160.96 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.100.46 originator=192.168.100.46 sequence-number=0x8000BC15 age=648 checksum=0xA1D4 options="E" body=
     flags=
         link-type=Stub id=192.168.156.44 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.209.246 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.156.254 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.156.34 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.156.203 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.156.252 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.156.242 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.46 data=192.168.100.46 metric=10
         link-type=Stub id=192.168.156.171 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.190 data=192.168.100.189 metric=10

 instance=default area=backbone type=router id=192.168.100.62 originator=192.168.100.62 sequence-number=0x8000001D age=460 checksum=0xECF9 options="E" body=
     flags=
         link-type=Transit id=192.168.100.61 data=192.168.100.62 metric=10
         link-type=Stub id=192.168.158.245 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.100.101 originator=192.168.100.101 sequence-number=0x8000092E age=1296 checksum=0xEC34 options="E" body=
     flags=
         link-type=Stub id=192.168.153.33 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.153.36 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.153.111 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.106 data=192.168.100.105 metric=10
         link-type=Transit id=192.168.100.110 data=192.168.100.109 metric=10
         link-type=Transit id=192.168.100.102 data=192.168.100.101 metric=10

 instance=default area=backbone type=router id=192.168.100.102 originator=192.168.100.102 sequence-number=0x800033A0 age=439 checksum=0xB2EA options="E" body=
     flags=EXTERNAL
         link-type=Transit id=192.168.100.42 data=192.168.100.42 metric=10
         link-type=Stub id=192.168.42.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.152.88 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.140.30 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.139 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.245 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.102 data=192.168.100.102 metric=10
         link-type=Stub id=192.168.152.91 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.79 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.109 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.206 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.172 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.102 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.96 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.246 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.237 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.218 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.244 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.34 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.90 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.209 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.75 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.241 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.121.91 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.200 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.92 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.74 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.141 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.154 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.125 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.211 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.240 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.170 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.57 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.201 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.86 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.152.243 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.100.106 originator=192.168.100.106 sequence-number=0x80004CC6 age=236 checksum=0x3FF0 options="E" body=
     flags=EXTERNAL
         link-type=Transit id=192.168.100.106 data=192.168.100.106 metric=10
         link-type=Transit id=192.168.100.9 data=192.168.100.9 metric=10
         link-type=Stub id=192.168.154.49 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.140.28 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.243 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.20 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.210 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.47 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.164 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.24 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.21.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.154.219 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.252 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.84 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.21 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.177 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.27 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.30 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.61 data=192.168.100.61 metric=10
         link-type=Stub id=192.168.154.23 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.22 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.28 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.154.221 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.100.110 originator=192.168.100.110 sequence-number=0x80000505 age=212 checksum=0x4B82 options="E" body=
     flags=
         link-type=Transit id=192.168.100.110 data=192.168.100.110 metric=10
         link-type=Transit id=192.168.101.18 data=192.168.101.17 metric=10
         link-type=Transit id=192.168.100.122 data=192.168.100.121 metric=10

 instance=default area=backbone type=router id=192.168.100.122 originator=192.168.100.122 sequence-number=0x80000597 age=1181 checksum=0x57FC options="E" body=
     flags=
         link-type=Transit id=192.168.100.158 data=192.168.100.157 metric=10
         link-type=Stub id=192.168.2.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.163.241 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.122 data=192.168.100.122 metric=10
         link-type=Stub id=10.5.51.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.163.243 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.140.34 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.100.125 originator=192.168.100.125 sequence-number=0x80000625 age=67 checksum=0x123B options="E" body=
     flags=EXTERNAL
         link-type=Transit id=192.168.100.126 data=192.168.100.125 metric=10
         link-type=Stub id=192.168.151.225 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.151.248 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.151.232 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.151.244 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.151.242 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.151.237 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.121.253 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.15.0 data=255.255.255.0 metric=10
         link-type=Transit id=192.168.100.18 data=192.168.100.18 metric=10

 instance=default area=backbone type=router id=192.168.100.126 originator=192.168.100.126 sequence-number=0x800005A5 age=1728 checksum=0x518F options="E" body=
     flags=EXTERNAL
         link-type=Stub id=192.168.104.172 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.253.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.140.2 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.100.0 data=255.255.255.252 metric=10
         link-type=Stub id=192.168.252.0 data=255.255.255.0 metric=10
         link-type=Transit id=192.168.100.126 data=192.168.100.126 metric=10
         link-type=Stub id=192.168.104.220 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.202 data=192.168.100.201 metric=10
         link-type=Transit id=192.168.100.154 data=192.168.100.153 metric=10

 instance=default area=backbone type=router id=192.168.100.154 originator=192.168.100.154 sequence-number=0x800005A0 age=175 checksum=0xC8FD options="E" body=
     flags=
         link-type=Transit id=192.168.102.19 data=192.168.102.17 metric=10
         link-type=Transit id=192.168.102.11 data=192.168.102.9 metric=10
         link-type=Transit id=192.168.100.154 data=192.168.100.154 metric=10
         link-type=Stub id=192.168.16.0 data=255.255.255.0 metric=10

 instance=default area=backbone type=router id=192.168.100.158 originator=192.168.100.158 sequence-number=0x800007D5 age=1112 checksum=0x6DDD options="E" body=
     flags=
         link-type=Stub id=192.168.164.219 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.164.218 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.164.220 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.164.78 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.164.29 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.164.129 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.158 data=192.168.100.158 metric=10

 instance=default area=backbone type=router id=192.168.100.190 originator=192.168.100.190 sequence-number=0x800016F5 age=870 checksum=0xF38D options="E" body=
     flags=
         link-type=Stub id=192.168.157.65 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.12.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.157.63 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.121.26 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.140.18 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.190 data=192.168.100.190 metric=10

 instance=default area=backbone type=router id=192.168.100.202 originator=192.168.100.202 sequence-number=0x80000CBC age=951 checksum=0x3ABC options="E" body=
     flags=
         link-type=Stub id=192.168.165.163 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.165.171 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.206 data=192.168.100.205 metric=10
         link-type=Stub id=192.168.165.177 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.202 data=192.168.100.202 metric=10
         link-type=Stub id=10.5.50.0 data=255.255.255.0 metric=10

 instance=default area=backbone type=router id=192.168.100.206 originator=192.168.100.206 sequence-number=0x80001535 age=194 checksum=0x661B options="E" body=
     flags=
         link-type=Stub id=192.168.168.227 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.168.249 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.168.253 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.168.251 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.206 data=192.168.100.206 metric=10
         link-type=Stub id=192.168.1.0 data=255.255.255.0 metric=10

 instance=default area=backbone type=router id=192.168.101.18 originator=192.168.101.18 sequence-number=0x8000072E age=254 checksum=0x16A6 options="E" body=
     flags=
         link-type=Stub id=192.168.23.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.159.212 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.159.234 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.159.240 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.159.231 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.159.236 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.159.217 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.101.18 data=192.168.101.18 metric=10
         link-type=Stub id=192.168.159.216 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.159.233 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.102.10 originator=192.168.102.10 sequence-number=0x80000724 age=1113 checksum=0x3BB3 options="E" body=
     flags=
         link-type=Transit id=192.168.102.11 data=192.168.102.10 metric=10
         link-type=Stub id=192.168.17.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.167.3 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.33 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.251 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.121.245 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.253 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.121.249 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.81 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.252 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.22 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.98 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.2 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.34 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.167.102 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.102.11 originator=192.168.102.11 sequence-number=0x8000063D age=1636 checksum=0x9194 options="E" body=
     flags=
         link-type=Transit id=192.168.102.11 data=192.168.102.11 metric=10
         link-type=Stub id=192.168.169.16 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.169.98 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.169.99 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.169.37 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.169.22 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.0.0 data=255.255.255.0 metric=10

 instance=default area=backbone type=router id=192.168.102.18 originator=192.168.102.18 sequence-number=0x8000000B age=1343 checksum=0xDC6D options="E" body=
     flags=
         link-type=Stub id=192.168.166.253 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.102.19 data=192.168.102.18 metric=10
         link-type=Stub id=192.168.166.249 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.166.246 data=255.255.255.255 metric=10

 instance=default area=backbone type=router id=192.168.102.19 originator=192.168.102.19 sequence-number=0x80000177 age=1228 checksum=0x1E16 options="E" body=
     flags=
         link-type=Stub id=192.168.141.2 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.102.19 data=192.168.102.19 metric=10

 instance=default area=backbone type=network id=192.168.100.5 originator=192.168.100.10 sequence-number=0x8000064A age=197 checksum=0xA314 options="E" body=
     netmask=255.255.255.252
         routerId=192.168.100.10
         routerId=192.168.100.6

 instance=default area=backbone type=network id=192.168.100.9 originator=192.168.100.106 sequence-number=0x80001011 age=551 checksum=0x71B0 options="E" body=
     netmask=255.255.255.248
         routerId=192.168.100.106
         routerId=192.168.100.10

 instance=default area=backbone type=network id=192.168.100.18 originator=192.168.100.125 sequence-number=0x80000509 age=72 checksum=0xC640 options="E" body=
     netmask=255.255.255.240
         routerId=192.168.100.125
         routerId=192.168.100.17

 instance=default area=backbone type=network id=192.168.100.42 originator=192.168.100.102 sequence-number=0x80000507 age=86 checksum=0xC54D options="E" body=
     netmask=255.255.255.252
         routerId=192.168.100.102
         routerId=192.168.100.17

 instance=default area=backbone type=network id=192.168.100.46 originator=192.168.100.46 sequence-number=0x8000274E age=126 checksum=0x65B7 options="E" body=
     netmask=255.255.255.252
         routerId=192.168.100.46
         routerId=192.168.100.10

 instance=default area=backbone type=network id=192.168.100.61 originator=192.168.100.106 sequence-number=0x8000001B age=462 checksum=0x7645 options="E" body=
     netmask=255.255.255.252
         routerId=192.168.100.106
         routerId=192.168.100.62

 instance=default area=backbone type=network id=192.168.100.102 originator=192.168.100.102 sequence-number=0x80000500 age=558 checksum=0x1673 options="E" 
   body=
     netmask=255.255.255.252
         routerId=192.168.100.102
         routerId=192.168.100.101

 instance=default area=backbone type=network id=192.168.100.106 originator=192.168.100.106 sequence-number=0x80000505 age=1476 checksum=0xF384 options="E" 
   body=
     netmask=255.255.255.252
         routerId=192.168.100.106
         routerId=192.168.100.101

 instance=default area=backbone type=network id=192.168.100.110 originator=192.168.100.110 sequence-number=0x80000500 age=247 checksum=0xE58B options="E" 
   body=
     netmask=255.255.255.252
         routerId=192.168.100.110
         routerId=192.168.100.101

 instance=default area=backbone type=network id=192.168.100.122 originator=192.168.100.122 sequence-number=0x80000500 age=283 checksum=0x1C28 options="E" 
   body=
     netmask=255.255.255.252
         routerId=192.168.100.122
         routerId=192.168.100.110

 instance=default area=backbone type=network id=192.168.100.126 originator=192.168.100.126 sequence-number=0x80000504 age=442 checksum=0xCE56 options="E" 
   body=
     netmask=255.255.255.252
         routerId=192.168.100.126
         routerId=192.168.100.125

 instance=default area=backbone type=network id=192.168.100.154 originator=192.168.100.154 sequence-number=0x80000502 age=188 checksum=0x3899 options="E" 
   body=
     netmask=255.255.255.252
         routerId=192.168.100.154
         routerId=192.168.100.126

 instance=default area=external type=as-external id=192.168.87.0 originator=192.168.100.10 sequence-number=0x80000083 age=1397 checksum=0xA2CC options="E" body=
     netmask=255.255.255.0
     forwarding-address=192.168.209.248
     metric=20
     route-tag=0x0
     type2

 instance=default area=external type=as-external id=192.168.100.101 originator=192.168.100.102 sequence-number=0x80000501 age=604 checksum=0x56C7 options="E" 
   body=
     netmask=255.255.255.255
     forwarding-address=192.168.100.102
     metric=20
     route-tag=0x0
     type2

 instance=default area=external type=as-external id=192.168.100.161 originator=192.168.100.125 sequence-number=0x8000050B age=113 checksum=0x709 options="E" 
   body=
     netmask=255.255.255.255
     forwarding-address=192.168.100.23
     metric=20
     route-tag=0x0
     type2

 instance=default area=external type=as-external id=192.168.100.162 originator=192.168.100.125 sequence-number=0x8000050B age=113 checksum=0xFC12 options="E" 
   body=
     netmask=255.255.255.255
     forwarding-address=192.168.100.23
     metric=20
     route-tag=0x0
     type2

 instance=default area=external type=as-external id=192.168.173.0 originator=192.168.100.17 sequence-number=0x80000507 age=115 checksum=0xCEF6 options="E" body=
     netmask=255.255.255.0
     forwarding-address=192.168.100.42
     metric=20
     route-tag=0x0
     type2

 instance=default area=external type=as-external id=192.168.173.0 originator=192.168.100.106 sequence-number=0x8000001C age=511 checksum=0xB493 options="E" 
   body=
     netmask=255.255.255.0
     forwarding-address=192.168.100.62
     metric=20
     route-tag=0x0
     type2

 instance=default area=external type=as-external id=192.168.173.99 originator=192.168.100.106 sequence-number=0x8000001C age=511 checksum=0xD212 options="E" 
   body=
     netmask=255.255.255.255
     forwarding-address=192.168.100.62
     metric=20
     route-tag=0x0
     type2
 
fewi
Forum Guru
Forum Guru
Posts: 7717
Joined: Tue Aug 11, 2009 3:19 am

Re: trying to peer into network using OSPF

Wed Jun 08, 2011 5:13 pm

According to that everything should be peachy. Below is the router LSA for the router with the new network connected to it.
instance=default area=backbone type=router id=192.168.100.126 originator=192.168.100.126 sequence-number=0x800005A5 age=1728 checksum=0x518F options="E" body=
     flags=EXTERNAL
         link-type=Stub id=192.168.104.172 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.253.0 data=255.255.255.0 metric=10
         link-type=Stub id=192.168.140.2 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.100.0 data=255.255.255.252 metric=10
         link-type=Stub id=192.168.252.0 data=255.255.255.0 metric=10
         link-type=Transit id=192.168.100.126 data=192.168.100.126 metric=10
         link-type=Stub id=192.168.104.220 data=255.255.255.255 metric=10
         link-type=Transit id=192.168.100.202 data=192.168.100.201 metric=10
         link-type=Transit id=192.168.100.154 data=192.168.100.153 metric=10
It includes that link in its announcement. All other routers should be knowing about that link, and have a route to it.

Try this on a different router in the same area, and post the results. Also, it does make it much easier to read if you include the command that generated that output. Instead of posting just the output of "/ip route print", also copy the part where you run the command so that it's included in the snippet you post.
/routing ospf lsa print detail where id=192.168.100.126
/ip route print where 192.168.253.0 in dst-address
Does that router LSA show the link for id=192.168.253.0 and data=255.255.255.0? Does the route search bring up anything? All your routers are in the same area, so they should all have the same LSDB. The one you posted here doesn't contain any conflicting LSAs for that subnet.
 
User avatar
shadowskippie
Member Candidate
Member Candidate
Topic Author
Posts: 213
Joined: Tue Dec 21, 2010 6:20 pm

Re: trying to peer into network using OSPF

Wed Jun 08, 2011 5:39 pm

sorry about that, i wasn't really sure what it was you were looking for

I've taken these out of one router over
/routing ospf lsa print detail where id=192.168.100.126

instance=default area=backbone type=router id=192.168.100.126 originator=192.16
     flags=EXTERNAL
         link-type=Stub id=192.168.104.165 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.104.172 data=255.255.255.255 metric=10
         [color=#800000]link-type=Stub id=192.168.253.0 data=255.255.255.0 metric=10[/color]
         link-type=Stub id=192.168.140.2 data=255.255.255.255 metric=10
         link-type=Stub id=192.168.100.0 data=255.255.255.252 metric=10
         link-type=Stub id=192.168.252.0 data=255.255.255.0 metric=10
         link-type=Transit id=192.168.100.126 data=192.168.100.126 metric=10
         link-type=Transit id=192.168.100.202 data=192.168.100.201 metric=10
         link-type=Transit id=192.168.100.154 data=192.168.100.153 metric=10
so it looks like the LSA for 192.168.253.0/24 is there
/ip route print where 192.168.253.0 in dst-address


180 ADo  192.168.253.0/24                   192.168.100.201    110     
and there we have the route

But all i can ping i ether3 on the first router which has 192.168.253.1 as its IP and not the server behind it which has 192.168.253.8 as its ip

the moment i get a chance i need to fire up my virtual network and play around there, test some of the stuff you told me and see if it works there
 
fewi
Forum Guru
Forum Guru
Posts: 7717
Joined: Tue Aug 11, 2009 3:19 am

Re: trying to peer into network using OSPF

Wed Jun 08, 2011 6:17 pm

If you can ping the router's IP on the network then everyone can reach that network. The other routers don't care whether an IP on that network is implemented on a router or a server. The route is for an entire network - every node on the network is treated the same as far as the routing table goes.

The three most likely causes at this point aren't OSPF related at all. OSPF and routing look absolutely fine. In order of likelihood:

1) The server doesn't have the right default gateway, so it doesn't know how to get traffic back to destinations that aren't on the same subnet as itself.
2) The host firewall on the server is misconfigured.
3) The router firewall on the router the network connects to is misconfigured.
 
User avatar
shadowskippie
Member Candidate
Member Candidate
Topic Author
Posts: 213
Joined: Tue Dec 21, 2010 6:20 pm

Re: trying to peer into network using OSPF

Thu Jun 09, 2011 8:32 am

hmmm
great, back to square one
The server is running ubuntu and from what i could see the firewall wasn't even running. as for the default gateway it have it pointed at that networks wan port, 192.168.253.1

i think i need to find someone who can have a look at the system because the more i'm looking at it the more it thinking that i'll never find the problem :(

Edit: just gonna add that the server can ping out onto the network no problem although if i try to putty it won't work.
I'm going to take a look round the server for a firewall but from what i've read on the net about ubuntu firewall it seems to be inactive :?

Who is online

Users browsing this forum: No registered users and 20 guests