OK, I have a dedicated rig that's Linux, and I'm using CGRemote to monitor it. I had this all set up and working fine, before I got CGRemote. Now I can't figure out how to set them both up to work together. Here's my old line:
./cgminer --api-groups P:switchpool:addpool:removepool:restart:* --api-listen --api-allow P:89.212.242.33 --api-port 7777 --scrypt blah blah card config blah
So, P is the leaserig group, and I've gathered that I need to make another group for CGRemote, we'll use W. So, I've got (LOCALIP in place of my local IP address, I don't want to post that):
./cgminer --api-groups P:switchpool:addpool:removepool:restart:* --api-listen --api-allow P:89.212.242.33,W:LOCALIP --api-port 7777 --scrypt blah blah card config blah
The only thing I'm confused about is the port part. Page 2 of this thread is where I got this config from, except for how to enter the port. Do I have to specify that group W uses port 4028 or no because it's a default port? How do I tell --api-port that group P uses 7777 and group W uses 4028? Or is the entry "W:LOCALIP" enough for it to accept access from that IP using the default 4028 port? Don't you have to at least define that W group in the --api-groups string?