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 입력 폐기**

관련 정보