Steam telepítése
belépés
|
nyelv
简体中文 (egyszerűsített kínai)
繁體中文 (hagyományos kínai)
日本語 (japán)
한국어 (koreai)
ไทย (thai)
Български (bolgár)
Čeština (cseh)
Dansk (dán)
Deutsch (német)
English (angol)
Español - España (spanyolországi spanyol)
Español - Latinoamérica (latin-amerikai spanyol)
Ελληνικά (görög)
Français (francia)
Italiano (olasz)
Bahasa Indonesia (indonéz)
Nederlands (holland)
Norsk (norvég)
Polski (lengyel)
Português (portugáliai portugál)
Português - Brasil (brazíliai portugál)
Română (román)
Русский (orosz)
Suomi (finn)
Svenska (svéd)
Türkçe (török)
Tiếng Việt (vietnámi)
Українська (ukrán)
Fordítási probléma jelentése
It does exactly that, but i think it only works on listen servers.
If you have some magical unicorn that can enable you to do this - fine, then you also might be able to hide a servers IP from the clients. If not, you're ♥♥♥♥ out of luck.
Talking server administration in general: Yes, there's ways. haproxy, lvs, nginx, ... do this all the time, but not for reasons of "being more private". Instead it's for loadbalancing, data protection (aka not showing the server who's actually coming in) and high availability. I doubt there's a single person with more than two brain cells in IT who thinks the server needs more privacy. Security is a different topic, but there's better ways (firewalling, DPI, IDS) than using a proxy, for two reasons:
1. Most of the time the software that is actually used by the client is the spot where breaches take place. The source engine had their fair share of issues in that regard too. Since you forward everything on purpose to the server (otherwise the connection wouldn't work), even 300 layers of proxy in front of it would help you a single time (but would make the game perform so slow you'd actually be dead before you even see you've spawned).
2. Every layer of proxy is software, and software has issues/bugs. With more software in front of your precious server, there's actually more stuff that can go south and be leveraged into a breach. That's why in Linux there's something called the KISS principle - Keep It Simple, Stupid. Do exactly what you have to do to make your stuff work reliably, nothing more, and make it easy to comprehend.
In the end, from my professional IT background and also in terms of teaching that stuff, I'll give you the advice: If you have no clue what you're doing, don't host a server. ESPECIALLY not in your home. If you want to learn how to do it, use some cheap VM at some hoster and try with standard software first, aka not some docker container oddjob but something out of your distros repository, and try to understand why and how things work there (apache2/nginx are a good place to start, mariadb/postgres/slapd is not). That helps you a lot more than downloading some bloated container, spawning it and have it do magic stuff to your network until it works somehow. Dig into systemd-networkd, try to find out what nftables does and how (not firewalld, I'm talking groundwork not fancy abstraction layer) and read something about network protocols. Yes, it's a very tedious trip, but trust me on that one: If you know that afterwards, people do pay you hefty sums just to call you employee...
P.S. hosting something like cs from my home, I would be concerned too. This is literally the situation where "I can find you by IP" is not just a kids rambling
Instead of buying a proxy, buy a server and host there directly.
ok
Good point, if its really cheaper for you. I just happen to know provider who's proxies are like 0.1 euro per address
If you are playing with some known group or people, who's willing to use ZeroTier, that might be an option for you then:
https://chatgpt.com/share/0866aa58-720a-4d82-b4b9-1ac28b7bca84
Yes, you can use ZeroTier to create a virtual network and host your CS2 server without spending any money. Here's a step-by-step guide to help you set up ZeroTier and configure your CS2 server:
### Step-by-Step Guide to Using ZeroTier
1. **Sign Up and Install ZeroTier:**
- Go to the [ZeroTier website](https://www.zerotier.com/) and sign up for a free account.
- Download and install the ZeroTier client on your server machine.
2. **Create a ZeroTier Network:**
- Log in to the ZeroTier Central (https://my.zerotier.com/).
- Click on "Create a Network."
- Note the Network ID, which you'll use to join the network.
3. **Configure the ZeroTier Network:**
- Click on the newly created network to configure it.
- Under the "Members" tab, you’ll see a list of devices connected to your network. At this stage, it should be empty.
4. **Join the Network:**
- On your server machine, open the ZeroTier client.
- Click "Join Network" and enter the Network ID from step 2.
- The server machine will appear in the "Members" list on ZeroTier Central. Approve the device by clicking the checkbox.
5. **Install ZeroTier on Player Machines:**
- Each player needs to install the ZeroTier client on their machine.
- Players should join the same network using the Network ID.
- Approve each player’s device in ZeroTier Central.
6. **Configure the CS2 Server:**
- Once all devices are approved, each machine will have a virtual IP address assigned by ZeroTier.
- Find the virtual IP address of your server machine from the ZeroTier client or ZeroTier Central.
7. **Run the CS2 Server:**
- Start your CS2 server on the server machine.
- Players should connect to the CS2 server using the virtual IP address assigned by ZeroTier.
### Example Commands for Starting the Server
- On the server machine, navigate to the directory where your CS2 server files are located.
- Run the server using the virtual IP address:
```sh
srcds.exe -game csgo -console -usercon +game_type 0 +game_mode 1 +map de_dust2 -ip [ZeroTier Virtual IP]
```
### Connecting to the Server
- Players should connect to the server using the virtual IP address of the server machine:
```sh
connect [ZeroTier Virtual IP]
```
### Additional Tips
- Ensure your firewall allows traffic on the necessary ports for the game server.
- Regularly update both ZeroTier and your game server to ensure compatibility and security.
By following these steps, you can set up and host a CS2 server using ZeroTier without spending any money, while effectively masking your real IP address.