Azure Bastion RDP による Windows へのログインする方法
環境
Azure Standard SKU
Azure CLI
操作方法
1.Azure CLI でログインします
az login
2.ログイン後、サブスクリプションを指定します。
az account set --subscription <サブスクリプションの ID>
3.SSH 用の拡張機能を有効する
az extension add --name ssh
4.RDP による Windows へのログイン
構文
az network bastion rdp --name "Bastion" --resource-group "Bastion" --target-resource-id "/subscriptions/<SubID>/resourceGroups/Bastion/providers/Microsoft.Compute/virtualMachines/Windows"
Azure CLI の “az network bastion rdp" コマンドを利用し、Bastion 名、リソースグループ名と VM のリソース ID を指定して接続します。
説明
“az network bastion ssh" コマンドを利用し、Bastion 名、リソースグループ名と VM のリソース ID を指定して接続します。SSH の場合、auth-type (password/AAD/ssh-key) のどれかの指定が必要となります。
5.SSH による Windows へのログイン
構文
az network bastion ssh --name "Bastion" --resource-group "Bastion" --target-resource-id "/subscriptions/<SubID>/resourceGroups/Bastion/providers/Microsoft.Compute/virtualMachines/Windows" --auth-type password --user cft Command group 'network bastion' is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus cft@localhost's password:
6.RDP による Linux へのログイン
az network bastion rdp --name "Bastion" --resource-group "Bastion" --target-resource-id "/subscriptions/<SubID>/resourceGroups/Bastion/providers/Microsoft.Compute/virtualMachines/Ubuntu"