Linux Mintから、Windows Networkへiptablesを使って、ポート開けの方法。
IPTABLES="/sbin/iptables" #WINDOWS NETWORK $IPTABLES -A INPUT -p udp –sport 137:138 -j ACCEPT $IPTABLES -A INPUT -p udp –dport 137:138 -j ACCEPT $IPTABLES -A INPUT -p tcp –sport 139 -j ACCEPT $IPTABLES -A INPUT -p tcp –dport 139 -j ACCEPT $IPTABLES -A OUTPUT -p udp –sport 137:138 -j ACCEPT $IPTABLES -A OUTPUT -p udp –dport 137:138 -j ACCEPT $IPTABLES -A OUTPUT -p tcp –sport 139 -j ACCEPT $IPTABLES -A OUTPUT -p tcp –dport 139 -j ACCEPT |
で、おk。私の場合、ずーっとつながらない状態だったので、つながった時には感動しました!