Xonotic Forums
How fast is your server? - Printable Version

+- Xonotic Forums (https://forums.xonotic.org)
+-- Forum: Support (https://forums.xonotic.org/forumdisplay.php?fid=3)
+--- Forum: Xonotic - Server Administration (https://forums.xonotic.org/forumdisplay.php?fid=16)
+--- Thread: How fast is your server? (/showthread.php?tid=340)

Pages: 1 2


How fast is your server? - divVerent - 04-25-2010

NOTE: this is NOT for players, ONLY for server admins. People who do not host a game server PLEASE IGNORE THIS AND DO NOT VOTE IN THE POLL.

To participate in this poll, you must be hosting a Nexuiz server, or willing to host a Xonotic server in the future.

Do the following command on your Linux shell of your server:

Code:
openssl speed rsa1024

That will output some stuff that ends with:

Code:
| sign verify sign/s verify/s | rsa 1024 bits 0.001052s 0.000048s 950.2 21045.7

What I need, is the number at sign/s. Please answer the poll with the range in which the value is on your server.

Background: I am implementing player authentication, and the cryptography involved may put some load on the server. I need to know how fast our target server machines actually are, to tune this.


RE: How fast is your server? - FruitieX - 04-25-2010

Code:
| sign verify sign/s verify/s |rsa 1024 bits 0.004327s 0.000182s 231.1 5480.7
box is running 4 dedicated servers when this command was run


RE: How fast is your server? - dyin - 04-25-2010

Since the server stopped working due to some hardware issue, these values are only a rough estimate on very similar hardware (same CPU, same OS, yet not running inside a vm nor tied to only one core -- those issues were factored in by slowing down the real result by a factor of 3)

Code:
sign verify sign/s verify/s rsa 1024 bits 0.002613s 0.000123s 382.7 8130.1



RE: How fast is your server? - divVerent - 04-25-2010

Thanks already, we seem to have a clear trend - the 220 to 470 range seems to win Tongue

so I will try to implement something that will behave well on hardware with that.

Still, continue the testing here, as that info is also useful for other later decisions. I might also later make a similar benchmark for the clients (where people would post fps numbers) Wink


RE: How fast is your server? - tZork - 04-25-2010

My server is not up often these days, its just for testing on a 'real' dedicated. The hardware is a p4 of ~3ghz The sign/s are ~310, the server dont do much else then this so its under no additional load during the test. Perhaps it would be wize to run the test while a dp-server with a few clients is running?


RE: How fast is your server? - divVerent - 04-25-2010

No, the program tries to compensate for background load by only counting CPU time. So it does not matter if it is run with or without background load.


RE: How fast is your server? - mand1nga - 04-25-2010

Code:
sign verify sign/s verify/s rsa 1024 bits 0.002217s 0.000105s 451.1 9500.0



RE: How fast is your server? - lopho - 04-25-2010

Code:
. sign verify sign/s verify/s rsa 1024 bits 0.003773s 0.000157s 265.1 6370.5

update, got my self a 2nd server:

Code:
. sign verify sign/s verify/s rsa 1024 bits 0.001395s 0.000061s 716.6 16311.5



RE: How fast is your server? - Taximus - 04-25-2010

I'm getting this:
Code:
| sign verify sign/s verify/s |rsa 1024 bits 0.003610s 0.000152s 277.0 6572.8

Another vote for 220 to 470


RE: How fast is your server? - CuBe0wL - 11-18-2010

DCC:

rsa 1024 bits 0.001140s 0.000056s 876.8 17875.4


RE: How fast is your server? - Dokujisan - 11-18-2010

Code:
sign verify sign/s verify/s rsa 1024 bits 0.000574s 0.000031s 1742.8 32631.0

Another virtual server (from another host) that I use
Code:
sign verify sign/s verify/s rsa 1024 bits 0.001967s 0.000085s 508.5 11813.4



RE: How fast is your server? - nilyt - 11-19-2010

two debian servers

Code:
Doing 1024 bit private rsa's for 10s: 12634 1024 bit private RSA's in 10.00s Doing 1024 bit public rsa's for 10s: 220543 1024 bit public RSA's in 9.99s OpenSSL 0.9.8o 01 Jun 2010 built on: Thu Aug 26 17:00:49 UTC 2010 options:bn(64,64) md2(int) rc4(ptr,char) des(idx,cisc,16,int) aes(partial) blowfish(ptr2) compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -m64 -DL_ENDIAN -DTERMIO -O3 -Wa,--noexecstack -g -Wall -DMD32_REG_T=int -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM available timing options: TIMES TIMEB HZ=100 [sysconf value] timing function used: times sign verify sign/s verify/s rsa 1024 bits 0.000792s 0.000045s 1263.4 22076.4

Code:
Doing 1024 bit private rsa's for 10s: 14855 1024 bit private RSA's in 9.54s Doing 1024 bit public rsa's for 10s: 285840 1024 bit public RSA's in 9.97s OpenSSL 0.9.8o 01 Jun 2010 built on: Thu Aug 26 17:00:49 UTC 2010 options:bn(64,64) md2(int) rc4(ptr,char) des(idx,cisc,16,int) aes(partial) blowfish(ptr2) compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -m64 -DL_ENDIAN -DTERMIO -O3 -Wa,--noexecstack -g -Wall -DMD32_REG_T=int -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM available timing options: TIMES TIMEB HZ=100 [sysconf value] timing function used: times sign verify sign/s verify/s rsa 1024 bits 0.000642s 0.000035s 1557.1 28670.0



RE: How fast is your server? - Samual - 12-28-2010

I already had 2 Xonotic dedicated servers running whilst running the command, but well:

Code:
sign verify sign/s verify/s rsa 1024 bits 0.002015s 0.000086s 496.2 11578.2



RE: How fast is your server? - esteel - 12-29-2010

On DCC server:
sign verify sign/s verify/s
rsa 1024 bits 0.001140s 0.000055s 877.0 18092.8


On PlanetXonotic.de:
sign verify sign/s verify/s
rsa 1024 bits 0.001244s 0.000052s 803.9 19309.4


RE: How fast is your server? - kazay - 01-01-2011

Code:
sign verify sign/s verify/s rsa 1024 bits 0.000829s 0.000040s 1206.7 25066.7



RE: How fast is your server? - JayWalker - 01-21-2011

Code:
| sign verify sign/s verify/s |rsa 1024 bits 0.003164s 0.000143s 316.0 7016.7



RE: How fast is your server? - Ling - 01-21-2011

Code:
| sign verify sign/s verify/s | rsa 1024 bits 0.000679s 0.000037s 1472.2 26823.4



RE: How fast is your server? - Janhouse - 02-24-2011

sign/s verify/s
1247.3 24021.2


RE: How fast is your server? - chooksta - 02-24-2011

mines faster than all of yours put together.

because mines red.

its that simple.

:^
divverent , also sorry mate , i had to do this joke , your cool and i know you will have a rofl/lol for a bit.

if i made 1 pearson smile , then ill take the ban Smile

pardon me sir

:^


RE: How fast is your server? - lda17h - 02-24-2011

New server. shirkhan.dyndns.org. It's a bit faster than affenbande Big Grin


sign verify sign/s verify/s
rsa 1024 bits 0.000517s 0.000029s 1933.3 34565.7


RE: How fast is your server? - _-=MealstroM=-_ - 04-22-2011

sign verify sign/s verify/s
rsa 1024 bits 0.000724s 0.000039s 1381.5 25408.2


RE: How fast is your server? - It'sMe - 06-01-2011

Code:
| sign verify sign/s verify/s | rsa 1024 bits 0.000615s 0.000037s 1624.9 27054.1



RE: How fast is your server? - EoD - 08-01-2011

On my beautiful sparc box I get 25.7.

Code:
Doing 1024 bit private rsa's for 10s: 258 1024 bit private RSA's in 10.02s Doing 1024 bit public rsa's for 10s: 4967 1024 bit public RSA's in 9.98s OpenSSL 1.0.0c 2 Dec 2010 built on: Wed Dec 15 21:56:23 CET 2010 options:bn(64,32) rc4(ptr,char) des(idx,cisc,16,long) aes(partial) blowfish(ptr) compiler: sparc-unknown-linux-gnu-gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DB_ENDIAN -DTERMIO -Wall -DBN_DIV2W -O2 -mcpu=ultrasparc -mtune=ultrasparc -mvis -pipe -fno-strict-aliasing -Wa,--noexecstack sign verify sign/s verify/s rsa 1024 bits 0.038837s 0.002009s 25.7 497.7



RE: How fast is your server? - unknownnf - 08-15-2011

Code:
Doing 1024 bit private rsa's for 10s: 18407 1024 bit private RSA's in 10.00s Doing 1024 bit public rsa's for 10s: 328830 1024 bit public RSA's in 10.00s OpenSSL 0.9.8k 25 Mar 2009 built on: Thu Feb 10 01:45:33 UTC 2011 options:bn(64,64) md2(int) rc4(ptr,char) des(idx,cisc,16,int) aes(partial) blowfish(ptr2) compiler: cc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -m64 -DL_ENDIAN -DTERMIO -O3 -Wa,--noexecstack -g -Wall -DMD32_REG_T=int -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM available timing options: TIMES TIMEB HZ=100 [sysconf value] timing function used: times sign verify sign/s verify/s rsa 1024 bits 0.000543s 0.000030s 1840.7 32883.0



RE: How fast is your server? - LukeLC - 10-24-2011

Code:
______________sign______verify______sign/s__verify/s rsa 1024 bits 0.000356s 0.000019s 2805.5 52480.9

Looks like I win Big Grin