You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operators often have local browsers going through VPN, proxies etc. They are really interested if the "user on the command line" has access, rather than if they can visit a given site on the web.
Prototype: Linux Bourne shell script with minimal pkg adds
With something like nc installed, we can handle checking the UDP traffic as well.
The text was updated successfully, but these errors were encountered:
easye
changed the title
Script utility to check udp/tcp port access
Script utility to check public routability of udp/tcp ports
Sep 24, 2024
For the right ip "reflection" service, nc might be part of a solution, but it seems better to use some of the nicely hosted free services around. For instance
curl ifconfig.co/port/8080
will return a true/false response for the public routability of packets to 8080 locally.
The code for ifconfig.co is supposedly Open Source https://github.com/mpolden/echoip, so we could potentially modify for UDP ports, if we were willing to host somewhere.
Use Case
Operators often have local browsers going through VPN, proxies etc. They are really interested if the "user on the command line" has access, rather than if they can visit a given site on the web.
Prototype: Linux Bourne shell script with minimal pkg adds
With something like
nc
installed, we can handle checking the UDP traffic as well.The text was updated successfully, but these errors were encountered: