Medium, Β onΒ  Linux,Β Networking Submissions: 36/143

In this challenge, you'll need to reproduce a trick that Docker uses to publish a service running inside a container to one of the host's ports. However, to make the technique more obvious, no containers will be used - only plain Linux processes.

There is an HTTP service listening on port 5000 of a dummy 192.168.0.2 interface. Your task is to make this service available on 0.0.0.0:6000 of the host. You need to accomplish it without changing the service configuration or restarting it, and you're also not allowed to launch any additional processes that would be listening on host's 6000 port.

Hint 1 πŸ’‘

Port forwarding a.k.a. port mapping or, in Docker's parlance, port publishing is a form of Network Address Translation (NAT) that redirects packets from one address to another. As is often the case, there are multiple ways to accomplish it, so the fact that you're not allowed to launch any additional listening processes doesn't mean you're out of options.

Port forwarding
Hint 2 πŸ’‘

The clue is hidden in the challenge's tags. πŸ˜‰

Hint 3 πŸ’‘

One of the iptables tables is called nat (Network Address Translation). Port forwarding is a form of NAT, so now you know which table to use.

Hint 4 πŸ’‘

Unfortunately, the most obvious iptables -t nat -A PREROUTING -p tcp --dport 6000 -j REDIRECT --to-port 5000 rule won't work. With the REDIRECT target, you're only allowed to change the destination port. It would be sufficient if the service was listening on 0.0.0.0:5000, but in this challenge, it's bound to a specific IP address.

Hint 5 πŸ’‘

Since it's the destination address that needs to be changed, the target you're looking for is DNAT (Destination NAT).

Hint 6 πŸ’‘

First checks pass, but the last one fails (or vice versa)? There is a subtle difference between the traffic that originates from the host itself and the one that comes from the outside. Local and external traffic follow different paths in the network stack. You'll need to use the OUTPUT chain for the former and PREROUTING for the latter.

iptables chains

Categories:Β Linux,Β Networking
Discussion:Β  Discord

Level up your server-side game β€” Join 6,600 engineers who receive insightful learning materials straight to their inbox