From: Volkan YAZICI <yazicivo@ttmail.com>
To: netfilter@vger.kernel.org
Subject: Traffic Mirroring for Debugging
Date: Fri, 22 Aug 2008 10:57:13 +0300 [thread overview]
Message-ID: <87vdxtwkh2.fsf@alamut.mobiliz.com.tr> (raw)
Hi,
In one of our servers, I want to debug a network server daemon. The
problem is I don't have luxury for a downtime or to iterrupt related
server's network traffic. Current routing structure looks like below.
VPN Switch (192.168.1.1) -> Server Machine (192.168.1.2)
To debug the related server daemon, I planned to redirect the network
traffic to a second sandbox server. Planned routing structure is:
VPN Switch (192.168.1.1)
|
+-> Temporary Linux Machine (192.168.1.10)
||
|+-> Server Machine (192.168.1.2)
+--> Sandbox Server Machine (192.168.1.20)
For test purposes, I configured a client to connect to 192.168.1.10
(instead of actual server, 192.168.1.2). But I couldn't manage to
redirect incoming traffic of 192.168.1.10 to 192.168.1.2 and
192.168.2.20 machines. How can I get such a mirrored redirection?
Furthermore, I first considered using DNAT of iptables, but learnt that
it doesn't support multiple destinations without load-balancing. Anyway,
I wanted to give it a try for just a single machine. I connected to 1.10
machine and typed below iptables command:
# iptables -t nat -A PREROUTING -d 192.168.1.10 -j DNAT --to-destination 192.168.1.20
# iptables -L -n -t nat
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
DNAT 0 -- 0.0.0.0/0 192.168.1.10 to:192.168.1.20
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
And started a netcat listener on 1.20 machine:
# nc -l -p 2310
Then tried to connect to the started nc listener from 1.10 machine:
# nc -vvv 192.168.1.10 2310
192.168.1.10: inverse host lookup failed: Unknown host
(UNKNOWN) [192.168.1.10] 2310 (?) : Connection refused
sent 0, rcvd 0
Gosh! Even couldn't manage to make DNAT for a single address work
properly. Any helps will be really really appreciated.
Regards.
next reply other threads:[~2008-08-22 7:57 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-22 7:57 Volkan YAZICI [this message]
2008-08-23 3:03 ` Traffic Mirroring for Debugging Grant Taylor
2008-08-23 6:36 ` Volkan YAZICI
2008-08-23 7:10 ` Eray Aslan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87vdxtwkh2.fsf@alamut.mobiliz.com.tr \
--to=yazicivo@ttmail.com \
--cc=netfilter@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox