01-31-2003 12:20 PM - edited 03-02-2019 04:43 AM
I am looking for a config example of NAT same source, out two different interfaces.
E0 - 10.10.1.x
E1 - 192.168.1.x
E2 - 2.4.6.x
Need to NAT traffic from source E0 out both interfaces using two pools.
Solved! Go to Solution.
01-31-2003 01:14 PM
Hope this helps!
int e0
ip nat inside
int e1
ip nat outside
int e2
ip nat outside
access-list 101 permit ip 10.10.1.0 0.0.0.255 192.168.1.0 0.0.0.255
access-list 102 permit ip 10.10.1.0 0.0.0.255 2.4.6.0 0.0.0.255
ip nat pool first
ip nat pool second
ip nat inside source list 101 pool first
ip nat inside source list 102 pool second
ip nat inside source
01-31-2003 01:14 PM
Hope this helps!
int e0
ip nat inside
int e1
ip nat outside
int e2
ip nat outside
access-list 101 permit ip 10.10.1.0 0.0.0.255 192.168.1.0 0.0.0.255
access-list 102 permit ip 10.10.1.0 0.0.0.255 2.4.6.0 0.0.0.255
ip nat pool first
ip nat pool second
ip nat inside source list 101 pool first
ip nat inside source list 102 pool second
ip nat inside source
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