Google Cloud Computingで生成されたSSHキーを使用してVPSインスタンスを見つける方法は?

Google Cloud Computingで生成されたSSHキーを使用してVPSインスタンスを見つける方法は?

gcloud CLIコンソールを使用する代わりに手動でキーを生成する場合は、次の接続を見つけるように公開キーを設定することもできます。

thufir@mordor:~$ cat .ssh/config 
# Google Compute Engine Section
#
# The following has been auto-generated by "gcloud compute config-ssh"
# to make accessing your Google Compute Engine virtual machines easier.
#
# To remove this blob, run:
#
#   gcloud compute config-ssh --remove
#
# You can also manually remove this blob by deleting everything from
# here until the comment that contains the string "End of Google Compute
# Engine Section".
#
# You should not hand-edit this section, unless you are deleting it.
#
Host <instance>.<location>.<project>
    HostName <ip address>
    IdentityFile /home/thufir/.ssh/google_compute_engine
    UserKnownHostsFile=/home/thufir/.ssh/google_compute_known_hosts
    HostKeyAlias=compute.<####>
    IdentitiesOnly=yes
    CheckHostIP=no

# End of Google Compute Engine Section
thufir@mordor:~$ 
thufir@mordor:~$ ll .ssh
total 80
drwx------  2 thufir thufir  4096 Jul 28 04:00 ./
drwx------ 69 thufir thufir 36864 Jul 28 04:03 ../
-rw-------  1 thufir thufir   799 Jul 28 04:00 config
-rw-------  1 thufir thufir  1675 Jul 28 04:00 google_compute_engine
-rw-r--r--  1 thufir thufir   395 Jul 28 04:00 google_compute_engine.pub

特にHostName <ip address>どの行が許可されますかssh <instance>.<location>.<project>

探すいいえDNSで設定しましたか?

同様の関連質問をご覧ください。

JSONを使用してSSHキーをGoogle Cloud VPSに接続するには?

ベストアンサー1

特にHostName行には何が許可されていますかssh <instance>.<location>.<project>

はい。もしあなたのSSH構成HostName <ip address>特定のセクションの行があるHost somealias場合ssh somealias


ホスト名に FQDN を指定することもできます。

Host abc
    HostName alpha.beta.nonexistent.com

この場合はDNSを使用しますが、エイリアスのHostName代わりにエイリアスを使用しますHost。ただし、これは設定とは関係ありません。

おすすめ記事