[jboss-user] [Management, JMX/JBoss] - Re: Enable remote SNMP access?
djkrite
do-not-reply at jboss.com
Fri Nov 21 10:30:36 EST 2008
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
More information about the jboss-user
mailing list