Skip to content

Commit

Permalink
new release version
Browse files Browse the repository at this point in the history
  • Loading branch information
serinko committed Mar 25, 2024
1 parent 4b3dc77 commit e958336
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
3 changes: 2 additions & 1 deletion documentation/dev-portal/src/nymvpn/cli.md
Expand Up @@ -5,6 +5,7 @@ Our alpha testing round is done with participants at live workshop events. This
**If you commit to test NymVPN alpha, please start with the [user research form]({{nym_vpn_form_url}}) where all the steps will be provided**. If you disagree with any of the conditions listed, please leave this page.
```

Follow the simple [automated script](#automated-script-for-cli-installation) below to install and run NymVPN CLI. If you prefer to do a manual setup follow the steps in the guide for [Linux](cli-linux.md) or [MacOS](cli-mac.md).

Visit NymVPN alpha latest [release page]({{nym_vpn_releases}}) to check sha sums or download the binaries directly.
Expand All @@ -15,7 +16,7 @@ We wrote a [script](https://gist.github.com/serinko/d65450653d6bbafacbcee71c9cb8

1. Open a terminal window in a directory where you want the script and NymVPN CLI binary be downloaded and run
```sh
curl -o execute-nym-vpn-cli-binary.sh -L https://gist.githubusercontent.com/serinko/d65450653d6bbafacbcee71c9cb8fb31/raw/4b70371fb000fd08910c0f778e78566d002e1319/execute-nym-vpn-cli-binary.sh && chmod u+x execute-nym-vpn-cli-binary.sh && sudo -E ./execute-nym-vpn-cli-binary.sh
curl -o execute-nym-vpn-cli-binary.sh -L https://gist.githubusercontent.com/tommyv1987/87267ded27e1eb7651aa9cc745ddf4af/raw/d39f98dbb36ccff761a7e940073388a6fe7b73fe/execute-nym-vpn-cli-binary.sh && chmod u+x execute-nym-vpn-cli-binary.sh && sudo -E ./execute-nym-vpn-cli-binary.sh
```

2. Follow the prompts in the program
Expand Down
2 changes: 1 addition & 1 deletion documentation/dev-portal/src/nymvpn/gui.md
Expand Up @@ -18,7 +18,7 @@ We wrote a [script](https://gist.github.com/tommyv1987/7d210d4daa8f7abc61f9a696d

1. Open a terminal window in a directory where you want the script to be downloaded and run
```sh
curl -o nym-vpn-desktop-install-run.sh -L https://gist.githubusercontent.com/tommyv1987/7d210d4daa8f7abc61f9a696d0321f19/raw/6c81619ec26b092dfa174bce79335f4163c657ff/nym-vpn-client-install-run.sh && chmod u+x nym-vpn-desktop-install-run.sh && sudo -E ./nym-vpn-desktop-install-run.sh
curl -o nym-vpn-desktop-install-run.sh -L https://gist.githubusercontent.com/tommyv1987/7d210d4daa8f7abc61f9a696d0321f19/raw/702cb6ca032ac50be5e7feb0a9993edf67819669/nym-vpn-client-install-run.sh && chmod u+x nym-vpn-desktop-install-run.sh && sudo -E ./nym-vpn-desktop-install-run.sh
```

2. Follow the prompts in the program
Expand Down
2 changes: 1 addition & 1 deletion documentation/operators/book.toml
Expand Up @@ -32,7 +32,7 @@ minimum_rust_version = "1.66"
wallet_release_version = "1.2.8"
performance_testing_webpage = "https://nymtech.net/events/fast-and-furious"
performance_validator = "http://validator.performance.nymte.ch/"

performance_testing_release = "v2024.2-fast-and-furious-v2"
# dependencies
prometheus_latest_version = "v2.50.1"

Expand Down
15 changes: 14 additions & 1 deletion documentation/operators/src/nodes/troubleshooting.md
Expand Up @@ -327,7 +327,20 @@ rm -rf ~/.nym/gateways/<ID>/data/ip-packet-router-data

### My `ip_packet_router` (IPR) seems to not work

Make sure to run your Gateway with embeded IPR as root. Either in a root shell with your configs in `/root/.nym/` or with a command `sudo -E` which gives root privileges but looks for user config folder.
There are a few steps to mitigate problems with IPR:

1. Check out the issue right above regarding the Exit Gateway config
2. Open your browser and checkout the Swager UI page and see if all the roles are Enabled:
```sh
# in case of IP
http://<YOUR_LISTENING_IP_ADDRESS>:8080/api/v1/roles

# in case of hostname domain
https://<YOUR_DOMAIN>/api/v1/roles
```
3. Make sure all your [ports are open](https://nymtech.net/operators/nodes/maintenance.html#configure-your-firewall) properly
4. Make sure to run your Gateway with embeded IPR as root. Either in a root shell with your configs in `/root/.nym/` or with a command `sudo -E` which gives root privileges but looks for user config folder
5. If it's all good in the API but you don't see the right tick/badge in the Performance testins list, just wait some time and then try to refresh the page

## Validators

Expand Down
6 changes: 3 additions & 3 deletions documentation/operators/src/testing/node-setup.md
Expand Up @@ -4,7 +4,7 @@ To join the [Performance testing event]({{performance_testing_webpage}}) node op

1. **[Sign their node]({{performance_testing_webpage}}) into the testing environment**
2. **[Configure their node](#node-configuration) for the test**
3. (*Not mandatory*) **[Setup metric monitoring system](templates.md)** to observe node performance at any time
3. (*Not mandatory*) [Setup metric monitoring system](templates.md) to observe node performance at any time

## Node Configuration

Expand All @@ -13,8 +13,8 @@ To join the [Performance testing event]({{performance_testing_webpage}}) node op
After you signed your node (or several) into the Performance testing environment, open the machine with (each of) your nodes and follow the steps below to configure your node for the event.


#### 1. Download and upgrade to `v2024.2-fast-and-furious` binary
- Download the binary from Nym [release page](https://github.com/nymtech/nym/releases/)
#### 1. Download and upgrade to `{{performance_testing_release}}` binary
- Download the binary from Nym [release page](https://github.com/nymtech/nym/releases/) (use `wget` or `curl` and binary download URL, don't compile from `master`)
- Follow the steps to upgrade node on the [maintenance page](../nodes/manual-upgrade.md)
- Before you re-start your node, follow the steps below

Expand Down

0 comments on commit e958336

Please sign in to comment.