(06-11-2010, 02:02 AM)Phame Wrote: Cheers for the reply,
Basically I want to run multiple CSS servers I have 4 IP addresses.
I would perferably like to run 10 servers from each IP.
How would I go about setting this up to run them?
40 servers total? That will be quite the load, I hope you're up for it
Anyhow, it's relatively simple. You'll need to run HldsUpdateTool to download the initial CSS server, then you're going to have to copy it 39 times :S I hope you have enough hard drive space for this. I would give you a batch script for this, but I'm not very good at batch scripting, so I'm afraid someone else will have to fill that in, or you'll have to copy them yourself.
Now the... more interesting part. I think I've got the batch script down for this one, so here's what an example will look like for starting the servers:
Code:
@echo off
cd C:\srcds
srcds.exe -console -game cstrike +map ... +ip 123.456.789.012 -port 27015
srcds.exe -console -game cstrike +map ... +ip 123.456.789.012 -port 27016
srcds.exe -console -game cstrike +map ... +ip 123.456.789.012 -port 27017
...
...
...
And so on. Repeat that, increasing the port number, until you want to start putting them on the other ip. Make sure you forward all of those ports on your router(s) if necessary.
EDIT: Just thinking about it now, you
may not have to copy 39 servers. I'm only concerned about file locks that windows will place on the content. You can try only using the one server copy you download.