Walter Roberson wrote:
> In article <edmic6$int$>, mak <> wrote:
>> Walter Roberson wrote:
>>> In article <edm1bh$cqm$>, mak <> wrote:
>
>>>> do I need a nonat statement in both directions?
>>>> access-list no-nat permit ip 10.10.15.0 5 255.255.255.0 192.168.1.0 255.255.255.0
>>>> access-list no-nat permit ip 192.168.1.0 255.255.255.0 10.10.15.0 255.255.255.0
>
>>> No, all you need is
>
>>> access-list no-nat permit ip 192.168.1.0 255.255.255.0 10.10.15.0 255.255.255.0
>>> nat (inside) 0 access-list no-nat
>
>> ok, but why don't I need it?
>> has it to do with interface security levels?
>
> The reversal is automatic: when you apply the no-nat ACL against the
> inside interface, it adds a table entry with that source (192.168.1.0/24)
> to the inside interface, and it adds table entries with that
> destination (10.10.15.0/24) to each of the lower security interfaces
> (or is it to all the other interfaces? I'd have to think about that.)
that's what I suspected.
weird, since traffic is coming the other way and access-lists always apply to incoming traffic
i guess no-nat is different.
....anyway
thanks again for your excellent explanation,
m
|