Hello omoplatata,
Configuration looks OK, it should work. Check if your static route is in routing table, if routing table contain some specific route for 10.0.0.1/32, PBR traffic will be routed based on rules of routing table.
Also I would change this static route:
ip route 10.0.0.1 255.255.255.255 FastEthernet 0/0
to this:
ip route 10.0.0.1 255.255.255.255 10.1.0.2
You can have ARP issues with previous format, check ->
http://blog.ioshints.info/2009/10/my-stupid-moments-interface-default.html
http://blog.ioshints.info/2009/10/follow-up-interface-default-route.html
To check outbound traffic, you can configure ACL:
From 10.0.0.1 device ping some IP, f.e. 8.8.8.8
On router add this ACL:
ip access-list extended TEST
permit icmp host 10.0.0.1 host 8.8.8.8
permit ip any any
interface FastEthernet0/0
ip access-group TEST out
But if you have access to 10.0.0.1 device, you should be able to see looped traffic there.
Best Regards
Please rate all helpful posts and close solved questions
Best Regards
Please rate all helpful posts and close solved questions