[Answer]-Django cant connect from outside (virtualbox + centos64 +python +django)

1👍

You have a misconfiguration in iptables. Try removing (or moving forward after “ACCEPTs”)

-A INPUT -j REJECT -reject-with icmp-host-prohibited

In IPTABLES the order matters, if you put a reject that match before an ACCEPT, it always will take the reject.

👤esauro

Leave a comment