Skip to content

Commit 1ca7384

Browse files
committed
Merge branch 'final-edits-512' into ania-stage
2 parents 0adffbe + ba3cc92 commit 1ca7384

File tree

2 files changed

+52
-8
lines changed
  • content
    • cumulus-linux-511/System-Configuration/NVIDIA-User-Experience-NVUE
    • cumulus-linux-512/System-Configuration/NVIDIA-User-Experience-NVUE

2 files changed

+52
-8
lines changed

content/cumulus-linux-511/System-Configuration/NVIDIA-User-Experience-NVUE/NVUE-CLI.md

Lines changed: 47 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -549,10 +549,10 @@ If you do not clear a user session after making changes directly on the RADIUS,
549549

550550
If you use certain special characters in a password, you must quote or escape (with a backslash) these characters so that the system understands that they are part of the password.
551551

552-
The following table shows if you need to quote or escape a special character.
552+
The following table shows which quote or escape you can use for each special character.
553553

554-
- Normal Use indicates that you can use the special character without quotes or a backslash.
555-
- Single Quotes and Double Quotes indicate that the entire password needs to be enclosed in quotes.
554+
- *Normal Use* indicates that you can use the special character without quotes or a backslash.
555+
- *Single Quotes* and *Double Quotes* indicate that you need to enclose the entire password in quotes.
556556

557557
| Special Character | Normal Use | Single Quotes ('') | Double Quotes ("") | Escape (`\`)|
558558
|---------- | ------- | ------------------ | ------------------ | ------ |
@@ -607,6 +607,50 @@ The following example shows a password that includes a dot (.) and tilde (~):
607607
cumulus@switch:~$ nv set system aaa user cumulus password “Hello.world\~123”
608608
```
609609

610+
You might need to encode special characters in a password, for example in a URL. The following table shows the special character encoding.
611+
- `` indicates that encoding is not needed.
612+
- `%xx` indicates that you need to replace the special character with `%xx`.
613+
614+
| Symbol | Normal | Single Quotes ('') | Double Quotes ("") | Escape (`\`)|
615+
|--------------------|--------|-----------------|-----------------|---------|
616+
| backtick (`) | %60 || %60 ||
617+
| exclamation point (`!`) | %21 || %21 ||
618+
| semicolon (`;`) | %3B ||||
619+
| ampersand (`&`) | %26 ||||
620+
| question mark (`?`) | %3F | %3F | %3F | %3F |
621+
| tilde (~) |||||
622+
| at-sign (`@`) |||||
623+
| hash sign (`#`) | %23 | %23 | %23 | %23 |
624+
| dollar sign (`$`) | %24 || %24 ||
625+
| percent sign (`%`) |||||
626+
| caret (`^`) |||||
627+
| asterisk (`*`) |||||
628+
| left parenthesis (`(`) | %28 ||||
629+
| right parenthesis (`)`) | %29 ||||
630+
| dash (`-`) |||||
631+
| underscore (`_`) |||||
632+
| equals sign (`=`) |||||
633+
| plus sign (`+`) |||||
634+
| vertical bar | %7C ||||
635+
| left bracket (`[`) | %5B | %5B | %5B | %5B |
636+
| right bracket (`]`) | %5D | %5D | %5D | %5D |
637+
| braces (`{}`) |||||
638+
| colon (`:`) |||||
639+
| single quote (``) | %27 | %27 |||
640+
| double quote (``) | %22 || %22 ||
641+
| comma (`,`) |||||
642+
| left angle bracket (`<`) | %3C ||||
643+
| right angle bracket (`>`) | %3E ||||
644+
| slash (`/`) | %2F | %2F | %2F | %2F |
645+
| dot (`.`) |||||
646+
| white space | %20 ||||
647+
648+
The following example fetches an image stored on a device with IP address 10.0.1.251 using the password `Pass#pass1` for user1:
649+
650+
```
651+
cumulus@switch:~$ nv action fetch system image scp://user1:Pass1%23pass1@10.0.1.251/host/nos-images/nvos-amd64-25.02.1857.bin
652+
```
653+
610654
## NVUE and FRR Restart
611655

612656
NVUE restarts the FRR service when you:

content/cumulus-linux-512/System-Configuration/NVIDIA-User-Experience-NVUE/NVUE-CLI.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -577,8 +577,8 @@ If you use certain special characters in a password, you must quote or escape (w
577577

578578
The following table shows which quote or escape you can use for each special character.
579579

580-
- Normal Use indicates that you can use the special character without quotes or a backslash.
581-
- Single Quotes and Double Quotes indicate that the entire password needs to be enclosed in quotes.
580+
- *Normal Use* indicates that you can use the special character without quotes or a backslash.
581+
- *Single Quotes* and *Double Quotes* indicate that you need to enclose the entire password in quotes.
582582

583583
| Special Character | Normal Use | Single Quotes ('') | Double Quotes ("") | Escape (`\`)|
584584
|---------- | ------- | ------------------ | ------------------ | ------ |
@@ -633,9 +633,9 @@ The following example shows a password that includes a dot (.) and tilde (~):
633633
cumulus@switch:~$ nv set system aaa user cumulus password “Hello.world\~123”
634634
```
635635

636-
When using a password in a URL, you might need to encode special characters. The following table shows the special character encoding.
637-
- indicates that encoding is not needed.
638-
- %xx indicates that you need to replace the special character with %xx.
636+
You might need to encode special characters in a password, for example in a URL. The following table shows the special character encoding.
637+
- `` indicates that encoding is not needed.
638+
- `%xx` indicates that you need to replace the special character with `%xx`.
639639

640640
| Symbol | Normal | Single Quotes ('') | Double Quotes ("") | Escape (`\`)|
641641
|--------------------|--------|-----------------|-----------------|---------|

0 commit comments

Comments
 (0)