Problem with domain join after deployement
-
@benjamind There is no MAC address set for this host? Might explain the problem as well?!?!
-
@Sebastian-Roth I have edited the image to erase the MAC address but it is configured.
-
Hi,
Does anyone , please, got an idea to solve my problem ?
Thanks.
-
@benjamind Do you see this exact same error (``) on all your machines or is it just one single one?
Please check if you have a file
C:\Program Files (x86)\FOG\token.dat
. I suppose you have that as the logs you posted don’t mention creating it. Please go to Windows service management, stop FOGService, rename the mentionedtoken.dat
, start FOGService and keep an eye on the log again. Please post the full log starting from when you renamed thattoken.dat
again. -
@Sebastian-Roth Thanks for your return.
What error are you talking about exactly?
All our machines can’t join the domain automatically after a deployment by Fog. Do you talk about a specific error message from the fog.log ?
I’m doing a deployment again now and I’ll check if I have the file when it will be finished. I’ll keep you update.
-
@Sebastian-Roth Here is the fog.log starting from when i renamed the token.dat.
-
@benjamind Sorry, missed to paste the error message last time:
Middleware::Response Failed to decrypt data
Here is the fog.log starting from when i renamed the token.dat.
Did you restart the FOG Service or the whole machine after renaming? Just want to make sure.
Can you please run the following commands on your FOG server and post output here [1]:
openssl x509 -dates -noout -in /var/www/fog/management/other/ssl/srvpublic.crt openssl x509 -dates -noout -in /var/www/fog/management/other/ca.cert.pem
-
@Sebastian-Roth I have restarted the FOG service.
root@fog:~# openssl x509 -dates -noout -in /var/www/fog/management/other/ssl/srvpublic.crt notBefore=Sep 3 09:07:28 2018 GMT notAfter=Aug 31 09:07:28 2028 GMT root@fog:~# openssl x509 -dates -noout -in /var/www/fog/management/other/ca.cert.pem notBefore=Nov 24 09:57:37 2016 GMT notAfter=Nov 22 09:57:37 2026 GMT
-
@benjamind I am wondering, why is the server cert roughly two years younger than the CA? Did you update that server cert by intention last September?
-
@Sebastian-Roth Sorry, i give you the return on the commands form an other FOG server. Here is the return form the concerned server :
root@fog-dev:~# openssl x509 -dates -noout -in /var/www/fog/management/other/ssl/srvpublic.crt
notBefore=Mar 14 07:16:32 2019 GMT
notAfter=Mar 11 07:16:32 2029 GMT
root@fog-dev:~# openssl x509 -dates -noout -in /var/www/fog/management/other/ca.cert.pem
notBefore=Apr 5 13:49:36 2018 GMT
notAfter=Apr 2 13:49:36 2028 GMTThe srvprublic.crt date corresponds to our last FOG update from 1.5.0 to 1.5.5 and the ca.cert.pem should corresponds to the first installation of the server.
Is it a normal behaviour ?
-
@benjamind Which command line options did you choose when updating?
@Tom-Elliott Any ideas??
-
@Sebastian-Roth Here is is the commands i used to update our server :
cd /root/fogproject/
git pull
cd bin/
./installfog.sh -
@benjamind Sorry, my fault. I went down the wrong road. CA cert should not be renewed (unless you specify so using command line options) but the server cert is renewed on FOG updates.
We might need to take a look into your database to see if there are tokens pending that you don’t see in the host settings.
-
@Sebastian-Roth What do you want to verify precisely on the database ?
-
@benjamind Try
SELECT hostID,hostName,hostSecToken FROM hosts WHERE hostName LIKE '%PC2409M%';
-
MariaDB [fog]> SELECT hostID,hostName,hostSecToken FROM hosts WHERE hostName LIKE ‘%PC2409M%’;
+------------+-------------------+-------------------------+ | hostID | hostName | hostSecToken | +------------+-------------------+-------------------------+ | 61 | PC2409M | | +------------+-------------------+-------------------------+
-
Hi @Sebastian-Roth,
Is the result of the command indicative ?
-
@benjamind Sorry for the deplay. Have been on travels over the weekend. The output is showing an empty sectoken field. So we need to look at other possibilites why this is going wrong.
We have not had much requests from people with the error message “Failed to decrypt data” lately. All the old ones were due to an issue in the FOG server as far as I know but that shouldn’t be the case with FOG version 1.5.5 (which we see you have in the logs).
Do you see that same error message on several (or all) of your clients?
Could you please install tcpdump on your FOG server. Then stop the FOGService on your client run
tcpdump -w fog-client.pcap host x.x.x.x and port 80
on your FOG server and start the FOGService on the client.Put in the client PC’s IP address instead of x.x.x.x and just leave the command for 30 seconds - then stop it with Ctrl+c and upload the resulting fog-client.pcap file to an online drive and post a link here. We should see the HTTP communication between FOG server and your client in that file. Hopefully we can figure out what’s going on.
-
@Sebastian-Roth We have the same error message on other clients. Here is the fog.log fog.log of an other client.
Thnak you for your help.
-
@benjamind Ohhh, I was on the wrong track again. I expected the error message to be from the fog-client source code but looking at the PCAP file I figured that the FOG server is actually sending this (same) message to the fog-client. I am still not really sure why the FOG server is failing with that error but at least the picture is a little different now. The fog-client encrypts the data and sends it over to the server and the server is unable to decrypt it.
Please run the following commands on your FOG server just to make sure certificate and private key match:
openssl x509 -noout -modulus -in /var/www/fog/management/other/ssl/srvpublic.crt | openssl md5 openssl rsa -noout -modulus -in /opt/fog/snapins/ssl/.srvprivate.key | openssl md5