Skip to content

Commit

Permalink
tweak fix (#5250)
Browse files Browse the repository at this point in the history
* tweak fix

* added default config directories
  • Loading branch information
mfahampshire authored Dec 12, 2024
1 parent d9e5c62 commit 9b5e14c
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions documentation/docs/pages/developers/nymvpncli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Ignore the `NoAccountStored` errors: these will disappear after the next step. *
## Run VPN
We have to first store the account we have created online:
```sh
./PATH/TO/nym-vpn-cli store-account --mnemonic "<MNEMONIC_FROM_GENERATION_STEP>"
./PATH/TO/nym-vpnc store-account --mnemonic "<MNEMONIC_FROM_GENERATION_STEP>"
```

You will see this registration in the daemon logs:
Expand All @@ -108,7 +108,7 @@ You will see this registration in the daemon logs:
You can then connect `nym-vpnc` (in this case, with 2 hop wireguard mode enabled):
```sh
./PATH/TO/nym-vpn-cli nym-vpnc connect --enable-two-hop
./PATH/TO/nym-vpnc connect --enable-two-hop
```
Which shows as such in the daemon logs:
Expand Down Expand Up @@ -168,7 +168,7 @@ You should see the `Remaining wireguard bandwidth` decrease as you use your allo
There are a lot of configuration options available to you regarding how to connect:
```sh
❯ ./nym-vpn-core/target/debug/nym-vpnc connect --help
❯ ./PATH/TO/nym-vpnc connect --help
Connect to the Nym network
Usage: nym-vpnc connect [OPTIONS]
Expand Down Expand Up @@ -217,7 +217,7 @@ Options:
## Command Reference
```sh
❯ ./nym-vpn-core/target/debug/nym-vpnc --help
❯ ./PATH/TO/nym-vpnc --help
NymVPN commandline client
Usage: nym-vpnc [OPTIONS] <COMMAND>
Expand Down Expand Up @@ -257,7 +257,7 @@ Options:
```
```sh
❯ ./nym-vpn-core/target/debug/nym-vpnd --help
❯ ./PATH/TO/nym-vpnd --help
NymVPN daemon
Usage: nym-vpnd [OPTIONS]
Expand All @@ -276,3 +276,6 @@ Options:
-V, --version
Print version
```
## Default Config Directories
Configurations are stored in `/etc/nym`. State stored between runs (keys, mnemonic, etc) are stored in `/var/lib/nym-vpnd`.

0 comments on commit 9b5e14c

Please sign in to comment.