I had issues with this, it did not work for me unless I manually specified the IP, wildcard using * and + did not work. Not sure why. Rather than binding to specific IP's, which I found another problem with (see 2nd part), I decided to just find a shortcut for launching the program on startup with admin privileges.
I followed this guide to make a task.
http://www.sevenforums.com/tutorials/11 ... reate.html
However in the "Edit Action" field, I had it start the following programs"
Program/Script:
Code: Select all
%windir%\System32\cmd.exe Code: Select all
/c start "CumulusMX" "/c start "CumulusMX" "C:\CumulusMXDist\CumulusMX.exe""Code: Select all
C:\CumulusMXDistNow the 2nd part.
It seems CumulusMX decides what IP/Interface to bind to on it's own. For example it bind to my local LAN 10.0.0.87 IP. When I access it in a browser, via http://10.0.0.87:8998/ it loads fine. However, it does not load when I type http://127.0.0.1:8998/ as the URL. This may be a issue for several reasons. Example 1: It may choose the wrong interface on Multi-Interface systems. 2. IP changes. My system boots up faster than the switches I have it plugged into (Cisco SG300). In the event of a power outage, that adapter would show disconnected. In this case, Cumulus binds to 127.0.0.1, and is inaccessible remotely from my LAN IP.
A possible Fix would be a setting perhaps to tell it what IP's to bind to. A list, perhaps where you specify the IP's, ex. 127.0.0.1, 10.0.0.87, and a "all" and "auto" setting somewhere in the config file. Just me $.02.