Moving from a SonicWall Firewall to an ASA 5505 (8.2) only have a single WAN IP have exchange server and SFTP server and need to map through with static and access list.
Static to the exchange is easy as it 2 lines in both access-list and static commands.
static (INSIDE,OUTSIDE) tcp <external ip> 80 192.168.100.1 80 netmask 255.255.255.255
static (INSIDE,OUTSIDE) tcp <external IP> 443 192.168.100.1 443 netmask 255.255.255.255
The sftp is different as it doesn't use the std ports, 990 for the intial connection then 60000 61000 for data
single command for the initial connection
static (INSIDE,OUTSIDE) tcp <external ip> 990 192.168.100.2 990 netmask 255.255.255.255
but how can i enter the static for the data without having to do 1000 individual lines