You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/servers-and-cloud-computing/cobalt/1-create-cobalt-vm.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,13 +20,13 @@ To create a Cobalt 100 VM, follow these steps:
20
20
21
21
1. Sign in to the [Azure Portal](https://portal.azure.com/).
22
22
2. Select **Create a resource → Compute → Virtual machine**.
23
-
3. Complete the *Basics* tab:
24
-

23
+
3. Complete the **Basics** tab as shown in the figure below:
24
+

25
25
Cobalt 100 powers the Dpsv6-series. Selecting **Standard_D4ps_v6** creates a Cobalt VM with four physical cores. You can select a different size if you need more or fewer cores.
26
26
4. Upload your public SSH key or generate a new one in the wizard.
27
-
5.Disallow public inbound ports for now.
28
-
6.Accept the defaults on the **Disks** tab.
29
-
7. On the **Networking** tab ensure that a **Public IP** is selected. You will need it to connect later. Leave the NSG settings as **Basic** for now.
27
+
5.For **Public inbound ports**, select **None**.
28
+
6.On the **Disks** tab, accept the default options.
29
+
7. On the **Networking** tab, ensure that a **Public IP** is selected. You will need it to connect later. Leave the NSG settings as **Basic** for now.
30
30
31
31
Click **Review + create** followed by **Create**. Azure now deploys the VM and the automatically-generated Network Security Group (NSG). Provisioning takes ~2 minutes.
title: Open an inbound port in the Network Security Group
2
+
title: Open inbound ports in the Network Security Group
3
3
weight: 3
4
4
5
5
### FIXED, DO NOT MODIFY
@@ -8,16 +8,16 @@ layout: learningpathall
8
8
9
9
## Allow external traffic to TCP ports 22 (SSH) and 8080
10
10
11
-
Every new virtual machine created through the Azure wizard is associated with a **Network Security Group (NSG)**. An NSG acts like a stateful firewall – if no rule explicitly allows traffic, Azure blocks it.
11
+
Every new virtual machine created through the Azure wizard is associated with a **Network Security Group (NSG)**. An NSG acts as a stateful firewall – if no rule explicitly allows traffic, Azure blocks it by default.
12
12
13
13
In this step you will open port 22 for SSH, as well as port 8080 so that a web application running on the VM is reachable from your IP for testing. Substitute a different port if required by your workload, or a different IP range if you'd like broader accessibility.
14
14
15
-
1. In the Azure Portal open the newly created VM resource and click **Networking → Network settings** in the left nav.
15
+
1. In the Azure Portal, open the newly created VM resource and click **Networking → Network settings** in the left nav.
16
16
2. Select the **Network security group**.
17
-
3. Click on **Create Port Rule** and from the drop-down men select **Inbound port rule**
17
+
3. Click on **Create Port Rule** and from the drop-down menu select **Inbound port rule**
18
18
4. Fill in the form, specifying **My IP address** as the source and 22 as the destination port:
19
19

20
20
5. Click **Add**.
21
21
To open port 8080, follow steps 3 through 5 again, but instead choose port 8080 for the destination port.
22
22
23
-
You have now opened ports 22 and 8080 to your IP. In the next step you will verify connectivity.
23
+
You have now opened ports 22 and 8080 to your IP. In the next step, you will verify connectivity.
Copy file name to clipboardExpand all lines: content/learning-paths/servers-and-cloud-computing/cobalt/_index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,10 @@ minutes_to_complete: 10
6
6
who_is_this_for: This is an introductory topic for developers and DevOps engineers who want to deploy an Arm-based virtual machine on Azure and expose an application port to the internet.
7
7
8
8
learning_objectives:
9
-
- Deploy an Arm-based Cobalt 100 virtual machine (VM) on Microsoft Azure.
10
-
- Connect to the Cobalt 100 VM using SSH.
11
-
- Configure an inbound TCP port in the associated Network Security Group (NSG).
12
-
- Verify external connectivity to the newlyopened port.
9
+
- Deploy an Arm-based Cobalt 100 virtual machine (VM) on Microsoft Azure
10
+
- Connect to the Cobalt 100 VM using SSH
11
+
- Configure an inbound TCP port in the associated Network Security Group (NSG)
12
+
- Verify external connectivity to the newly-opened port
13
13
14
14
prerequisites:
15
15
- A Microsoft Azure subscription with permissions to create virtual machines and networking resources
0 commit comments