Skip to content

Commit 917d1fb

Browse files
committed
Replace $ with <> for placeholdrs and remove unnecessary VLAN information
1 parent 6452602 commit 917d1fb

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

articles/operator-nexus/howto-platform-prerequisites.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: "Azure Operator Nexus: Before you start platform deployment prerequisites"
33
description: Learn the prerequisite steps for deploying the Operator Nexus platform software.
4-
author: surajmb
5-
ms.author: surmb
4+
author: peterwhiting
5+
ms.author: pjw711
66
ms.service: azure-operator-nexus
77
ms.topic: how-to
88
ms.date: 03/13/2023
@@ -151,7 +151,7 @@ To set up the hostname for your terminal server, follow these steps:
151151
Use the following command in the CLI:
152152

153153
```bash
154-
sudo ogcli update system/hostname hostname=\"$TS_HOSTNAME\"
154+
sudo ogcli update system/hostname hostname=\"<TS_HOSTNAME>\"
155155
```
156156

157157
**Parameters:**
@@ -172,17 +172,17 @@ Execute the following commands in the CLI:
172172
sudo ogcli create conn << 'END'
173173
description="PE1 to TS NET1"
174174
mode="static"
175-
ipv4_static_settings.address="$TS_NET1_IP"
176-
ipv4_static_settings.netmask="$TS_NET1_NETMASK"
177-
ipv4_static_settings.gateway="$TS_NET1_GW"
175+
ipv4_static_settings.address="<TS_NET1_IP>"
176+
ipv4_static_settings.netmask="<TS_NET1_NETMASK>"
177+
ipv4_static_settings.gateway="<TS_NET1_GW>"
178178
physif="net1"
179179
END
180180
sudo ogcli create conn << 'END'
181181
description="PE2 to TS NET2"
182182
mode="static"
183-
ipv4_static_settings.address="$TS_NET2_IP"
184-
ipv4_static_settings.netmask="$TS_NET2_NETMASK"
185-
ipv4_static_settings.gateway="$TS_NET2_GW"
183+
ipv4_static_settings.address="<TS_NET2_IP>"
184+
ipv4_static_settings.netmask="<TS_NET2_NETMASK>"
185+
ipv4_static_settings.gateway="<TS_NET2_GW>"
186186
physif="net2"
187187
END
188188
```
@@ -210,7 +210,7 @@ To clear the net3 interface, follow these steps:
210210
```bash
211211
ogcli get conns
212212
description="Default IPv4 Static Address"
213-
name="$TS_NET3_CONN_NAME"
213+
name="<TS_NET3_CONN_NAME>"
214214
physif="net3"
215215
```
216216
@@ -223,7 +223,7 @@ ogcli get conns
223223
2. Remove the interface if it exists:
224224
225225
```bash
226-
ogcli delete conn "$TS_NET3_CONN_NAME"
226+
ogcli delete conn "<TS_NET3_CONN_NAME>"
227227
```
228228
229229
>[!NOTE]
@@ -241,8 +241,8 @@ description="Support Admin User"
241241
enabled=true
242242
groups[0]="admin"
243243
groups[1]="netgrp"
244-
password="$SUPPORT_PWD"
245-
username="$SUPPORT_USER"
244+
password="<SUPPORT_PWD>"
245+
username="<SUPPORT_USER>"
246246
END
247247
```
248248

@@ -354,7 +354,7 @@ If the date/time is incorrect, you can fix it using:
354354
```bash
355355
ogcli replace system/time
356356
Reading information from stdin. Press Ctrl-D to submit and Ctrl-C to cancel.
357-
time="$CURRENT_DATE_TIME"
357+
time="<CURRENT_DATE_TIME>"
358358
```
359359

360360
**Parameters:**
@@ -371,7 +371,7 @@ time="$CURRENT_DATE_TIME"
371371
To label Terminal Server ports, use the following command:
372372

373373
```bash
374-
ogcli update port "port-<PORT_#>" label=\"<NEW_NAME>\" <PORT_#>
374+
ogcli update port "port-<PORT_#>" label=\"<NEW_NAME>\" <PORT_#>
375375
```
376376

377377
**Parameters:**
@@ -512,7 +512,6 @@ Interface: net1, via: LLDP, RID: 1, Time: 0 day, 20:28:36
512512
- Subnet Mask: 255.255.255.0
513513
- MTU: 1500
514514
- Bond: not set by operator during setup
515-
- VLAN Number / Prefix: 43
516515
- ct0.eth10: not set by operator during setup
517516
- ct0.eth11: not set by operator during setup
518517
- ct0.eth18: not set by operator during setup

0 commit comments

Comments
 (0)