Kong R8000 with Multiple External IP

4 posts / 0 new
Last post
coronafltest
coronafltest's picture
Kong R8000 with Multiple External IP

I'm having 5 static external IP assgined today. I've done some research on different configuration options however they seem to be a little outdated.

What would be the best method to assign external IP to various Xbox One around the house?

If I do one to one nat will it operate the same as if the external IP was assigned to the device, plus it will also be on the local network?

One of the Xbox wired and two of them are on Wifi. I want the Netgear to be in control as I will implement QOS for gaming. 

I'm currently on the latest Kong Mod, I updated it through CLI and it's running great. Very high speeds on Wifi I love it.

da_Beast
da_Beast's picture
Sounds like it will work.

Sounds like it will work.  Try it and post back.

coronafltest
coronafltest's picture
I ended up using one to one

I ended up using one to one Nat on 3 Xbox ones, and 1 other device. Everything works well, all Xbox have open nat if I check external ip within a game they all show a different external static ip the way I configured it. I've been using this config for a couple of months.

coronafltest
coronafltest's picture
This my startup script,

This my startup script, everything has been working great and couldn't be happier.  I simpley entered these comands in my startup script and firewall script and rebooted and everything was working. 

 

ifconfig vlan2:1 50.xx.xx.59 netmask 255.255.255.248 broadcast 50.xx.xx.63
ifconfig vlan2:2 50.xx.xx.60 netmask 255.255.255.248 broadcast 50.xx.xx.63
ifconfig vlan2:3 50.xx.xx.61 netmask 255.255.255.248 broadcast 50.xx.xx.63
ifconfig vlan2:3 50.xx.xx.62 netmask 255.255.255.248 broadcast 50.xx.xx.63
 

 

And my firewall script

 

iptables -t nat -I PREROUTING -i vlan2 -d 50.xx.xx.59 -j DNAT --to-destination 192.168.1.3
iptables -t nat -I POSTROUTING -o vlan2 -s 192.168.1.3 -j SNAT --to-source 50.xx.xx.59
iptables -I FORWARD -p all -i vlan2 -d 192.168.1.3 -j ACCEPT
iptables -t nat -I PREROUTING -i vlan2 -d 50.xx.xx.60 -j DNAT --to-destination 192.168.1.4
iptables -t nat -I POSTROUTING -o vlan2 -s 192.168.1.4 -j SNAT --to-source 50.xx.xx.60
iptables -I FORWARD -p all -i vlan2 -d 192.168.1.4 -j ACCEPT
iptables -t nat -I PREROUTING -i vlan2 -d 50.xx.xx.61 -j DNAT --to-destination 192.168.1.5
iptables -t nat -I POSTROUTING -o vlan2 -s 192.168.1.5 -j SNAT --to-source 50.xx.xx.61
iptables -I FORWARD -p all -i vlan2 -d 192.168.1.5 -j ACCEPT
iptables -t nat -I PREROUTING -i vlan2 -d 50.xx.xx.62 -j DNAT --to-destination 192.168.1.6
iptables -t nat -I POSTROUTING -o vlan2 -s 192.168.1.6 -j SNAT --to-source 50.xx.xx.62
iptables -I FORWARD -p all -i vlan2 -d 192.168.1.6 -j ACCEPT