我新增了從 servera 到 serverb 的 ssh 金鑰
[production5@servera ~]$ ssh-copy-id production5@serverb
我將 servera 添加到了 serverb 中的受阻防火牆區域。
firewall-cmd --add-source=172.25.250.10/32 \
--zone=block --permanent
當我從 servera ssh 到 serverb 時,我可以連線。
ssh -o pubkeyauthentication=yes \
-o passwordauthentication=no production5@serverb
我不是剛剛屏蔽了servera嗎,servera如何透過ssh連線到serverb?