Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that the rule is for UDP block from host, but unfortunately it is blocking UDP for my loopback IP. Is it normal behavior of the rule.

Note: I don't want to block UDP for my loopback address.

share|improve this question
allow UDP for localhost..explicitely – Mayank Sharma Feb 7 at 7:38

closed as off topic by Mystere Man, M42, Perception, SWeko, SztupY Feb 7 at 11:27

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

Add rules to explicitly allow loopback interface traffic:

iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT

Here is an example of nice config.

share|improve this answer

Try adding the following rules before your rule:

iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT

Since iptables looks for rules sequentially, the ALLOW rules will be called instead of the REJECT one, for loopback packets.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.