servera에서 serverb로 SSH 키를 추가했습니다.
[production5@servera ~]$ ssh-copy-id production5@serverb
그리고 나는 serverb의 차단된 방화벽 영역에 servera를 추가했습니다.
firewall-cmd --add-source=172.25.250.10/32 \
--zone=block --permanent
내가 servera에서 serverb로 ssh를 하면 연결할 수 있어요.
ssh -o pubkeyauthentication=yes \
-o passwordauthentication=no production5@serverb
방금 servera를 차단하지 않았나요? 어떻게 servera가 serverb에 SSH로 접속할 수 있나요?