Just started folding on a headless PC running Ubuntu 18.04.4 and client version 7.5.1. It works, finishes work units and all that but I'm having trouble remotely connecting to the client. The PC I'm connecting from (windows 10 machine) is connected to the same router as the linux one, both are in the 192.168.1 subnet, can ping eachoter, move files over SMB and so on. After looking around some tutorials on the subject, I added the following to config.xml and restarted the service (and the pc just in case after the n:th try).
Code: Select all
<!-- HTTP Server -->
<allow v='127.0.0.1 192.168.1.0/24'/>
<!-- Remote Command Server -->
<command-allow v='127.0.0.1 192.168.1.0/24'/>
<command-allow-no-pass v='127.0.0.1 192.168.1.0/24'/>
<password v='setiauth'/>
<!-- Web Server -->
<web-allow v='127.0.0.1 192.168.1.0/24'/>
After some searching, I figured out that FAHClient uses telnet to do it's thing, and that can be used to debug these problems. Telnet doesn't work for me, I just get the usual "could not open connection to the host" error. I think the issue is on the linux host side as according to Wireshark, the telnet queries are leaving the Windows PC as they should (I added exception to the Windows firewall). It appears that port 36330 is open on the Linux PC though, I get:
Code: Select all
jopj@capsize:/var/lib/fahclient$ sudo lsof -i:36330
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
FAHClient 1141 fahclient 9u IPv4 21127 0t0 TCP *:36330 (LISTEN)
Both PCs are connected with wired Ethernet to that common router, and the Linux one has only a single network interface just in case that could cause issues.