if i change the multicast address to something other than the default, it always still uses the default "224.1.2.3"
i'm able to confirm that's it's not respecting my custom multicast address, say "224.1.2.5" by running netstat -gn and my custom address doesn't appear there. it's as if activeMQ is just ignoring my custom setting and resorting to the default. I've even toyed w/ adding in the "multicastNetworkConnector" element within the networkConnectors element, and i can't even get the broker started w/ this in place (it fails w/ a ton of DemandForwardBridge warnings then ultimately fails to start) any help appreciated. thanks here's my config file: <broker xmlns="http://activemq.org/config/1.0" id="broker" brokerName="1" useJmx="true"> <!-- Use the following to configure how ActiveMQ is exposed in JMX --> <managementContext> <managementContext connectorPort="8080" jmxDomainName="org.apache.activemq"/> </managementContext> <persistenceAdapter> <journaledJDBC journalLogFiles="5" dataDirectory="/foo/bar"/> </persistenceAdapter> <transportConnectors> <transportConnector name="default" uri="tcp://localhost:61617" discoveryUri="multicast://224.1.2.5:6000"/> </transportConnectors> <networkConnectors> <networkConnector name="default" uri="multicast://224.1.2.5:6000"/> </networkConnectors> </broker> -- View this message in context: http://www.nabble.com/non-default-multicast-address-not-being-respected--tf3151036.html#a8736936 Sent from the ActiveMQ - User mailing list archive at Nabble.com.