How do i open the RDP port in Linux?
Prolog
I have a MacBook and i want to connect to a remote Windows machine, which is connected to a Linux Server.
When i’m at my locally there in the network, i use the http://www.microsoft.com/mac/remote-desktop-client to connect to the windows machine.
Now i want to do the same from home. The Windows machine is not connected to the internet.
Question
The magic word is ssh Tunnel. So far so good. But i’m not quiet able to manage it.
I think the problem is with the port on the linux machine.
How do i open the RDP port on the Server ? ( given the permissions )
From your Mac, you will need to open an SSH tunnel. This assumes that you have SSH access to the Linux server at work and a valid user account on that Linux server.
In a Terminal.app window on your Mac, something like:
sudo ssh -L 3389:windows_internal_IP:3389 username@linux_external_IP
Where windows_internal_IP is the internal IP that you use to access the Windows system at work and linux_external_IP is the internet-facing IP address of the Linux server. username is your user name on the Linux system.
If that connection is successful, you’ll be able open your Mac’s Remote Desktop client and connect to 127.0.0.1.
Check more discussion of this question.
Related posts:
Leave a comment
Recent Posts
- SCP transfer only modified files
- How can I automate clearing and resetting a Linux user’s home directory to a default?
- Cron expression that runs every 5 minutes from 1:30 am – 6:00 am [duplicate]
- Understanding redundant power supplies
- Is there a way for administrators to disable users from installing Firefox extensions?





