Hi Grazzy, The wastesrv build from the sourcecode is a little bit crippled. It does not support networknames. That part of the code is missing in the svrmain.cpp code. Look for: if (g_config->ReadInt("scanonstartup",1)) doDatabaseRescan(); And below it, add: { char *buf=g_config->ReadString("networkname",""); if (buf[0]) { SHAify m; debug_printf("Using networkname=%s\n", buf); m.add((unsigned char *)buf,strlen(buf)); m.final(g_networkhash); m.reset(); g_use_networkhash=1; } else { memset(g_networkhash,0,sizeof(g_networkhash)); g_use_networkhash=0; } } This way it's resembles the main.cpp code, which is used by the windows client. Post it online for everybody to know. Just mention my nick (MrPork), but please leave my e-mail off. Cheers, MrPork