doc
This commit is contained in:
parent
df88ae3580
commit
a70ebeda5c
@ -7,6 +7,7 @@
|
|||||||
* [Containers](https://git.netig.net/netig/chimera-linux/src/branch/main/containers.md)
|
* [Containers](https://git.netig.net/netig/chimera-linux/src/branch/main/containers.md)
|
||||||
* [UFW configuration](https://git.netig.net/netig/chimera-linux/src/branch/main/ufw-config.md)
|
* [UFW configuration](https://git.netig.net/netig/chimera-linux/src/branch/main/ufw-config.md)
|
||||||
* [HostUp VPS network configuration](https://git.netig.net/netig/chimera-linux/src/branch/main/hostup-network-config.md)
|
* [HostUp VPS network configuration](https://git.netig.net/netig/chimera-linux/src/branch/main/hostup-network-config.md)
|
||||||
|
* [Network tricks](https://git.netig.net/netig/chimera-linux/src/branch/main/network-tricks.md)
|
||||||
|
|
||||||
## Project links
|
## Project links
|
||||||
|
|
||||||
|
18
network-tricks.md
Normal file
18
network-tricks.md
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Network tricks
|
||||||
|
|
||||||
|
## Check if a port is reachable
|
||||||
|
|
||||||
|
On the server :
|
||||||
|
```
|
||||||
|
# nc -l <your_port>
|
||||||
|
```
|
||||||
|
|
||||||
|
On a client machine :
|
||||||
|
```
|
||||||
|
$ nc -zv <server_ip> <your_port>
|
||||||
|
```
|
||||||
|
|
||||||
|
Or to check UDP port :
|
||||||
|
```
|
||||||
|
$ nc -zv -u <server_ip> <your_port>
|
||||||
|
```
|
Loading…
x
Reference in New Issue
Block a user