http://hping.org/ 방화벽 테스팅 도구 1. hping 다운로드 yum -y install wget unzip gcc wget https://github.com/antirez/hping/archive/refs/heads/master.zip unzip master.zip cd hping-master yum -y install bind-utils iptables -A INPUT -m state --state INVALID -j DROP iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT iptables -A INPUT -p tcp -m tcp --dport 80 -m state --state NEW -j ACCEPT iptables..