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

HP Procurve Configure Time and Default Gateway

#configure gateway and NTPip default-gateway 10.10.10.1timesync sntpsntp unicastsntp 30# These are ntp.org servers for North…

PowerShell: Check IP Conflicts of Computers in Active Directory

We have ran into issues where a group of virtual machines living on a DHCP…

PFSense

This open source project is free to use and distribute, which lowers licensing costs as…