You can also use iptables as proxy
here is a example ps I didn't add any firewall rules but you can just google that by yourself or you can use a "ddos protected" server
Code:
#!/bin/bash
echo "Stopping firewall and allowing everyone..."
iptables -F
iptables -X
iptables -t nat -F
iptables -t nat -X
iptables -t mangle -F
iptables -t mangle -X
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
echo "Setting up the firewall"
// firewall rules here
sysctl net.ipv4.ip_forward=1
iptables -t nat -A PREROUTING -p tcp -m tcp -d #antiddosserverip# --dport 8080 -j DNAT --to-destination #emulatorserver #:#emulatorPort#
iptables -t nat -A POSTROUTING -j MASQUERADE
and @Droppy peaple doesnt have to deobfucate it you can also see it with netstat ;p
PS I don't recommed to use a proxy or adding the ip to the swf if you have a 200+ retro just buy a good dedicated server <_<
Oh and btw this is the fastest way of setting up a proxy ;p
You can also install a vpn server on it and use this server as a "router" for that you need to edit #emulatorserver # to the local VPN ip like (192.168.0.100)
The vpn methode is little bit like hamachi because you don't have to forward your ports for it and you just get the real ip's.