Hello!
I've got an 1100 on which I want to forward a range of ports from outside to inside. Previously I used:
ip nat pool XYZ-IN 192.168.1.1 192.168.1.1 netmask 255.255.255.0 type rotary
ip nat inside destination list XYZ-IN pool XYZ-IN
ip access-list extended XYZ-IN
permit tcp any any range 10000 20000
This works fine on 880 but not on the 1100, If I use a route-map instead, like this:
ip nat inside source static 192.168.1.1 x.x.x.x route-map XYZ-NAT
route-map XYZ-NAT permit 10
match ip address XYZ-NAT
...
It works fine. Why doesn't the rotary method work on 16.08.01 Fuji?
Thank you!