Table of Contents

Proxmox - Troubleshooting - Unable to SSH into LXC Container

Install SSH Server

apt update
apt install openssh-server

Start SSH Service

systemctl start sshd.service

Enable Auto Start

systemctl enable sshd.service

Allow Root SSH Access (Optional)

Modify /etc/ssh/sshd_config:

/etc/ssh/sshd_config
...
PermitRootLogin without-password to PermitRootLogin yes
...

Restart SSH Service:

service ssh restart