#Network Troubleshooting

#SSL Issues

openssl s_client -showcerts -connect <url>:443

#Not connectable IPv6 IP

curl -sv -6 "http://<url>:<port>/"

#Windows Check Ports In Use

netstat -ab

#Windows Check URL Reservations

netsh http show urlacl

#Windows Creating URL Reservations

http add urlacl http://*:7878/ sddl=D:(A;;GX;;;S-1-1-0)

#Linux Check Ports in Use

sudo netstat -tnlp | grep <:port or app>

#Examples

sudo netstat -tnlp | grep ':8989'
sudo netstat -tnlp | grep 'Radarr'