F5F Stay Refreshed Power Users Networks Use a VPN or SSH tunnel to access your Linux laptop remotely.

Use a VPN or SSH tunnel to access your Linux laptop remotely.

Use a VPN or SSH tunnel to access your Linux laptop remotely.

B
bougielily
Junior Member
19
05-26-2023, 12:45 AM
#1
You can connect to your laptop remotely using Manjaro’s networking features. Since you’re on the same network, ensure your router supports VPN or remote access. NordVPN offers a dedicated IP service that creates a secure tunnel, allowing you to access the same network tools from different locations. This should work well with your setup.
B
bougielily
05-26-2023, 12:45 AM #1

You can connect to your laptop remotely using Manjaro’s networking features. Since you’re on the same network, ensure your router supports VPN or remote access. NordVPN offers a dedicated IP service that creates a secure tunnel, allowing you to access the same network tools from different locations. This should work well with your setup.

C
Curiousbacon
Member
108
05-28-2023, 09:53 AM
#2
I would set up an SSH server on the laptop and redirect traffic to another port for added security. You could forward a different internet port to port 22 on the router. This method allows X Windows over SSH connections. To access the server, run a command like ssh -X -p [port] with your credentials. Once connected, you'll have a local shell on your laptop, and any GUI applications will appear as if they were running locally.
C
Curiousbacon
05-28-2023, 09:53 AM #2

I would set up an SSH server on the laptop and redirect traffic to another port for added security. You could forward a different internet port to port 22 on the router. This method allows X Windows over SSH connections. To access the server, run a command like ssh -X -p [port] with your credentials. Once connected, you'll have a local shell on your laptop, and any GUI applications will appear as if they were running locally.

M
MollyM00
Member
197
05-30-2023, 02:10 AM
#3
I rely on SSH to reach various Linux servers for professional tasks and my home lab machine. The process is straightforward: install openSSH on the target system, configure port forwarding through your router, and then access it via terminal or an SSH client. The 'S' in SSH indicates security, ensuring data remains encrypted. If your router supports direct VPN setup, consider using it to keep traffic private instead of exposing your laptop to the internet. Always maintain strong passwords across your network and devices to prevent unauthorized access. You can also turn off password-based remote login on your laptop and use an SSH key pair for added protection.
M
MollyM00
05-30-2023, 02:10 AM #3

I rely on SSH to reach various Linux servers for professional tasks and my home lab machine. The process is straightforward: install openSSH on the target system, configure port forwarding through your router, and then access it via terminal or an SSH client. The 'S' in SSH indicates security, ensuring data remains encrypted. If your router supports direct VPN setup, consider using it to keep traffic private instead of exposing your laptop to the internet. Always maintain strong passwords across your network and devices to prevent unauthorized access. You can also turn off password-based remote login on your laptop and use an SSH key pair for added protection.