Skip to content

Commit cf1d862

Browse files
Updates
1 parent 4470ad6 commit cf1d862

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

content/learning-paths/servers-and-cloud-computing/cobalt/1-create-cobalt-vm.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ To create a Cobalt 100 VM, follow these steps:
2020

2121
1. Sign in to the [Azure Portal](https://portal.azure.com/).
2222
2. Select **Create a resource → Compute → Virtual machine**.
23-
3. Complete the fields in the **Basics** tab with the values shown in the figure below:
23+
3. Complete the fields in the **Basics** tab using the values shown in the figure below:
2424

2525
![Azure Portal – Basics tab for the VM wizard#center](images/create-cobalt-vm.png "Configuring the Basics tab")
2626

27-
Cobalt 100 powers the Dpsv6-series. Selecting **Standard_D4ps_v6** creates a Cobalt VM with four physical cores.
27+
Cobalt 100 powers the Dpsv6 and Dplsv6 series. Selecting **Standard_D4ps_v6** creates a Cobalt VM with four physical cores.
2828
You can choose a different size if you need more or fewer cores.
2929
4. Upload your public SSH key or generate a new one in the wizard.
3030
5. For the **Public inbound ports** field, select **None**.
3131
6. On the **Disks** tab, accept the default options.
3232
7. On the **Networking** tab, ensure that a **Public IP** is selected. You will need it to connect to the VM later. Leave the NSG settings as **Basic**.
3333

34-
8. Select **Review + create**, then **Create**. Azure now deploys the VM and the automatically-generated Network Security Group (NSG). Provisioning takes ~2 minutes.
34+
8. Select **Review + create**, then **Create**. Azure deploys the VM and the automatically-generated Network Security Group (NSG). Provisioning takes ~2 minutes.
3535

36-
9. Navigate to the **Deployment in progress** pane or open the **Notifications** panel to track progress. When the deployment succeeds, proceed to the next step to expose an inbound port.
36+
9. Navigate to the **Deployment in progress** pane or open the **Notifications** panel to track progress. When the deployment completes, proceed to the next step to expose an inbound port.

content/learning-paths/servers-and-cloud-computing/cobalt/2-open-port.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ In this step, you'll open port 22 for SSH and port 8080 so that a web applicatio
1818

1919
4. Fill in the form with **My IP address** as the source and 22 as the destination port:
2020

21-
![Add inbound security rule with source of my IP and destination port 22#center](images/create-nsg-rule.png)
21+
![Add inbound security rule with source of my IP and destination port 22#center](images/create-nsg-rule.png "Create Port Rule form")
2222

2323
5. Select **Add**.
24-
To open port 8080, repeat steps 3-5 and enter 8080 as the destination port.
2524

26-
You have now opened ports 22 and 8080 to your IP. In the next step, you will verify connectivity from your local machine.
25+
6. To open port 8080, repeat steps 3-5 and enter 8080 as the destination port.
26+
27+
You have now opened ports 22 and 8080 to your IP. In the next step, you'll verify connectivity from your local machine.

content/learning-paths/servers-and-cloud-computing/cobalt/3-verify-connectivity.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ layout: learningpathall
88

99
## Connect over SSH and test the open port
1010

11-
1. On the **Overview** page of the VM, copy the **Public IP address**.
12-
2. Open a terminal on your local machine and SSH to the VM (replace *azureuser* if you chose a different admin username):
11+
On the **Overview** page of the VM, copy the **Public IP address**. Open a terminal on your local machine, and SSH to the VM (replace *azureuser* if you chose a different admin username):
1312

1413
```bash
1514
ssh -i [path to your pem file] azureuser@[public IP]

0 commit comments

Comments
 (0)