web-dev-qa-db-ja.com

FreeBSD Sudorootおよびssh-agent

私はrootアカウントを介してFreeBSD11.3ボックスからgitサーバーにアクセスしようとしています。 gitサーバーは、SSH公開鍵認証を介したアクセスのみを許可するように保護されています。

FreeBSDボックスにログインするときは、ユーザーとしてログインします。次に、須藤がルートに移動します。 gitサーバーに接続しようとすると、パスワードの入力を求められます。 Sudoではなく、ユーザーのままでgitサーバーに接続しようとすると、SSHpubkey認証は魅力のように機能します。これがssh-vgitserverの出力です

OpenSSH_7.5p1, OpenSSL 1.0.2s-freebsd  28 May 2019
debug1: Reading configuration data /root/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to gitserver.xxx.tld [192.168.x.y] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: Fssh_key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa type -1
debug1: Fssh_key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: Fssh_key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa type -1
debug1: Fssh_key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: Fssh_key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: Fssh_key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: Fssh_key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519 type -1
debug1: Fssh_key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.5 FreeBSD-20170903
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2p2 Ubuntu-4ubuntu2.8
debug1: match: OpenSSH_7.2p2 Ubuntu-4ubuntu2.8 pat OpenSSH* compat 0x04000000
debug1: Authenticating to gitserver.xxx.tld:22 as '<gituser>'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: [email protected]
debug1: kex: Host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none
debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server Host key: ecdsa-sha2-nistp256 SHA256:<here comes a long key expression>
DNS lookup error: data does not exist
debug1: Host 'gitserver.xxx.tld' is known and matches the ECDSA Host key.
debug1: Found key in /root/.ssh/known_hosts:1
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_EXT_INFO received
debug1: Fssh_kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512>
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/id_rsa
debug1: Trying private key: /root/.ssh/id_dsa
debug1: Trying private key: /root/.ssh/id_ecdsa
debug1: Trying private key: /root/.ssh/id_ed25519
debug1: Next authentication method: keyboard-interactive
Password:

Ssh-agentがリモートホストに私のキーを提示していないようです...

それを修正する方法はありますか? rootユーザーが使用することを許可されていないキー暗号を適切に使用しますか(単なるアイデア)?

よろしくオラフ

2
okoester

Sudoは、デフォルトでほとんどすべての環境変数をクリア(またはデフォルトの既知の安全な値にリセット)して、Sudoで取得した特権を悪用するために使用できないようにします(たとえば、PATHまたはLD_LIBRARY_PATHを設定することによって)。

これは、env_reset/etc/sudoersオプションをオフにすることで無効にできます([〜#〜] very [〜#〜]強く非推奨)またはSudoは、他の環境変数を保持するように構成できます。たとえば、/etc/sudoers

env_keep += "SSH_AGENT_PID SSH_AUTH_SOCK"

詳細については、man sudoersおよびman Sudoを参照してください。


または、このルートアカウントが他のユーザーと共有されていない場合(たとえば、自分のパーソナルマシンの場合)、rootのキーペアを生成してから、rootの公開キーをgitサーバーのユーザーアカウントに追加できます。


PS:sshエージェントにenv_keepを使用する必要はありませんでしたが、gpartedなどのツールをSudo経由で実行する場合はenv_keep += "DISPLAY"を使用しました。 ..リモートマシンにssh -X-してgpartedを実行するときにも使用しました。

2
cas

ローカルマシンでrootの場合、デフォルトでは、sshrootユーザーとroot公開鍵を使用してリモートにログインしようとします機械。

user@hostname構文を使用してリモートマシンへのログインに使用するユーザーを指定し、-iオプションを使用して使用するキーを指定する必要があります。

例えば:

ssh -i ~user/.ssh/id_rsa [email protected]

詳細については、 ssh(1) を参照してください。

0
Richard Smith