Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with NAT

Status
Not open for further replies.

Parcival21

Technical User
Joined
Aug 27, 2002
Messages
186
Location
DE
Well this is my first cisco router and at the moment I can't figure out what I'm doing wrong.
Following the instructions On the cisco page:
I set up NAS like this

access-list access-list-number permit source [source-wildcard]
Define a standard access list that permits nonregistered IP addresses of hosts.

Step 2 ip nat inside source list access-list-number interface dialer 0 overload

Set up translation of addresses identified by the access list defined in Step 1.

Step 3 interface ethernet 0
Enter configuration mode for the Ethernet 0 interface.

Step 4 ip nat inside
Establish the Ethernet 0 interface as the inside interface for NAT.

Step 5 no shutdown
Enable the Ethernet 0 interface and the configuration changes you just made to it.

Step 6 exit
Exit configuration mode for the Ethernet 0 interface.

Step 7 interface dialer 0
Enter configuration mode for the Dialer 0 interface.

Step 8 ip address ip-address subnet-mask
Assign an IP address and subnet mask to the Dialer 0 interface.

Step 9 ip nat outside
Establish the Dialer 0 interface as the outside interface for NAT.

Step 10 end
Exit router configuration mode.

The page tells me that I should get something similar to this when I type
show ip nat translation
router#show ip nat translation
Pro Inside global Inside local Outside local Outside global
tcp 192.168.1.1:2267 10.10.10.2:2267 63.148.48.18:80 192.168.2.1:80
utcp 192.168.1.1:2262 10.10.10.2:2262 207.69.188.186:53 192.168.2.1:53
udp 192.175.89.109:2266 10.10.10.2:2266 207.69.188.186:53 192.168.2.1:53
router#
All that I get when I do the same is two blank lines
Why is there no output. Any idea?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top