10-24-2009 08:54 PM - edited 03-11-2019 09:31 AM
We have ASA 5505. Is it possible to Port map two public IP from ADSL connection to Internal network. We already have one IP mapped.
10-25-2009 09:59 AM
Yes it is possible.
10-25-2009 10:56 AM
Would be pleased if you could pass me any reference link to know how to map the IP to Port
10-25-2009 04:28 PM
example:
let us say your public IPs are 10.10.10.1 and 10.10.10.2
Your inside or dmz webserver address is 192.168.1.1 and 192.168.1.2
You can map tcp port 80 between 10.10.10.1 and 192.168.1.1
and tcp 3389 between 10.10.10.2 and 192.168.1.2
static (i,o) tcp 10.10.10.1 80 192.168.1.1 80
static (i,o) tcp 10.10.10.2 3389 192.168.1.2 3389
Allow permission via access-list on the outside interface to allow port 80 to 10.10.10.1 and 3389 to 10.10.10.2
Here is the config. guide for static pat:
http://www.cisco.com/en/US/docs/security/asa/asa80/configuration/guide/cfgnat.html#wp1043281
10-26-2009 01:25 PM
Will this configuration may be applicable to ASA 5505 model. Please confirm
10-26-2009 02:37 PM
Yes kusankar's example can be used on a 5505.
PK
10-30-2009 06:26 AM
Can any one help to let me know how to conifgure the access-list on the below conditions
Allow permission via access-list on the outside interface to allow port 80 to 10.10.10.1 and 3389 to 10.10.10.2
10-30-2009 07:00 AM
access-list acl-out permit tcp any host 10.10.10.1 eq 80
access-list acl-out permit tcp any host 10.10.10.2 eq 3389
access-g access-l acl-out in int outside
provided outside is the name of your outside interface.
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