This content has been marked as final.
Show 1 reply
-
1. Re: how to configure MPING ip_ttl in wildfly
rhusar Aug 29, 2014 1:07 PM (in response to justkeys)You don't really want to configure this as command line parameter, you want it to be configured in the profile.
Here is an XML snippet to do that:
<subsystem xmlns="urn:jboss:domain:jgroups:2.0" default-stack="tcp"> <stack name="tcp"> <transport type="TCP" socket-binding="jgroups-tcp"/> <protocol type="MPING" socket-binding="jgroups-mping"/> <property name="ip_ttl">1</property> </protocol> ...