06-07-2011 10:25 AM - edited 03-11-2019 01:43 PM
hi guys,
how do you enabled multiple port mapping on asa 5505? i want to use 1 static ip address for rdp connection for 15 users, and the port will start from 3390 to 3340.
how can i accomplish this?
thanks...
Solved! Go to Solution.
06-07-2011 10:32 AM
Hi,
you can accomplish it by the following:
static (inside,outside) tcp 1.1.1.1 3389 10.1.1.1 3389
static (inside,outside) tcp 1.1.1.1 3390 10.1.1.2 3390
access-list outside_access_in permit tcp any host 1.1.1.1 range 3389 3340
access-list outside_access_in in interface outside
also refer the below doc:
Hope this helps.
Thanks,
Varun
06-07-2011 10:43 AM
For version 8.3 and later, see this config example:
06-07-2011 10:32 AM
Hi,
you can accomplish it by the following:
static (inside,outside) tcp 1.1.1.1 3389 10.1.1.1 3389
static (inside,outside) tcp 1.1.1.1 3390 10.1.1.2 3390
access-list outside_access_in permit tcp any host 1.1.1.1 range 3389 3340
access-list outside_access_in in interface outside
also refer the below doc:
Hope this helps.
Thanks,
Varun
06-09-2011 07:37 AM
thanks for the reply. on the one to one mapping, tcp interface command has to be used instead of the ip command, and specify the original port.
static (inside,outside) tcp interface 3390 10.1.1.1 3389 netmask 255.255.255.255
06-09-2011 10:03 AM
Hi,
Yes the command is correct.
Thanks,
Varun
06-07-2011 10:43 AM
For version 8.3 and later, see this config example:
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