CentOS 7부터는 iptables 이외에 firewalld 방화벽 기능이 추가되었습니다.
iptables를 해제해도 차단이 계속된다면 firewalld를 비활성화하여 확인할 수 있습니다.
방화벽 비활성화
systemctl stop firewalld
systemctl stop iptables
systemctl stop ip6tables
방화벽 영구 비활성화(재부팅 시 방화벽 실행 안 함)
systemctl disable firewalld
systemctl disable iptables
systemctl disable ip6tables