I used a program called
iptraf to figure out the fake I.P. address but you called also use
Wireshark or other similar programs.
For me, the fake I.P. address would be:
111.117.110.99
The real I.P. address could be found out by resolving heroserver.bounceme.net e.g.: host heroserver.bounceme.net
That returned
64.15.152.212 for me.
So assuming that fake I.P. address is
111.117.110.99, and the real I.P. address is
64.15.152.212, then the command to run + the options would be:
Code:
iptables -t nat -A OUTPUT -d 111.117.110.99 -j DNAT --to 64.15.152.212
Take note that you need to have superuser privileges to run it. So either login as root or run the above command with
sudo, e.g.:
Code:
sudo iptables -t nat -A OUTPUT -d 111.117.110.99 -j DNAT --to 64.15.152.212