/etc/ssh/ssh_configの編集

  1. 以下の例での「全部拒否」にしても、sshで入ることは可能。
  2. 以下のようにするとなんでもOK
    Host *
       ForwardAgent yes
       ForwardX11 yes
       RhostsAuthentication yes
       RhostsRSAAuthentication yes
       RSAAuthentication yes
       PasswordAuthentication yes
       FallBackToRsh yes
       UseRsh no
       BatchMode no
       CheckHostIP yes
       StrictHostKeyChecking no
       IdentityFile ~/.ssh/identity
       Port 22
       Cipher blowfish
       EscapeChar ~
    
    と書く。
  3. 全部拒否の場合は
    Host *
           ForwardAgent no
           ForwardX11 no
           FallBackToRsh no
    

インストール実行者:半田利弘