cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
553
Views
0
Helpful
2
Replies

Configuring NAT

utawakevou
Level 4
Level 4

We have some of our sites who are interested in using NAT to be configured on some of our routers. For eg the outside IP will be 10.1.85.xxx and the inside ip will be 192.68.0.xx

We are currently employing 1601's and 1700's.

Do I need extra hardware, like two ethernet port on routers etc.

Need your help

2 Replies 2

rwiesmann
Level 4
Level 4

Hi

It always depends on what you exactly want to reach with the nat.

Here is a config guide which will help you on how to configure it.

As it looks you want to translate all addresses from source 10.1.85.xx to

192.168.0.xx.

Here a little sample:

ip nat inside source static network 10.1.85.0 192.168.0.0 /24 no-alias

And then you have to decide which interface will be your inside and outside.

interface serial 0

ip nat outside

!

interface ethernet 0

ip nat inside

Here the link to the config guide:

http://www.cisco.com/univercd/cc/td/doc/product/software/ios121/121cgcr/ip_c/ipcprt1/1cdipadr.htm

Hope that helps

Roger

Thank you. I think I can do that now