サーバーのrootユーザーにパブリックSSHキーを設定するにはどうすればよいですか?


11

Slicehost Documentに従ってサーバーをセットアップしようとしています。SSHセクションに到達しました。記述どおりに作成しましたが、rootからログアウトすると、root @ IP_ADDRESS -p 30000に再びアクセスできません。しかし、user @ IP_ADDRESS -p 30000にアクセスできます。

では、問題は、rootユーザーの公開SSHキーを設定する方法ですか?


この質問は、StackOverflowではなく、ServerFaultにある必要があります。
ヘニング

回答:


7

どういう意味かわかりません。あなたはあなたの公開鍵でルートとしてログインできないことを意味しますか?その場合は、/ root / .ssh / authorized_keysを確認してください

/ etc / ssh / sshd_configも見てください。

PermitRootLogin yes

私はそれを早く見つけました!しかし、そうです、sshd_configにいくつかの問題がありました。感謝しますが、PremitRootLoginだけではうまくいきません

3

ログを確認してください。sshdは通常、役立つメッセージを表示します。プラットフォームに応じて、/var/log/auth.logor /var/log/messagesまたは/var/log/syslog(またはその他の何か)を試してください。

私には権限の問題のように聞こえますが。これらのコマンドを(ルートとして)試してください: chmod 700 ~root ~root/.ssh && chmod 600 ~root/.ssh/authorized_keys


1

この/ etc / ssh / sshd_configは正常に動作します!

# Package generated configuration file
# See the sshd(8) manpage for details

# What ports, IPs and protocols we listen for
Port 30000
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile     %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

UsePAM yes

0

警告:マシンに直接物理的にアクセスするか、すでに機能しているsshログイン(パスワード認証またはスーパーユーザーキーペア経由)が必要です。

これを私のDebianボックス(私のSSHホスト)で動作させるために、新しいキーペアを生成する必要があり(Windows 10でPuttyを使用しました;私のSSHクライアント)、 'sshd_configを編集してすでに説明したように以下を確認します':

$ sudo nano /etc/ssh/sshd_config

そして、これらの行を配置するか、必要に応じてコメントを外して、保存/書き込みを行います。

# Authentication:
PermitRootLogin yes

次に、rootアカウントにアクセスする必要があったので、次のコマンドを発行します。

$ sudo su

...次に、sshに必要なフォルダとauthorized_keysにファイルを作成します。

# cd /root
# mkdir .ssh
# cd .ssh
# nano authorized_keys

次に、関連する公開鍵をここに置き、パテゲンの上部近くから自分の物を貼り付けて、保存/書き込みします。

次に、sshdデーモンをまだrootとして再起動します。

# systemctl restart sshd
# exit
# exit

次に、Putty内のSSH Authに関連する.ppkファイルを追加した後、それは魅力のように機能しました!

これの鍵は、すべてのユーザー(rootと他のユーザー)がすべて/ etc / ssh / sshd_configで同じ構成を共有することですが、それらはすべて同じ「authorized_keys」ファイルを共有しないため、ルート固有のファイルを作成する必要がありました。これは動作します。

/home/yournameuser/.ssh/authorized_keysファイルにrootアカウント用に生成された公開鍵を単純に追加することはできません-システムはそこにrootアクセスを探していないようです。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.