cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
909
Views
0
Helpful
1
Replies

NAT configuration for Cisco 1700 series router

v.alikatte
Level 1
Level 1

Hi,I want configure the router to share the internet using the cisco 1751 router with single public ip address to the internal network.Using NAT inside and NAT outside? if so plz anybody help me, how do I?

thnx in adavnce.

1 Reply 1

gfullage
Cisco Employee
Cisco Employee

You'll need something like the following:

interface Ethernet0

   description Inside interface

   ip address 10.1.1.1 255.255.255.0

   ip nat inside

interface Ethernet1

   description Outside/Internet interface

   ip address 200.200.200.1 255.255.255.0

   ip nat outside

ip nat inside source list 100 interface Ethernet1 overload

access-list 100 permit ip 10.1.1.0 0.0.0.255 any

Obviously your inside and outside IP addresses will be different, so just replace them as you need to in the examples above. This will have all your inside users on the 10.1.1.0 network share the same external IP address when they go out to the Internet.