Jun 21

I have seen this issue many times when clients complain that they cannot login to VPS using RDP. Most of the time its because they turn Windows Firewall On but do not configure it so it just denies access to everything. Following commands can be executed from the command prompt of Node to turn Windows Firewall Off inside any VPS and set the Firewall services to not start automatically.

vzctl exec VEID net stop ipnat
vzctl exec VEID net stop policyagent
vzctl exec VEID sc config policyagent start= demand
vzctl exec VEID sc config ipnat start= demand

(NOTE: Replace VEID with actual VPS IP that can be checked by “vzlist -a” command)

Leave a Reply

You must be logged in to post a comment.