Hello! First off, this forum and the documentation page have been immensely helpful getting me started with this project.
I’ve a custom UI running on windows (C#, WPF) that communicates with capturegrid4.17 running on a RPi4B+. The pi is running ubuntu server 20.04, with the capturegrid4 snap installed (confirmed to be running by opening CG on the windows machine, it sees pi node with cameras connected, all seems ok).
I originally had CG running locally on the windows machine for convenience, using 127.0.0.1:54543/54544 for listening/sending requests, and it seems to be working well. ZMQ/JSON has been easy to work with!
I’ve now moved onto the next phase of moving CG to be on the Pi only, with my application just communicating via the API, and I’m having trouble talking to it. I’ve triple checked my IPs (Windows is 192.168.1.30, pi is staticly set to 192.168.1.60), disabled firewalls on both devices.
On the pi, “netstat -lt” shows localhost:54543 and localhost:54544 listening when CG snap is running - which I understand to mean it is ONLY listening on those ports from itself, not opening them up to my network. I haven’t seen a configuration file of any sort for the snap, is there someway to change this from localhost only to 0.0.0.0 (any interface)?
Thanks in advance!