Note: This question is part of a series of questions that present the same scenario. Each questions in the series
contains a unique solution that might meet the stated goals. Some questions sets might have more than one
correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will
not appear in the review scree.
You create an Ubuntu Linux virtual machine (VM) by using the Azure Portal. You do not specify a passwordwhen you create the VM.
You need to connect to the terminal of the VM.
Solution: You connect to the public IP address of the VM by using Secure Shell (SSH) and specify your public
key.
Does the solution meet the goal?
A.
Yes
B.
No
Explanation:
https://docs.microsoft.com/en-us/azure/virtual-machines/virtual-machines-linux-quick-create-portal?toc=%
2fazure%2fvirtual-machines%2flinux%2ftoc.json
Wrong, private key not public key.
Correct awnser is NO
allso google: Briefing Microsoft Knowledge > 70-533 (v.4)
Ans: NO
Explanation:
You need to connect to the public IP, not the private IP.
The answer is NO, private key not public
The public key is placed on your Linux VM, or any other service that you wish to use with public-key cryptography.
The private key is what you present to your Linux VM when you log in, to verify your identity. Protect this private key. Do not share it.
https://docs.microsoft.com/en-us/azure/virtual-machines/linux/ssh-from-windows
When you connect to Linux virtual machines (VMs) in Azure, you should use public-key cryptography to provide a more secure way to log in to your Linux VM. This process involves a public and private key exchange using the secure shell (SSH) command to authenticate yourself rather than a username and password. Passwords are vulnerable to brute-force attacks, especially on Internet-facing VMs such as web servers. This article provides an overview of SSH keys and how to generate the appropriate keys on a Windows computer.