ssh 密钥和防火墙阻止区域

ssh 密钥和防火墙阻止区域

我将 ssh 密钥从服务器 a 添加到服务器 b

[production5@servera ~]$ ssh-copy-id production5@serverb

我将 servera 添加到 serverb 中被阻止的防火墙区域。

firewall-cmd --add-source=172.25.250.10/32 \
--zone=block --permanent

当我从服务器 a ssh 到服务器 b 时,我可以连接。

ssh -o pubkeyauthentication=yes \
-o passwordauthentication=no production5@serverb

我不是刚刚阻止了服务器 a 吗?服务器 a 怎样才能 ssh 到服务器 b?

相关内容