@martial The fog-client mostly fails with Middleware::Response Invalid security token. From that I see in our code this can only happen if there is a security token set in the DB for this host (identified via MAC address but it’s always the same as you re-use the same adapter over and over).
Well let’s see if we can figure this out in the DB:
shell> mysql -u root -p
Password:
...
mysql> use fog;
...
mysql> SELECT h.hostID,h.hostName,h.hostSecToken,m.hmMAC,m.hmPrimary,m.hmPending FROM hosts h JOIN hostMAC m ON h.hostID=m.hmHostID AND m.hmMAC LIKE '%aa:bb:cc:dd:ee:ff%';
...
Use the USB nic adapter MAC address instead of aa:bb:cc:dd:ee:ff. See if you get any results.