我正在 Ubuntu 上设置 ssh。
我不小心将 的内容复制到了文件sshd_config
中ssh_config
!有地方可以找到原始内容吗?幸好我没有动ssh_config
。我只是设置了sshd_config
!
答案1
您可以从 OpenSSH 客户端包中获取该文件:
apt-get download openssh-client
dpkg-deb --fsys-tarfile openssh-client_*.deb | sudo tar -xC / ./etc/ssh/ssh_config
这会ssh_config
将该包中的 直接提取到其目标位置/etc/ssh/
。