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
inet 10.1.0.6/24 brd 10.1.0.255 scope global secondary eth0
200
+
valid_lft forever preferred_lft forever
201
+
inet 10.1.0.4/24 brd 10.1.0.255 scope global secondary eth0
202
+
valid_lft forever preferred_lft forever
203
+
inet6 fe80::20d:3aff:fe04:4516/64 scope link
204
+
valid_lft forever preferred_lft forever
205
+
```
179
206
180
207
#### Validation (Ubuntu 14/16)
181
208
182
-
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:
209
+
To ensure you're able to connect to the internet from your secondary IP configuration via the public IP associated with it, use the following command:
183
210
184
211
```bash
185
-
ping -I 10.0.0.5 outlook.com
212
+
ping -I 10.1.0.5 outlook.com
186
213
```
187
214
188
215
> [!NOTE]
189
216
> For secondary IP configurations, you can only ping to the Internet if the configuration has a public IP address associated with it. For primary IP configurations, a public IP address is not required to ping to the Internet.
190
217
191
-
For Linux VMs, when trying to validate outbound connectivity from a secondary NIC, you may need to add appropriate routes. There are many ways to do this. Please see appropriate documentation for your Linux distribution. The following is one method to accomplish this:
218
+
For Linux VMs, when attempting to validate outbound connectivity from a secondary NIC, you may need to add appropriate routes. See appropriate documentation for your Linux distribution. The following is one method to accomplish this:
192
219
193
220
```bash
194
221
echo 150 custom >> /etc/iproute2/rt_tables
195
222
196
-
ip rule add from 10.0.0.5 lookup custom
197
-
ip route add default via 10.0.0.1 dev eth2 table custom
223
+
ip rule add from 10.1.0.5 lookup custom
224
+
ip route add default via 10.1.0.1 dev eth2 table custom
198
225
```
199
226
200
-
- Be sure to replace:
201
-
- **10.0.0.5** with the private IP address that has a public IP address associated to it
202
-
- **10.0.0.1** to your default gateway
227
+
- Ensure to replace:
228
+
229
+
- **10.1.0.5** with the private IP address that has a public IP address associated to it
230
+
231
+
- **10.1.0.1** to your default gateway
232
+
203
233
- **eth2** to the name of your secondary NIC
204
234
205
235
</details>
@@ -291,7 +321,7 @@ Ubuntu 18.04 and above have changed to **`netplan`** for OS network management.
291
321
292
322
#### Validation (Ubuntu 18.04+)
293
323
294
-
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:
324
+
To ensure you're able to connect to the internet from your secondary IP configuration via the public IP associated with it, use the following command:
0 commit comments