]> git.piffa.net Git - doc/.git/commitdiff
Firewall: nat
authorroot <root@conny.andreamanni.com>
Wed, 27 May 2009 17:14:54 +0000 (19:14 +0200)
committerroot <root@conny.andreamanni.com>
Wed, 27 May 2009 17:14:54 +0000 (19:14 +0200)
source/servizi.txt

index 97e0b18476d85d7513f336e88682842b367e2f9a..3afcac2850351c4a19532c22aac83387e7d2c2fa 100644 (file)
@@ -1757,6 +1757,15 @@ Per attivare la network address translation (in questo caso un SNAT) per la rete
 
 Il *Masquerading* a differenza dello *SNAT* puro (``-j SNAT --to-source proprio_ip_pubblico ) legge l'indirizzo ip del device ``ppp0``. In questo modo se l'IP cambia automaticamente si aggiorna anche il source natting. Se avete un indirizzo IP statico assegnato al vostro gateway potete invece usare lo SNAT semplice.
 
+Altri esempi::
+       ## Change source addresses to 1.2.3.4.
+       # iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to 1.2.3.4
+
+       ## Change source addresses to 1.2.3.4, 1.2.3.5 or 1.2.3.6
+       # iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to 1.2.3.4-1.2.3.6
+
+       ## Change source addresses to 1.2.3.4, ports 1-1023
+       # iptables -t nat -A POSTROUTING -p tcp -o eth0 -j SNAT --to 1.2.3.4:1-1023
 
 Brute force
 ~~~~~~~~~~~~