Hello,<br><br>I've seen discussion of this question before but I have not been able to actually enable the keepalive setting in rabbitmq.conf. I've configured the setting and&nbsp; modified the linux settings. Can someone look at these settings? What I am i doing wrong? I've also looked at http://www.erlang.org/doc/man/inet.html and attempted many variations on setting the keepalive setting via the raw call also.<br><br>Regards,<br>Daniel <br><br>rabbitmq-env.conf:<br>RABBITMQ_NODE_IP_ADDRESS=192.168.122.71<br><br>rabbitmq.conf<br>[<br>&nbsp;&nbsp;&nbsp; {rabbit, [{tcp_listen_options, [binary,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {packet, raw},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {reuseaddr, true},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {backlog, 128},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {nodelay, true},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {exit_on_close, false},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {keepalive, true}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ]<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }]<br>&nbsp;&nbsp;&nbsp; }<br>].<br><br>Linux Settings:<br>root@testu1:/root# cat /proc/sys/net/ipv4/tcp_keepalive_time<br>10<br>root@testu1:/root# cat /proc/sys/net/ipv4/tcp_keepalive_intvl <br>10<br>root@testu1:/root# cat /proc/sys/net/ipv4/tcp_keepalive_probes <br>2<br><br><br>script to stop traffic:<br>/sbin/iptables -F<br>/sbin/iptables -P INPUT DROP<br>/sbin/iptables -P OUTPUT DROP<br>/sbin/iptables -P FORWARD DROP<br>/sbin/iptables -A INPUT -i lo -j ACCEPT<br>/sbin/iptables -A OUTPUT -o lo -j ACCEPT<br><br><br><br><br>