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?
ip a a 127.0.0.2/8 dev loto got redirect you want – eicto Dec 1 '12 at 17:14