- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsI have an AT&T Business DSL account, I have the AT&T modem just doing bridging the Cisco ASA 5505 is doing the PPPoE authenication. We have that working with DHCP so I can hit the outside world. We have 5 static IP addresses and we need to pass one off to one of our internal boxes doing some kind of NAT'ing not sure why i can't assign static IP (example 146.221.14.235) and pass all traffic that comes in over the OUTSIDE interface to (example 10.10.25.4) IP address.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: Cyclops3590Posted on 2009-08-13 at 06:43:21ID: 25088095
you need effectively three items to do NAT/PAT and allow traffic
If you wish for do a NAT (one-to-one), it is like this:
static (inside,outside) 146.221.14.235 192.168.1.100 <-- Where 192.168.1.100 is the inside host
if you want to do a PAT (one-to-many; port forward only), then:
static (inside,outside) tcp 146.221.14.235 80 192.168.1.100 80 <-- Where 192.168.1.100 is the inside host and port 80/tcp is what you want to forward
then you need an acl to allow the traffic, i will assume you want to allow port 80
access-list outside-in permit tcp any host 146.221.14.235 eq http
then apply the acl to the outside interface
access-group outside-in in interface outside
finally since you made a modification to the translation table with the static entry you should run 'clear xlate' to refresh the translation table. you should now see the traffic being forwarded to your server.