Posted On March 31, 2019

Enterasys Route Policies

kimconnect 0 comments
blog.KimConnect.com >> Networking >> Enterasys Route Policies
How to Configure A Route Map to Restrict OSPF Routes On Enterasys Chassis Switches
router
config
ip access-list standard ROUTES
permit 0.0.0.0 0.0.0.0
exit
router-map filter OSPF-FILTER permit 10
match ip address ROUTES
exit
router ospf 1
distribute-list route-map OSPF-FILTER in
Note reverse with "no" in front of command


Policy Based Routing (PBR)
Source:
ip access-list extended 101
permit ip 10.10.10.0 (source) 0.0.0.255 any
deny ip any any
show access-list 101
exit
route-map policy pbr10 permit 10
match ip address 101
set next-hop 172.72.200.1
exit
interface vlan 10
ip policy route-map pbr10
ip policy priority first //choose path designated on routing table
ip policy priority only //drop traffic if next-hop is down
ip policy priority last //choose this path last

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Linux: How To Use Dig

Checking Name Server(s) kim@kim-linux:~$ dig @8.8.8.8 microsoft.com ; <<>> DiG 9.16.1-Ubuntu <<>> @8.8.8.8 microsoft.com ;…

Some Useful Windows Commands to Troubleshoot Networking on Windoze

# Check this computer's trust relationship to its domain controllers$domainName="intranet.kimconnect.com"PS C:\Windows\system32> nltest /SC_QUERY:$domainNameFlags: 0Trusted DC…

NIC Teaming in Windows 2012 R2

There are obvious advantages of NIC Teaming from the data throughput and network redundancy perspective.…