What you need to do is edit the file /etc/sysconfig/iptables on the RedHat server system and add the following line<br><br>-A INPUT -m state --state NEW -m tcp -p tcp --dport 5672 -j ACCEPT<br><br>Here is a snippet of my /etc/sysconfig/iptables<br><br>-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT<br>-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT<br>-A INPUT -m state --state NEW -m tcp -p tcp --dport 5672 -j ACCEPT<br><br>dport 5672 is the well known port for amqp messages.&nbsp; After you have added the line you need to run<br><br>service iptables restart<br><br>on the RedHat system.&nbsp; This should fix the problem.&nbsp; I had the same issue when trying out the RabbitMQ tutorials.&nbsp; What I described here solved my problem.<br><br>Hope this helps.<br><br>Paolo<br><br>On Friday, March 29, 2013 3:08:44 PM UTC-7, Eric Sender wrote:<blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;">Hello,<div><br></div><div>I am setting up an enviornment where the server and client are on seperate hosts. Using wireshark, I am finding that my connection requests are being blocked by code 10:</div><div><br></div><div>Code: 10 (Host administratively prohibited)<br></div><div><br></div><div>I was wondering if anyone knows how to make sure my server is set up right to work with RabbitMQ? I am using the default ports.</div><div><br></div><div>Here is my set up:</div><div><br></div><div><ul><li>Remote server is CentOS. It is on my same subnet (its actually a guestOS on my PC)<br></li><li>I am currently running the server as Python. Just the tutorial #1 recieve.py server</li><ul><li><font face="courier new, monospace">connection = pika.BlockingConnection(pika.<wbr>ConnectionParameters(host='<wbr>localhost'))</font><br></li></ul><li>My client is my HostOS PC running Java.</li><ul><li><font face="courier new, monospace">factory.setHost("192.168.1.<wbr>124"); //x.x.x.124 is my "remote" GuestOS</font><br></li></ul><li>Everything works find through localhost, but when I try to&nbsp;separate&nbsp;the client and server, I am getting what looks like firewall issues.&nbsp;</li></ul><div><span style="line-height:17px"><br></span></div></div><div><span style="line-height:17px">So, this question may require some help from a person who uses RedHat/CentOS as their server OS, as I imagine part of the solution has to do with&nbsp;modifying&nbsp;the firewall or something in the virtual NIC card?</span></div><div><span style="line-height:17px"><br></span></div><div><span style="line-height:17px">I am posting this on the Google Groups, and I have noticed google doesn't update for every reply? Please be sure to CC my personal email just in case Google doesn't update. sender.eric (at) gmail</span></div><div><span style="line-height:17px"><br></span></div><div><span style="line-height:17px">Thanks,<br>Eric</span></div><div><br></div></blockquote><div style="display: none;" id="__af745f8f43-e961-4b88-8424-80b67790c964__"></div>