06-19-2020 09:33 AM
In my lab NAT Overload is not working when applied to the interface but it does work when I apply a NAT IP Pool. What configuration am I missing here?
Solved! Go to Solution.
06-19-2020
10:03 AM
- last edited on
06-19-2023
12:22 AM
by
Translator
I don't know if anyone will ever see this but I solved it. I pulled that command directly from the book and the book was wrong. The correct command IS
#ip nat inside source list ACL-NAT-CAPABLE interface GigabitEthernet0/0 overload
. I did not have
inside
in the original command.
06-19-2020 09:34 AM
06-19-2020
10:03 AM
- last edited on
06-19-2023
12:22 AM
by
Translator
I don't know if anyone will ever see this but I solved it. I pulled that command directly from the book and the book was wrong. The correct command IS
#ip nat inside source list ACL-NAT-CAPABLE interface GigabitEthernet0/0 overload
. I did not have
inside
in the original command.
06-15-2023 10:15 PM
Thanks, Just helped me complete a school project!
06-19-2020
10:56 AM
- last edited on
06-19-2023
01:40 AM
by
Translator
Hello,
on a side note, the original command you used (without the
inside
keyword) would actually work if you would configure your interfaces with
ip nat enable
instead of with
ip nat inside
and
ip nat outside
This is what is called the NAT Virtual Interface feature:
06-19-2020
01:46 PM
- last edited on
06-19-2023
01:53 AM
by
Translator
Hello
Nat can be used either with
domain (ip inside/outside)
or
domain-less (ip nat enable - NVI )
The latter is mostly definitive to vrf nat which performs a routing lookup before and after translation which domain nat doesn't with its nat order of preference
Looking at your original configuration is you specified domain nat on the physical interface but your nat statement was in the domianless nat format
example:
int x/x
ip nat inside/outside
ip nat source list ...etc
but it should have been:
ip nat inside source list
06-20-2020
06:43 AM
- last edited on
06-19-2023
12:26 AM
by
Translator
It is recommended to use
Inside
command in the configuration.
Good that you found out.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide