要配置SSH登錄,您需要完成以下步驟:
sudo apt-get install openssh-server
/etc/ssh/sshd_config
:sudo nano /etc/ssh/sshd_config
如果您想允許root用戶通過SSH登錄,請找到并修改以下行:
#PermitRootLogin prohibit-password
修改為:
PermitRootLogin yes
如果您想更改SSH服務器監聽的端口,請找到并修改以下行:
#Port 22
修改為您想要使用的端口號,如:
Port 2222
sudo systemctl restart sshd
sudo ufw allow ssh
如果使用的是iptables防火墻,請根據您的設置添加適當的規則。
現在,您應該能夠使用SSH客戶端從其他計算機登錄到您的Debian系統了。