Portless is an application that allows you to port forward ports without actually port forwarding them.
We are going to be using a relay server which needs to have a public IP and allow clients from outside the network to connect.
- Head to releases and download the relay server app.
- Run the app. If on Linux, run
chmod +x ./relay && ./relay(PORTS YOU WANT TO ALLOW) 2.1. example:./relay 80 8080 25565 25566 6767 #(haha, guys i'm funny right) - The relay is now running at port 36008.
Make sure to port forward 36008 and the port you want to make accessible on the relay!
- Head to releases and download the client app.
- Run the app using the terminal. If on Linux, run
chmod +x ./client && ./client {PORT YOU WANT TO SHARE} {RELAY IP ADDRESS} - The app should succesfully connect and the service hosted on your client should be accessible under the relay's ip address and port.