Has anyone attempted Route Filtering on the Aruba Switch OS? I am running into an issue described below.
I have a Routing VLAN created, say VLAN 1000. This VLAN is configured with a /30 and is used as a "point to point" to establish OSPF neighbor relationship with another device.
I created a prefix list for all the VLAN's and interfaces such as loopback to advertise by doing a prefix-list like below:
ip prefix-list "OSPFRouteFilter" seq 5 permit 10.1.1.0 255.255.255.0 ge 24 le 24
I then create a route map and use the route map in OSPF by running the below commands:
route-map OSPFRouteFilterList permit seq 5
match ip address prefix-list OSPFRouteFilterMapList
router ospf
redistribute connected route-map OSPFRouteFilterMap
While this works by allowing the User VLAN/Loopbacks to be advertised. I am still seeing the Routing VLAN advertised which I do not want. In Cisco and even the HP Comware switches this is handled by simpling using the network statement to match what subnets I want to advertise.
How do I accomplish this with Aruba Switch OS?