--- home-router-howto.1.33.xml	2007-02-05 22:23:58.000000000 +0100
+++ home-router-howto.xml	2007-02-05 22:30:21.000000000 +0100
@@ -20,8 +20,8 @@
 <!-- The content of this document is released into the public domain -->
 <license/>
 
-<version>1.33</version>
-<date>2006-11-08</date>
+<version>1.34</version>
+<date>2007-01-28</date>
 
 <chapter>
 <title>Introducción</title>
@@ -558,6 +558,13 @@
 # <i>iptables -t nat -I PREROUTING -p tcp --dport 5901 -i ${WAN} -j DNAT --to 192.168.0.3:5900</i>
 <comment>Si quiere hacer VNC en 192.168.0.3, basta añadir ':1' al nombre de host del enrutador</comment>
 
+<comment>Redirección de SAMBA hacia un host interno</comment>
+# <i>iptables -t nat -I PREROUTING -p tcp --dport 135 -i ${WAN} -j DNAT --to 192.168.0.2</i>
+# <i>iptables -t nat -I PREROUTING -p tcp --dport 139 -i ${WAN} -j DNAT --to 192.168.0.2</i>
+# <i>iptables -t nat -I PREROUTING -p tcp --dport 445 -i ${WAN} -j DNAT --to 192.168.0.2</i>
+# <i>iptables -t nat -I PREROUTING -p udp --dport 137:138 -i ${WAN} -j DNAT --to 192.168.0.2</i>
+# <i>iptables -t nat -I PREROUTING -p udp --dport 445 -i ${WAN} -j DNAT --to 192.168.0.2</i>
+
 <comment>Redirección para Bittorrent</comment>
 # <i>iptables -t nat -A PREROUTING -p tcp --dport 6881:6889 -i ${WAN} -j DNAT --to 192.168.0.2</i>