2b83442a6d
* replace dead token page with live dashboard * add dev release notes * fix urls * add IPv6 KVM guide * simplify node setup command * add operator updates * PR finished: add WG exit policy steps andfinish changelog * PR finished: fix typo * add components to the branch * fix styling
12 lines
410 B
Plaintext
12 lines
410 B
Plaintext
Run this command to define variable `BLOCKED_IP` and try to `ping` it:
|
|
```shell
|
|
BLOCKED_IP=$(grep "ExitPolicy reject" /etc/nym/exit-policy.txt | head -1 | sed -E 's/ExitPolicy reject ([^:]+):.*/\1/' | sed 's/\/.*$//')
|
|
|
|
ping -c 3 $BLOCKED_IP
|
|
```
|
|
You should see `100% packet loss` as an outcome.
|
|
```shell
|
|
telnet $BLOCKED_IP 80
|
|
```
|
|
You should see `telnet: Unable to connect to remote host: Connection timed out`.
|