Skip to content

Commit d2899fd

Browse files
Merge pull request #209561 from asudbring/link-fixes
Fix broken links in articles
2 parents 9c946a7 + 19002d7 commit d2899fd

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

articles/virtual-network/ip-services/create-vm-dual-stack-ipv6-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this article, you'll create a virtual machine in Azure with the Azure portal.
2323

2424
In this section, you'll create a dual-stack virtual network for the virtual machine.
2525

26-
1. Sign-in to the [Azure portal](https://https://portal.azure.com).
26+
1. Sign-in to the [Azure portal](https://portal.azure.com).
2727

2828
2. In the search box at the top of the portal, enter **Virtual network**. Select **Virtual networks** in the search results.
2929

includes/virtual-network-multiple-ip-addresses-os-config.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ Connect and sign in to a VM you created with multiple private IP addresses. You
2929
* **Subnet mask**: Set based on your subnet. For example, if the subnet is a /24 subnet then the subnet mask is 255.255.255.0.
3030
* **Default gateway**: The first IP address in the subnet. If your subnet is 10.0.0.0/24, then the gateway IP address is 10.0.0.1.
3131
* Select **Use the following DNS server addresses** and enter the following values:
32-
* **Preferred DNS server**: If you are not using your own DNS server, enter 168.63.129.16. If you are using your own DNS server, enter the IP address for your server. (For Alternate DNS Server you can pick any free public DNS server address.)
32+
* **Preferred DNS server**: If you aren't using your own DNS server, enter 168.63.129.16. If you're using your own DNS server, enter the IP address for your server. (For Alternate DNS Server you can pick any free public DNS server address.)
3333
* Select the **Advanced** button and add additional IP addresses. Add each of the secondary private IP addresses, that you added to the Azure network interface in a previous step, to the Windows network interface that is assigned the primary IP address assigned to the Azure network interface.
3434

35-
You should never manually assign the public IP address assigned to an Azure virtual machine within the virtual machine's operating system. When you manually set the IP address within the operating system, ensure that it is the same address as the private IP address assigned to the Azure [network interface](../articles/virtual-network/ip-services/virtual-network-network-interface-addresses.md#change-ip-address-settings), or you can lose connectivity to the virtual machine. Learn more about [private IP address](../articles/virtual-network/ip-services/virtual-network-network-interface-addresses.md#private) settings. You should never assign an Azure public IP address within the operating system.
35+
You should never manually assign the public IP address assigned to an Azure virtual machine within the virtual machine's operating system. When you manually set the IP address within the operating system, ensure that it's the same address as the private IP address assigned to the Azure [network interface](../articles/virtual-network/ip-services/virtual-network-network-interface-addresses.md#change-ip-address-settings), or you can lose connectivity to the virtual machine. Learn more about [private IP address](../articles/virtual-network/ip-services/virtual-network-network-interface-addresses.md#private) settings. You should never assign an Azure public IP address within the operating system.
3636

37-
* Click **OK** to close out the TCP/IP settings and then **OK** again to close the adapter settings. Your RDP connection is re-established.
37+
* Select **OK** to close out the TCP/IP settings and then **OK** again to close the adapter settings. Your RDP connection is re-established.
3838

3939
6. From a command prompt, type *ipconfig /all*. Verify all IP addresses you added are shown and DHCP is turned off.
4040
7. Configure Windows to use the private IP address of the primary IP configuration in Azure as the primary IP address for Windows. See [No Internet access from Azure Windows VM that has multiple IP addresses](https://support.microsoft.com/help/4040882/no-internet-access-from-azure-windows-vm-that-has-multiple-ip-addresse) for details.
4141

4242
#### Validation (Windows Server)
4343

44-
To ensure you are able to connect to the internet from your secondary IP configuration via the public IP associated it, once you have added it correctly using steps above, use the following command (replacing 10.0.0.7 with the secondary, private IP address):
44+
To ensure you're able to connect to the internet from your secondary IP configuration via the public IP associated it, once you've added it correctly using steps above, use the following command (replacing 10.0.0.7 with the secondary, private IP address):
4545

4646
```bash
4747
ping -S 10.0.0.7 outlook.com
@@ -60,7 +60,7 @@ ping -S 10.0.0.7 outlook.com
6060
We recommend looking at the latest documentation for your Linux distribution.
6161

6262
1. Open a terminal window.
63-
2. Make sure you are the root user. If you are not, enter the following command:
63+
2. Make sure you're the root user. If you aren't, enter the following command:
6464

6565
```bash
6666
sudo -i
@@ -118,7 +118,7 @@ We recommend looking at the latest documentation for your Linux distribution.
118118

119119
#### Validation (Ubuntu 14/16)
120120

121-
To ensure you are able to connect to the internet from your secondary IP configuration via the public IP associated it, use the following command:
121+
To ensure you're able to connect to the internet from your secondary IP configuration via the public IP associated it, use the following command:
122122
123123
```bash
124124
ping -I 10.0.0.5 outlook.com
@@ -151,7 +151,7 @@ ip route add default via 10.0.0.1 dev eth2 table custom
151151
Ubuntu 18.04 and above have changed to `netplan` for OS network management. We recommend looking at the latest documentation for your Linux distribution.
152152
153153
1. Open a terminal window.
154-
2. Make sure you are the root user. If you are not, enter the following command:
154+
2. Make sure you're the root user. If you are not, enter the following command:
155155

156156
```bash
157157
sudo -i
@@ -180,7 +180,7 @@ Ubuntu 18.04 and above have changed to `netplan` for OS network management. We r
180180
:wq
181181
```
182182

183-
6. Test the changes using [netplan try](http://manpages.ubuntu.com/manpages/cosmic/man8/netplan-try.8.html) to confirm syntax:
183+
6. Test the changes using [netplan try](https://manpages.ubuntu.com/manpages/kinetic/en/man8/netplan-try.8.html) to confirm syntax:
184184

185185
```bash
186186
netplan try
@@ -222,7 +222,7 @@ Ubuntu 18.04 and above have changed to `netplan` for OS network management. We r
222222

223223
#### Validation (Ubuntu 18.04+)
224224

225-
To ensure you are able to connect to the internet from your secondary IP configuration via the public IP associated it, use the following command:
225+
To ensure you're able to connect to the internet from your secondary IP configuration via the public IP associated it, use the following command:
226226
227227
```bash
228228
ping -I 10.0.0.5 outlook.com
@@ -253,13 +253,13 @@ ip route add default via 10.0.0.1 dev eth2 table custom
253253
<summary>Expand</summary>
254254
255255
1. Open a terminal window.
256-
2. Make sure you are the root user. If you are not, enter the following command:
256+
2. Make sure you're the root user. If you are not, enter the following command:
257257

258258
```bash
259259
sudo -i
260260
```
261261

262-
3. Enter your password and follow instructions as prompted. Once you are the root user, navigate to the network scripts folder with the following command:
262+
3. Enter your password and follow instructions as prompted. Once you're the root user, navigate to the network scripts folder with the following command:
263263
264264
```bash
265265
cd /etc/sysconfig/network-scripts
@@ -312,7 +312,7 @@ ip route add default via 10.0.0.1 dev eth2 table custom
312312
313313
#### Validation (Red Hat, CentOS, and others)
314314
315-
To ensure you are able to connect to the internet from your secondary IP configuration via the public IP associated it, use the following command:
315+
To ensure you're able to connect to the internet from your secondary IP configuration via the public IP associated it, use the following command:
316316

317317
```bash
318318
ping -I 10.0.0.5 outlook.com
@@ -343,7 +343,7 @@ ip route add default via 10.0.0.1 dev eth2 table custom
343343
<summary>Expand</summary>
344344

345345
1. Open a terminal window.
346-
1. Make sure you are the root user. If you are not, enter the following command:
346+
1. Make sure you're the root user. If you are not, enter the following command:
347347
348348
```bash
349349
sudo -i

0 commit comments

Comments
 (0)