diff options
author | Jay Beale <jay.beale@gmail.com> | 2020-01-18 15:44:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-18 15:44:21 -0800 |
commit | f6dae4b3cece96ae2da05a4e57988e906c4bd2ac (patch) | |
tree | 133ff48534a1bc129aa46e5fbc95ba41d024001d /docs/vpn | |
parent | df79114b9b1bd7bcbf3a17836667d0f99c5effc9 (diff) | |
download | vyos-documentation-f6dae4b3cece96ae2da05a4e57988e906c4bd2ac.tar.gz vyos-documentation-f6dae4b3cece96ae2da05a4e57988e906c4bd2ac.zip |
Correcting syntax for showing a keypair
When running the command listed on this page, I receive this error:
run show wireguard named-keypairs pubkey KP01
Invalid command: show wireguard [named-keypairs]
When I instead run the following, the desired output arrives: run show wireguard keypairs pubkey KP01
Diffstat (limited to 'docs/vpn')
-rw-r--r-- | docs/vpn/wireguard.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/vpn/wireguard.rst b/docs/vpn/wireguard.rst index 8e957a30..783bcbf4 100644 --- a/docs/vpn/wireguard.rst +++ b/docs/vpn/wireguard.rst @@ -94,7 +94,7 @@ To use a named key on an interface, the option private-key needs to be set. set interfaces wireguard wg01 private-key KP01 set interfaces wireguard wg02 private-key KP02 -The command ``run show wireguard named-keypairs pubkey KP01`` will then show the public key, +The command ``run show wireguard keypairs pubkey KP01`` will then show the public key, which needs to be shared with the peer. |