I need to make sure the following config is correct, for a incoming PPTP connection, through a ASA 5510.
here is what I have:
access-list OutIn permit gre <object-group> <object-name> host <public IP address>
access-list OutIn permit tcp <object-group> <object-name> host <public IP address> 1723
static (inside,outside) <public IP address> <internal IP of auth server> netmask 255.255.255.255 0 0
access-group OutIn in interface outside
Now, I had seen this document from cisco:
http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a0080094a5a.shtml#pptpwith
What confused me is this line:
static (inside,outside) 209.165.201.5 10.48.66.106 netmask 255.255.255.255 0 0
The two '0' at the end. I am not sure what they are. I assume they are needed?
At any point, do I need to specify IP 47? Or should the above take care of it?
Thanks.