Remote connection, proxmox

LinaCl

New Member
Feb 23, 2022
4
0
1
34
I am wondering if I connect remotely on Linux, will I be able to work with proxmox? What is the best way to connect to a remote computer?
 
I am not entirely sure what exactely you mean, but typically on Linux you work remotely by using ssh. Proxmox supports it out-of-the-box. This is a quite powerfull tool and can be used in a variety of ways. The simplest would allow you to connect to your proxmox server via a terminal by issuing the command ssh root@<ip/hostname of your sever>. If you want to access the GUI you could do: ssh root@<ip/hostname of your sever> -L 8006:localhost:8006 and then open https://localhost:8006 in a browser of you choice. This forwards the port 8006 on you proxmox server to the local port 8006 using ssh.

Note that you can configure ssh extensively and use ssh keys to add further security to your setup.
 
Last edited: