Browse Source

:memo: Add steps to ssh on a proxmox container

Steps added while experimenting Proxmox VE 7 on QEMU.

Container can't reach Internet though ...
DricomDragon 2 years ago
parent
commit
58fc721f37
1 changed files with 32 additions and 0 deletions
  1. 32 0
      Guides/proxmox.md

+ 32 - 0
Guides/proxmox.md

@@ -49,3 +49,35 @@ rm /etc/apt/sources.list.d/pve-enterprise.list
 Connect to web UI.
 
 Enable 2FA.
+
+## Guests
+
+### Containers
+
+#### Template
+
+First download a template : dc > node > local > CT Templates > Templates
+
+Choose one distribution that you know, like *Ubuntu 22.04*.
+
+#### Create a container
+
+At the top right GUI : *Create CT*. Fill in all the forms.
+
+#### Connect to SSH
+
+From GUI, open a terminal on your container. Allow root login with password if needed (don't do that in prod) by modifying `/etc/ssh/sshd_config` on your container. Then start sshd with `systemctl start ssh`. Get the IP with `ip a`.
+
+Ssh to your node first. Try to ping your container with the address you just got. Then ssh to your container from your node shell.
+
+For example :
+
+```sh
+me@my-laptop ssh root@192.168.122.34
+root@node1 ssh root@fe80::c7f:7dff:fec6:d09e%vmbr0
+root@ct1 echo success
+```
+
+#### Trouble shoot container Internet connexion
+
+Good question. Still does not work on my container. :'(