在 CentOS 系统中,要允许远程连接,你需要确保以下几点:
sudo yum install openssh-server
sudo systemctl start sshd
sudo systemctl enable sshd
sudo firewall-cmd --permanent --add-service=ssh
sudo firewall-cmd --reload
sudo hostnamectl set-hostname your_hostname
将 “your_hostname” 替换为你想要的主机名。
完成以上步骤后,你应该可以从远程计算机连接到 CentOS 系统。如果仍然无法连接,请检查网络设置、防火墙规则以及远程客户端的配置。