Fixing Ping MTU Issues
Viewed 19 times since Wed, Jul 9, 2025
The first thing you need to do to fix your OpenVPN MTU problem is to figure out what your largest MTU actually is. You can do this using the ping command. “ping -f” tells ping not to fragment the packet under any circumstances. &ldquo...
Read More
see connections on a specific port using netstat in terminal
Viewed 68 times since Sat, May 31, 2025
To see connections on a specific port using netstat in Linux: netstat -anp | grep :<port_number> To see connections on a specific port using netstat in Windows: netstat -np TCP | find "<port_number>"
Read More