Displaying 1 result from an estimated 1 matches for "real_mysql_server".
2013 May 31
0
[Bug 804] localhost port forwarding to a different host with DNAT
...k interface, due to
special handling within Linux. This is not a netfilter bug, just the way Linux
works.
However, what you want to achieve is trivially done simply by using an unused
RFC 1918 address. One example:
iptables -t nat -A OUTPUT -d 10.10.10.10 -p tcp --dport 3306 \
-j DNAT --to real_mysql_server:3306
Then all your localhost processes would connect to 10.10.10.10:3306 instead of
localhost:3306.
Closing.
--
Configure bugmail: https://bugzilla.netfilter.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.