diff --git a/src/conf.c b/src/conf.c index 612b51ef6..a38fd4c47 100644 --- a/src/conf.c +++ b/src/conf.c @@ -203,7 +203,7 @@ static const struct confparams frontend_cfg_params[] = { TOK_MULTICAST_DATA_ADDR, "multicast_data_addr", "Multicast data UDP address", "Multicast data UDP address for publishing rig data and state, value of 0.0.0.0 disables multicast data publishing", - "224.0.0.1", RIG_CONF_STRING, + "0.0.0.0", RIG_CONF_STRING, }, { TOK_MULTICAST_DATA_PORT, "multicast_data_port", "Multicast data UDP port", @@ -213,7 +213,7 @@ static const struct confparams frontend_cfg_params[] = { TOK_MULTICAST_CMD_ADDR, "multicast_cmd_addr", "Multicast command server UDP address", "Multicast command UDP address for sending commands to rig, value of 0.0.0.0 disables multicast command server", - "224.0.0.2", RIG_CONF_STRING, + "0.0.0.0", RIG_CONF_STRING, }, { TOK_MULTICAST_CMD_PORT, "multicast_cmd_port", "Multicast command server UDP port", diff --git a/src/multicast.c b/src/multicast.c index 68cdd4803..9ef201e12 100644 --- a/src/multicast.c +++ b/src/multicast.c @@ -17,7 +17,8 @@ #include "network.h" #include "sprintflst.h" -#define RIG_MULTICAST_ADDR "224.0.0.1" +// Multicast off by default +#define RIG_MULTICAST_ADDR "0.0.0.0" #define RIG_MULTICAST_PORT 4532 #if 0