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
Is your feature request related to a problem? Please describe.
Currently one lb rule only serve one port, and I noticed that a macro definition in the code limit total lb rules number to be 1024.
Describe the solution you'd like
Support for port range or all ports forwarding in one single lb rule. For example, loxicmd create lb 88.88.88.1 --tcp=3000-5000:12345 --endpoints=192.168.70.3:1 --mode=fullnat
Describe alternatives you've considered
nftables is considered, configration likes below:
chain prerouting {
type nat hook prerouting priority dstnat; policy accept;
iifname eth0 ip daddr 88.88.88.1 tcp dport 3000-5000 dnat ip 192.168.70.3:12345
}
Additional context
N/A
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently one lb rule only serve one port, and I noticed that a macro definition in the code limit total lb rules number to be 1024.
Describe the solution you'd like
Support for port range or all ports forwarding in one single lb rule. For example, loxicmd create lb 88.88.88.1 --tcp=3000-5000:12345 --endpoints=192.168.70.3:1 --mode=fullnat
Describe alternatives you've considered
nftables is considered, configration likes below:
chain prerouting {
type nat hook prerouting priority dstnat; policy accept;
iifname eth0 ip daddr 88.88.88.1 tcp dport 3000-5000 dnat ip 192.168.70.3:12345
}
Additional context
N/A
The text was updated successfully, but these errors were encountered: