I typically do not scope the static so tightly, that is statically define everything to come through:
static (inside,outside)tcp 1.1.1.114 10.0.0.233 netmask 255.255.255.255
The access-list statement then controls that only 3389 gets through. RDP has a behavior where not all of its traffic is on 3389; but it needs that as a basis port to work from.
Main Topics
Browse All Topics





by: JFrederick29Posted on 2009-08-07 at 10:09:47ID: 25044903
I've seen issues when using the IP of the outside interface in the static statement versus using the "interface" keyword.
Try this instead:
no static (inside,outside) tcp 1.1.1.114 3389 10.0.0.233 3389 netmask 255.255.255.255
static (inside,outside) tcp interface 3389 10.0.0.233 3389 netmask 255.255.255.255