Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to redirect some ports on localhost, but not only on 127.0.0.1 but on all loopback addressess (for example 127.0.0.2).

When I add this rule:

-A OUTPUT -d 127.0.0.0/24 -p tcp -m tcp --dport 21 -j REDIRECT --to-ports 2121

it works only for 127.0.0.1. When I want to connect to port 21 on 127.0.0.1 I'm correctly redirected to port 2121. But when I want to connect to port 21 on 127.0.0.2 I'm not redirected. I would like to be redirected to 127.0.0.2:2121

What is going on?

share|improve this question
belong to server fault – eicto Dec 1 '12 at 15:03
REDIRECT works only on same interface where the packet arrives, if you need more use NAT – eicto Dec 1 '12 at 15:04
I do want to redirect to the same interface (just diffrent port): 127.0.0.1:21 -> 127.0.0.1:2121, 127.0.0.2:21 -> 127.0.0.2:2121. Do I need NAT for that ? – Rafał Dec 1 '12 at 16:29
no but here is no 127.0.0.2 address binded in real , i guess you need ip a a 127.0.0.2/8 dev lo to got redirect you want – eicto Dec 1 '12 at 17:14

closed as off topic by mux, Celada, Ignacio Vazquez-Abrams, Matteo, Jens Björnhager Dec 1 '12 at 20:49

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.

Browse other questions tagged or ask your own question.