[SOLVED] Not attempting to generate keys | FreeBSD 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: [SOLVED] Not attempting to generate keys | FreeBSD server (/showthread.php?tid=4821) |
Not attempting to generate keys | FreeBSD server - Pricetx - 03-16-2014 I have installed the Xonotic server via the ports system on FreeBSD. For the most part, the server works fine, and all 32 slots were filled last night and I had no real issues. However, I have noticed that I don't have a public or private key for the server. I believe this is used for the AES network traffic encryption, and maybe possibly also for stats submission? Below is an extract from the server startup process on FreeBSD: Code: execing autoexec/empty.cfg And here is an extract from the same part of the startup process on debian: Code: execing autoexec/empty.cfg I noticed that the FreeBSD port doesn't install the public key (key_0.d0pk), so I tried renaming it on the debian install to see if that caused the same output. It did however show one key difference: Code: execing autoexec.cfg Debian actually gives an error when it can't find a public key, so this leads me to believe that FreeBSD does not actually even attempt to generate keys, as it's not even looking for a public key. Does anybody know what the issue is here, and what I might do to fix it? I have just realised another difference between my FreeBSD Xonotic and my Debian xonotic. On Debian, if I type "crypto_keygen" into the server console, I get the following output: Code: usage: If I type the same on FreeBSD, I get: Code: Unknown command "crypto_keygen" It's also worth noting that the port does install libd0* into the lib dir. RE: Not attempting to generate keys | FreeBSD server - Mr. Bougo - 03-16-2014 The Xonotic command responsible for key generation is run from quake.rc and is the following: Code: crypto_keygen 0 http://ca.xonotic.org/?ca=0&key= That command is pretty verbose, so I'm surprised to see no output from it in your first log extract. Try to get back to the initial situation (move the public key from your Debian install out of the way). Can you see further down the log if there's anything? If not, can you try running the command I gave above manually? EDIT: Ah, I did not see your edit. I'll have a look and double-post in this thread so that you may get a notification. RE: Not attempting to generate keys | FreeBSD server - Mr. Bougo - 03-16-2014 So, yeah. d0_blind_id is required for this to work obviously. It's statically linked in git builds and dynamically in releases. I suppose your Debian package is a release build, I don't know if d0_blind_id is included in the same package or separately. Do you have libd0_blind_id.so ? EDIT: Uh, wait. Why did it load the library successfully when you moved the public key into your install? I don't get it. EDIT: Okay, I get it. The "no public key" came from Debian when you removed the pubkey. RE: Not attempting to generate keys | FreeBSD server - Pricetx - 03-16-2014 Okay, with the help of Mr. Bougo in IRC I have successfully solved the issue. It turns out that the port was not install the crypto library. I will contact the port maintainer to see if it's possible to integrate this into the Xonotic port (not sure if that will be possible due to legal reasons) or whether we could have a standalone port for the library. Instructions to install crypto library on FreeBSD: Code: - install "automake-wrapper-20131203" if you haven't got it already A link to the full conversation can be found here: http://slexy.org/view/s21jsfxqm4 |