I was able to get this to work with iptables and some redirecting:
| #!/bin/sh | IPT="/sbin/iptables" | INT="eth0" | $IPT -F | $IPT -F INPUT | $IPT -F OUTPUT | $IPT -F FORWARD | $IPT -F -t mangle | $IPT -F -t nat | $IPT -X | $IPT -P INPUT ACCEPT | $IPT -P OUTPUT ACCEPT | $IPT -P FORWARD ACCEPT | $IPT -t nat -A OUTPUT -p udp -d 192.168.1.1 --dport 1161 -j REDIRECT --to-port 1161 | I also removed the 2nd manager attribute listing in the managers.xml file. TK View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4191302#4191302 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4191302 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
