IPtables関連用途

IPtables関連用途

私はLinux iptablesを自分で教えています。私はオンラインで見つけたいくつかの実験をしています。私はこの問題を解決する必要があります。私はこの問題を解決するためにVmwareを使用しています。私のWindowsマシンIPは192.168.48.129で、私の仮想マシンIPは172.17.40.100です。

このセクションに対して次の手順を実行します。

Make certain that you have iptables services enabled and running instead of Firewalld.
Modify the iptables to meet the following conditions:

            1. All outgoing traffic is allowed.
            2. Responses to any traffic the machine sends out are allowed.
            Traffic on the loopback interface is allowed.
            3. The host machine (and only the host machine) must be able to ssh to that cloning-source VM.
            4. ICMP traffic is allowed if it originated with the local network only.
            5. As this is acting as the secure basis for later machines, no other traffic should be allowed, and no response should be sent if any other traffic is received.

私の答えは次のとおりです。

**1.iptables -P 出力を許可

  1. iptables -I 出力 -j 受け入れ

  2. iptables -I 入力 -p tcp -s 192.168.48.129 --sport 22 -j 受け入れ

  3. iptables -I 入力 -p icmp -s 172.17.40.0/24 -j 承諾

  4. iptables -P 入力を破棄**

ベストアンサー1

おすすめ記事