One way to access a remote server's port without modifying firewall settings is to use a Secure Shell (SSH) tunnel. SSH tunnels allow you to securely forward traffic through an encrypted connection, effectively bypassing any firewalls or network restrictions.
To set up an SSH tunnel, you will need to follow these steps:
ssh user@server
Replace "user" and "server" with the appropriate values for your setup.
ssh -L 8080:localhost:80 user@server
It's worth noting that SSH tunnels are typically used for secure access to remote servers and are not meant to be used as a general-purpose VPN solution. You should carefully consider the security implications of using an SSH tunnel and whether it is appropriate for your specific needs.