問題ID:29906
- フォーラムは新サイトへ移行しました。
- このフォーラムではゲスト投稿が禁止されています
問題ID:29906
msg# 1
matsumoto_y
投稿数: 2
問題の解説で、sshコマンド構文が
・ssh {-l ユーザ名} [-v SSHバージョン] [-p 接続先ポート番号] {宛先IPアドレス|ホスト名}
とされています。
しかし解答や実行例では
・ssh -v 2 -l sshuser 192.168.12.2
・ssh -v 1 -l sshuser 192.168.12.2
と、SSHバージョンがユーザ名より先になっています。
どちらかが間違っているのであれば修正をお願いします。
・ssh {-l ユーザ名} [-v SSHバージョン] [-p 接続先ポート番号] {宛先IPアドレス|ホスト名}
とされています。
しかし解答や実行例では
・ssh -v 2 -l sshuser 192.168.12.2
・ssh -v 1 -l sshuser 192.168.12.2
と、SSHバージョンがユーザ名より先になっています。
どちらかが間違っているのであれば修正をお願いします。
Re: 問題ID:29906
msg# 1.1
mamorukun
投稿数: 15
順序関係なしにどちらでもいけます。
参考にそれぞれのパターンを載せておきます。
※「?」の下の行の表示は入力できるコマンドの候補と説明です
★構文のパターン
Router#ssh ?
-c Select encryption algorithm
-l Log in using this user name
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
-v Specify SSH Protocol Version
WORD IP address or hostname of a remote system
Router#ssh -l ?
WORD Login name
Router#ssh -l ccna ?
-c Select encryption algorithm
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
-v Specify SSH Protocol Version ←ユーザ名を指定した後でも指定可能★
WORD IP address or hostname of a remote system
Router#ssh -l ccna -v ?
1 Protocol Version 1
2 Protocol Version 2
Router#ssh -l ccna -v 2 ?
-c Select encryption algorithm
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
WORD IP address or hostname of a remote system
Router#ssh -l ccna -v 2 192.168.12.2 ?
WORD Command string
<cr>
Router#ssh -l ccna -v 2 192.168.12.2
Password:
★選択肢のパターン
Router#ssh -v 2 ?
-c Select encryption algorithm
-l Log in using this user name ←バージョンを指定した後でも指定可能★
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
WORD IP address or hostname of a remote system
Router#ssh -v 2 -l ccna ?
-c Select encryption algorithm
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
WORD IP address or hostname of a remote system
Router#ssh -v 2 -l ccna 192.168.12.2 ?
WORD Command string
<cr>
Router#ssh -v 2 -l ccna 192.168.12.2
Password:
参考にそれぞれのパターンを載せておきます。
※「?」の下の行の表示は入力できるコマンドの候補と説明です
★構文のパターン
Router#ssh ?
-c Select encryption algorithm
-l Log in using this user name
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
-v Specify SSH Protocol Version
WORD IP address or hostname of a remote system
Router#ssh -l ?
WORD Login name
Router#ssh -l ccna ?
-c Select encryption algorithm
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
-v Specify SSH Protocol Version ←ユーザ名を指定した後でも指定可能★
WORD IP address or hostname of a remote system
Router#ssh -l ccna -v ?
1 Protocol Version 1
2 Protocol Version 2
Router#ssh -l ccna -v 2 ?
-c Select encryption algorithm
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
WORD IP address or hostname of a remote system
Router#ssh -l ccna -v 2 192.168.12.2 ?
WORD Command string
<cr>
Router#ssh -l ccna -v 2 192.168.12.2
Password:
★選択肢のパターン
Router#ssh -v 2 ?
-c Select encryption algorithm
-l Log in using this user name ←バージョンを指定した後でも指定可能★
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
WORD IP address or hostname of a remote system
Router#ssh -v 2 -l ccna ?
-c Select encryption algorithm
-m Select HMAC algorithm
-o Specify options
-p Connect to this port
WORD IP address or hostname of a remote system
Router#ssh -v 2 -l ccna 192.168.12.2 ?
WORD Command string
<cr>
Router#ssh -v 2 -l ccna 192.168.12.2
Password:
Re: 問題ID:29906
msg# 1.1.1
matsumoto_y
投稿数: 2
返信ありがとうございます。
どちらでも有効なのですね、不勉強でした。
もっと実機を触らないといけませんね。
どちらでも有効なのですね、不勉強でした。
もっと実機を触らないといけませんね。