↔️Forwarding Traffic
At the time of writing this, our Web Router supports 3 types of Forwarding Rules, we will be teaching you how to utilize these rules in runtime scenarios.
Types of Forwarding Rules:
Forward-All
Forward-Port
Forward-Bulk-Port
Forward-All
Mirror an endpoint 1:1 (one-to-one), for example:
202.181.177.177 - Rented IP
1.1.1.1 - Backend Endpoint
User <-> 202.181.177.177:22 <-> 1.1.1.1:22
User <-> 202.181.177.177:80 <-> 1.1.1.1:80
Utilizing a Forward-All rule, will allow your Rented IP to forward port-for-port.
Forward-Port
Our Forward-Port functionality allows for extreme network customization, giving the consumer the ability to forward a specific port on your Rented IP's network, to a specific port on another network, which can allow you to do things such as the following:
Setup a basic datacentre utilizing your home network, without needing to purchase extra IPs from your ISP at extortionist rates.
Create your own distributed network for load balancing etc.
Example:
202.181.177.177 - Rented IP
1.1.1.1 - Backend Endpoint
// HTTP
User <-> 202.181.177.177:80 <-> 1.1.1.1:8080
// Minecraft
User <-> 202.181.177.177:25565 <-> 1.1.1.1:25588
// FiveM
User <-> 202.181.177.177:30120 <-> 1.1.1.1:30122
Forward-Bulk-Port (Forward-Port)
Deriving from the Forward-Port rule, we have a 'BULK' version, which is intended to allow consumers the ability to forward a range of ports across their Rented IP's network to a range of ports on another network. This rule is the starting point for consumers to create advanced network infrastructure.
Example:
202.181.177.177 - Rented IP
1.1.1.1 - Backend Endpoint
202.181.177.177 ports 1-1000
1.1.1.1 ports 1-1000
// all ports 1-1000, on the Rented IP's network will now forward
// to ports 1-1000 on the Backend Endpoint's network.
202.181.177.177 ports 1-1000
1.1.1.1 ports 10000-10999
// all ports 1-1000, on the Rented IP's network will now forward
// to ports 10000-10999 on the Backend Endpoint's network.
Last updated
Was this helpful?