Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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.