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
| TS_NET3_CONN_NAME | Terminal server NET3 Connection name |
219
+
209
220
2. Remove the interface if it exists:
221
+
210
222
```bash
211
223
ogcli delete conn "$TS_NET3_CONN_NAME"
212
224
```
213
-
**Note:** Make sure to replace these parameters with appropriate values.
214
-
### Step 4: Setting Up Support Admin User
225
+
226
+
>[!NOTE]
227
+
>Make sure to replace these parameters with appropriate values.
228
+
229
+
### Step 4: Setting up support admin user
230
+
215
231
To set up the support admin user, follow these steps:
232
+
216
233
1. For each user, execute the following command in the CLI:
234
+
217
235
```bash
218
236
ogcli create user << 'END'
219
237
description="Support Admin User"
@@ -232,8 +250,10 @@ END
232
250
| SUPPORT_USER | Support admin user |
233
251
| HASHED_SUPPORT_PWD | Encoded support admin user password |
234
252
235
-
>Note: Make sure to replace these parameters with appropriate values.
236
-
### Step 5: Adding sudo Support for Admin Users
253
+
>[!NOTE]
254
+
>Make sure to replace these parameters with appropriate values.
255
+
256
+
### Step 5: Adding sudo support for admin users
237
257
238
258
To add sudo support for admin users, follow these steps:
239
259
@@ -250,15 +270,16 @@ sudo vi /etc/sudoers.d/opengear
250
270
%admin ALL=(ALL) NOPASSWD: ALL
251
271
```
252
272
253
-
**Note:** Make sure to save the changes after editing the file.
273
+
>[!NOTE]
274
+
>Make sure to save the changes after editing the file.
254
275
255
276
This configuration allows members of the "netgrp" group to execute any command as any user and members of the "admin" group to execute any command as any user without requiring a password.
256
277
257
-
### Step 6: Ensuring LLDP Service Availability
278
+
### Step 6: Ensuring LLDP service availability
258
279
259
280
To ensure the LLDP service is available on your terminal server, follow these steps:
260
281
261
-
1.Check if the LLDP service is running:
282
+
Check if the LLDP service is running:
262
283
263
284
```bash
264
285
sudo systemctl status lldpd
@@ -280,48 +301,50 @@ lldpd.service - LLDP daemon
280
301
Notice: journal has been rotated since unit was started, output may be incomplete.
281
302
```
282
303
283
-
2.If the service isn't active (running), start the service:
304
+
If the service isn't active (running), start the service:
284
305
285
306
```bash
286
307
sudo systemctl start lldpd
287
308
```
288
309
289
-
3.Enable the service to start on reboot:
310
+
Enable the service to start on reboot:
290
311
291
312
```bash
292
313
sudo systemctl enable lldpd
293
314
```
294
315
295
-
>Note: Make sure to perform these steps to ensure the LLDP service is always available and starts automatically upon reboot.
296
-
### Step 7: Checking System Date/Time
316
+
>[!NOTE]
317
+
>Make sure to perform these steps to ensure the LLDP service is always available and starts automatically upon reboot.
318
+
319
+
### Step 7: Checking system date/time
297
320
298
321
Ensure that the system date/time is correctly set, and the timezone for the terminal server is in UTC.
299
322
300
-
#### Check Timezone Setting:
323
+
#### Check timezone setting:
301
324
302
325
1. To check the current timezone setting:
303
326
304
327
```bash
305
328
ogcli get system/timezone
306
329
```
307
330
308
-
#### Set Timezone to UTC:
331
+
#### Set timezone to UTC:
309
332
310
333
2. If the timezone is not set to UTC, you can set it using:
311
334
312
335
```bash
313
336
ogcli update system/timezone timezone=\"UTC\"
314
337
```
315
338
316
-
#### Check Current Date/Time:
339
+
#### Check current date/time:
317
340
318
341
3. Check the current date and time:
319
342
320
343
```bash
321
344
date
322
345
```
323
346
324
-
#### Fix Date/Time if Incorrect:
347
+
#### Fix date/time if incorrect:
325
348
326
349
4. If the date/time is incorrect, you can fix it using:
0 commit comments