Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
yes, I am going to set up a proxy. I have different IPs from different ISP. My friends' ISP is the same as computer B, so they can have a lower delay. But I have to run CS:GO server on A which has another IP.
B is the reverse proxy server.
I hope there will soon be a fix for this.
Commands:
iptables -t nat -A PREROUTING -d (FROM_IP) -j DNAT --to-destination (TO_IP)
iptables -t nat -A POSTROUTING -s (TO_IP) -j SNAT --to-source (FROM_IP)
iptables -t nat -A POSTROUTING -j MASQUERADE
echo "1" > /proc/sys/net/ipv4/ip_forward
BEWARE: Afterwards all networks are bridged, you have to control all packet flow with iptables or nftables (do not mix both!) and set NATing rules as Harryo posted previously.
I strongly recommend not doing that if you have not idea what you are doing, as it's basically killing all network related security with the smallest change possible.