Changes
Note pour NAT d'IP privée (FR)
Enjoy !
== Note pour NAT d'IP privée (FR) ==
(cyrille le 18/08/2012)
Après quelques moments de galères avec la ligne:
$iptables -t nat -A POSTROUTING -s $the_private_network -o eth0 -j SNAT --to $the_public_ip
En fait il faut mettre l'interface vmbr0 au lieu de eth0.
$iptables -t nat -A POSTROUTING -s $the_private_network -o vmbr0 -j SNAT --to $the_public_ip
Et encore mieux, ne pas mettre d'interface:
$iptables -t nat -A POSTROUTING -s $the_private_network -j SNAT --to $the_public_ip