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.
|
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. |
||||
|
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.
|
Add rules to explicitly allow loopback interface traffic:
Here is an example of nice config. |
|||
|
|
|
Try adding the following rules before your rule:
Since iptables looks for rules sequentially, the ALLOW rules will be called instead of the REJECT one, for loopback packets. |
||||
|
|