[
https://issues.jboss.org/browse/AS7-3993?page=com.atlassian.jira.plugin.s...
]
Ondrej Zizka commented on AS7-3993:
-----------------------------------
Forgot to mention - the properties in that pull request are:
{code:xml}
<!-- IP address defaults. -->
<node0>127.0.0.1</node0>
<node1>127.0.0.1</node1>
<mcast>230.0.0.4</mcast> <!-- Default multicast address. -->
<mcast.jgroupsDiag>224.0.75.75</mcast.jgroupsDiag> <!-- for
<socket-binding name="jgroups-diagnostics" .../> -->
<mcast.modcluster >224.0.1.105</mcast.modcluster> <!-- for
<socket-binding name="modcluster" .../> -->
...
<!-- IPv6. AS7-2228. -->
<profile>
<id>ts.ipv6</id>
<activation><property><name>ipv6</name></property></activation>
<properties>
<jvm.args.ip>-Djava.net.preferIPv4Stack=false
-Djava.net.preferIPv6Addresses=true</jvm.args.ip>
<!-- Override IPv4 defaults from the top. -->
<node0>::1</node0>
<node1>::1</node1>
<mcast >ff01::1</mcast> <!-- ff01::1 is
IPv6 Node-Local scope mcast addr. -->
<mcast.jgroupsDiag>ff01::2</mcast.jgroupsDiag>
<mcast.modcluster >ff01::3</mcast.modcluster>
</properties>
</profile>
{code}
Fix up generation of IPv6-ready configs for IPv6 testing
--------------------------------------------------------
Key: AS7-3993
URL:
https://issues.jboss.org/browse/AS7-3993
Project: Application Server 7
Issue Type: Bug
Components: Test Suite
Affects Versions: 7.1.0.Final
Reporter: Richard Achmatowicz
Assignee: Ondrej Zizka
Priority: Critical
Fix For: 7.1.1.Final
The testsuite uses a combination of:
- the ant script clustering-build.xml, with target build-clustering-udp
- the ant script common-targets.xml, with target ts.config-as.ip-with-multicast and
- the XSLT script changeIAddresses.xsl
to set up IPv6 addresses for testing multi-node tests.
There are several problems:
- the XSLT script is broken and does not change the multicast addresses
- a number of multicast addresses are not receiving IPv6 defaults/overrides; in
particular, we have the following required overrides:
UDP JGroups stack multicast requirements:
-- socket-binding jgroups-udp: no IPv6 multicast address assigned, due to broken
changeIPAddresses.xml
-- socket-binding jgroups-diagnostics: no IPv6 multicast address assigned, due to no
parameter passed in ts.config-as.ip-with-multicast
TCP JGroups stack multicast-requirements:
-- socket-binding jgroups-mping: no IPv6 multicast address assigned, due to no parameter
passed in ts.config-as.ip-with-multicast
-- socket-binding jgroups-diagnostics: no IPv6 multicast address assigned, due to no
parameter passed in ts.config-as.ip-with-multicast
mosdcluster multicast-requirements:
-- socket-binding modcluster: no IPv6 multicast address assigned, due to no parameter
passed in ts.config-as.ip-with-multicast
This results in server configurations which are not correctly configured for testing
against IPv6 addresses.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira