I'm trying to redirect my external interface port 80 to some other fixed outside host - I want it workink like web proxy - but to only on fixed location. I was trying conf like this:
interface Loopback0 ip address 10.0.1.1 255.255.255.252 ip nat inside
interface Dialer0 ip adress B.B.B.B ip nat outside ip policy route-map Nat-loop
ip nat inside source list 100 interface Dialer0 overload ip nat inside source static tcp C.C.C.C 80 interface Dialer0 80
ip access-list extended loop-acl permit tcp any host C.C.C.C eq www deny tcp any any
access-list 100 permit ip any any
route-map Nat-loop permit 10 match ip address loop-acl set interface Loopback0
but not luck..
ACL 100 gets no match :(
in debug I get: *Mar 9 11:40:27.462: IP: s=A.A.A.A (Loopback0), d=C.C.C.C (Dialer0), g=C.C.C.C, len 48, forward
so destination nat works but source nat not.. please help!