Changes between Version 17 and Version 18 of TipAndDoc/network/iptables


Ignore:
Timestamp:
Jul 7, 2009 7:47:18 PM (15 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/network/iptables

    v17 v18  
    144144 * source:/trunk/iptables 
    145145 
    146  == [source:/trunk/iptables/setnapt.sh setnapt.sh] == 
     146 == ~~[source:/trunk/iptables/setnapt.sh setnapt.sh]~~ == 
     147 * replaced to [#setmasq.sh] 
    147148 * for Ubuntu 
    148149 * nat table(のPOSTROUTINGチェイン)を添削するため、[#setfilter]の[13]以降と排他利用 
     
    168169 * sudo update-rc.d setfilter start 39 S . 
    169170   * /etc/rcS.d/S39setfilter -> ../init.d/setfilter 
     171 
     172 == [source:/trunk/iptables/setmasq.sh setmasq.sh] == 
     173 for Ubuntu 
     174 * WAN deviceに対してIP MASQUERADEを設定 
     175 * ex) /etc/network/interfaces 
     176{{{ 
     177auto eth1 
     178iface eth1 inet dhcp 
     179        post-up /root/setroute.sh 
     180        post-up /root/setlan2wan.sh eth0 
     181        post-up /root/setmasq.sh 
     182        pre-down /root/setlan2wan.sh eth0 
     183        post-down /root/setroute.sh 
     184        post-down /root/setmasq.sh 
     185}}} 
     186 
     187 == [source:/trunk/iptables/setlan2wan.sh setlan2wan.sh] == 
     188 * #4への対処をするスクリプト 
     189 * 設定例は[#setmasq.sh]を参照 
    170190 
    171191 == [source:/trunk/iptables/ufw ufw/] == 
     
    223243   * REDIRECTのみ設定し、[changeset:13#file1 INPUT chain]側は設定しない(つまり22/tcp,443/tcpはDROPしたまま、8443/tcp, 8000/tcpのみListenしたい)のは不可 
    224244   * DNATを用いて、loopback等必ずACCEPTされるデバイスに転送する方法が使えるかも(未検証) see also [http://www.atmarkit.co.jp/flinux/rensai/iptables02/iptables02d.html @IT:natテーブルを利用したLinuxルータの作成(4/6)] 
     245 === [17] === 
     246 * [#setmasq.sh]を使うようになったので、nat.rulesからIP MASQUERADEを削除