Bugs item #1050899, was opened at 2004-10-20 10:30 Message generated for change (Comment added) made by starksm You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=376685&aid=1050899&group_id=22866
Category: Clustering Group: v3.2 >Status: Closed >Resolution: Invalid Priority: 5 Submitted By: Scott M Stark (starksm) Assigned to: Nobody/Anonymous (nobody) Summary: jgroups not using bind address specification Initial Comment: jgroups is not using the jboss bind address as its default for its UDP ports. Running a minimal cluster config with a bind address specified: run.sh -c min-cluster -b 192.168.3.120 shows UDP ports 45566 and 57114 using the IN_ADDR interface rather than the expected 192.168.3.120: java.exe:3396 TCP 192.168.3.120:1098 0.0.0.0:0 LISTENING java.exe:3396 TCP 192.168.3.120:1099 0.0.0.0:0 LISTENING java.exe:3396 UDP 0.0.0.0:45566 *:* java.exe:3396 UDP 0.0.0.0:57114 *:* java.exe:3396 UDP 192.168.3.120:57113 *:* Using the bind_addr attribute in the cluster-service.xml also has no affect. ---------------------------------------------------------------------- >Comment By: Scott M Stark (starksm) Date: 2004-10-20 14:33 Message: Logged In: YES user_id=175228 This is an artifact of the jdk1.3 MulticastSocket interface. Only jdk 1.4 has an ability to set the bind address of the socket. The jboss bind address is passed to the MulticastSocket via the setInterface(InetAddress) method so mcast traffic is sent to the desired interface even though the socket does not appear to be bound to it. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=376685&aid=1050899&group_id=22866 ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
