sshd の設定(Fedora 18) | 将棋プログラム「Sunfish」

将棋プログラム「Sunfish」

主に将棋プログラム「Sunfish」の開発について書いています。


世界コンピュータ将棋選手権用に Fedora 18 入れた際の sshd の設定メモ

はじめに
openssh
openssh-client
openssh-server
はインストール済み
なぜか /etc/init.d/sshd 無い。

設定

# cd /etc/ssh/
# diff sshd_config sshd_config.org
23c23
< Protocol 2
---
> #Protocol 2
45c45
< PermitRootLogin no
---
> #PermitRootLogin yes
74c74
< PermitEmptyPasswords no
---
> #PermitEmptyPasswords no


起動スクリプト
OpenSSHのインストールと設定を参考に作成

キー作成

/usr/bin/ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
/usr/bin/ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key


起動

/etc/init.d/sshd start