All of lore.kernel.org
 help / color / mirror / Atom feed
From: Julian Hagenauer <chaosbringer@gmx.de>
To: netfilter@lists.netfilter.org
Subject: Redirecting traffic from a non-existent IP
Date: Mon, 05 Jun 2006 13:27:32 +0200	[thread overview]
Message-ID: <44841524.1070505@gmx.de> (raw)

Hi,
i am running Linux 2.6.11.12-xen0 (binary distribution).
I want to route all Traffic destined to 192.168.1.5 to 192.168.1.3.
192.168.1.5 is a non-existent IP/host, 192.168.1.3 is a Xen-VM running 
on localhost, so 192.168.1.5 should act as a kind of alias for 
192.168.1.3 and be accessible from localhost.
The following modules are loaded:

Module                  Size  Used by
iptable_filter          2432  0 
iptable_nat            19932  1 
ip_conntrack           38712  1 iptable_nat
ip_tables              20352  2 iptable_filter,iptable_nat
intel_agp              20124  1 
agpgart                28968  1 intel_agp


I wrote and ran the following script on localhost:

#!/bin/bash
echo 1 > /proc/sys/net/ipv4/ip_forward
MAP_FROM=192.168.1.5 # virtuelle IP
MAP_TO=192.168.1.3 # IP einer VM
iptables -t nat -F
echo "Mappe $MAP_FROM nach $MAP_TO..."
iptables -t nat -A PREROUTING -d $MAP_FROM -j DNAT --to $MAP_TO
echo "Aktuelle Nat-Regeln:"
iptables -t nat -L

But ping 192.168.1.5 or ssh 192.168.1.5 still does not work.
I have no clue what's wrong.

Sincerely,
Julian



             reply	other threads:[~2006-06-05 11:27 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-05 11:27 Julian Hagenauer [this message]
2006-06-05 11:44 ` Redirecting traffic from a non-existent IP Pascal Hambourg
  -- strict thread matches above, loose matches on Subject: below --
2006-06-05 11:34 Sietse van Zanen
2006-06-05 13:16 Eliot, Wireless and Server Administrator, Great Lakes Internet
2006-06-05 13:45 Eliot, Wireless and Server Administrator, Great Lakes Internet

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=44841524.1070505@gmx.de \
    --to=chaosbringer@gmx.de \
    --cc=netfilter@lists.netfilter.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.