- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Labels:
-
LAN Switching
-
Other Routers
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2020 09:34 AM
My lab layout.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2023 10:15 PM
Thanks, Just helped me complete a school project!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.
Kind Regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
