sshd_config などの構成ファイルを指定すると、次のようになります。
[...]
IgnoreRhosts yes
RhostsRSAAuthentication no
HostbasedAuthentication no
PermitEmptyPasswords no
ChallengeResponseAuthentication no
PasswordAuthentication yes
X11Forwarding yes
X11DisplayOffset 10
[...]
構成設定を設定できるコマンドを書きたいと思います。たとえば、 に設定PasswordAuthentication
したいno
。エントリが既に存在する場合は置き換え、存在しない場合はファイルの最後に追加します。
どうすればシェルからそれを行うことができますか?