• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

Server hosting and IP help

vampire622003

New Member
Joined
Mar 6, 2007
Messages
135 (0.02/day)
Location
Austin
Processor AMD Phenom X4 @ 2.5GHZ
Motherboard AsRock
Memory 5GB DDR2-800MHz @ 891MHz
Video Card(s) ATI HD 4850 GDDR3 512MB w/ ZEROTherm GX815 Cooler
Storage 2X Western Digital SATAII 320GB (RAID 0)
Display(s) Acer 17" LCD Model AL1716
Audio Device(s) Sound Blaster Audigy 2 ZS
Power Supply ORION 585Watt PSU
Software Windows 7 x64
I am trying to host a Counter-Strike Source server from a wirelessly connected server through my router, but instead of having my external IP which is 24.xx.xxx.xxx, it shows the IP the router gave the server which is, 192.xxx.x.xxx. How can I assign my external IP to my wirelessly connected server?
 
You will need to have your router forward whatever port your CSS server is running on.

I haven't run CSS before, but other posts say it's 27015 (default).
 
Yea i did that. when I run the server it says its running on, 192.xxx.x.xxx:27015.
 
Right, because that is the IP of the server on your internal network. Outside it (should) looks like your 24.xx.xxx.xxx address.
 
Yeah, there's nothing you can do about your local networked components seeing the local IP address of the system. You can still tell your buddies to connect to [YOURIP:PORT] and it will (or should) work.
 
alright you guys, thank you all.
 
There is a command line switch to "bind" it to an IP.... i forget if its needed. ALso i beleave there needs to be a couple other ports forwarded so that the server will show up in the steam master server list.
 
There is a command line switch to "bind" it to an IP.... i forget if its needed. ALso i beleave there needs to be a couple other ports forwarded so that the server will show up in the steam master server list.
You cant bind it to an IP address that isnt avaiable on that NIC.

Windows and linux server both have slightly differnt command line options, I will however guess your a windows user.

So in your short cut to the HLDS program you will want this:
Code:
D:\CSS\srcds.exe -game cstrike -console +map de_dust2 +mp_dynamicpricing 0 -tickrate 100 -pingboost 3 -autoupdate +maxplayers 12

Or some thing simular

You must also have server.cfg stored in:
Code:
**HLDS FOLDER**\cstrike\cfg

Here is an example of mine:
Code:
// server name
hostname "BuffyLan CS Server"

// rcon passsword
rcon_password "***Enter Password here***"

// server cvars
mp_friendlyfire 1
mp_footsteps 1
mp_autoteambalance 0
mp_autokick 0
mp_flashlight 1
mp_tkpunish 0
mp_forcecamera 0
sv_alltalk 1
sv_pausable 0
sv_cheats 0
sv_consistency 0
sv_allowupload 1
sv_allowdownload 1
sv_maxspeed 320
mp_limitteams 2
mp_hostagepenalty 2
sv_voiceenable 1
mp_allowspectators 1
mp_timelimit 30
mp_chattime 0
sv_timeout 65

// round specific cvars
mp_freezetime 3
mp_roundtime 5
mp_startmoney 1337
mp_c4timer 40
mp_fraglimit 0
mp_maxrounds 0
mp_winlimit 0
mp_playerid 0
mp_spawnprotectiontime 5

// bandwidth rates/settings
sv_minrate 20000
sv_maxrate 30000
decalfrequency 10
sv_maxupdaterate 100
sv_minupdaterate 80

// server logging
log off
sv_logbans 0
sv_logecho 1
sv_logfile 1
sv_log_onefile 0

// operation
sv_lan 0
sv_region 3

// execute ban files
exec banned_user.cfg
exec banned_ip.cfg 

//Buffy Settings
fps_max 1000

More help here: http://www.srcds.com/

If you have any question you want to ask about this please fire away, I used to help admin the UK leg of the world cyber games.
 
You cant bind it to an IP address that isnt avaiable on that NIC.

Windows and linux server both have slightly differnt command line options, I will however guess your a windows user.

So in your short cut to the HLDS program you will want this:
Code:
D:\CSS\srcds.exe -game cstrike -console +map de_dust2 +mp_dynamicpricing 0 -tickrate 100 -pingboost 3 -autoupdate +maxplayers 12

Or some thing simular

You must also have server.cfg stored in:
Code:
**HLDS FOLDER**\cstrike\cfg

Here is an example of mine:
Code:
// server name
hostname "BuffyLan CS Server"

// rcon passsword
rcon_password "***Enter Password here***"

// server cvars
mp_friendlyfire 1
mp_footsteps 1
mp_autoteambalance 0
mp_autokick 0
mp_flashlight 1
mp_tkpunish 0
mp_forcecamera 0
sv_alltalk 1
sv_pausable 0
sv_cheats 0
sv_consistency 0
sv_allowupload 1
sv_allowdownload 1
sv_maxspeed 320
mp_limitteams 2
mp_hostagepenalty 2
sv_voiceenable 1
mp_allowspectators 1
mp_timelimit 30
mp_chattime 0
sv_timeout 65

// round specific cvars
mp_freezetime 3
mp_roundtime 5
mp_startmoney 1337
mp_c4timer 40
mp_fraglimit 0
mp_maxrounds 0
mp_winlimit 0
mp_playerid 0
mp_spawnprotectiontime 5

// bandwidth rates/settings
sv_minrate 20000
sv_maxrate 30000
decalfrequency 10
sv_maxupdaterate 100
sv_minupdaterate 80

// server logging
log off
sv_logbans 0
sv_logecho 1
sv_logfile 1
sv_log_onefile 0

// operation
sv_lan 0
sv_region 3

// execute ban files
exec banned_user.cfg
exec banned_ip.cfg 

//Buffy Settings
fps_max 1000

More help here: http://www.srcds.com/

If you have any question you want to ask about this please fire away, I used to help admin the UK leg of the world cyber games.

Obviously you cant bind it to an IP that has not been assigned to that machine.

does the mediaplayer trick still work to boost the fps of the server?
 
Well with a proper tuned kernel, you can easily get 1000FPS on the server which is nice :)
Windows I am getting around 600FPS
 
Back
Top