centos7 부터
기존 iptables -> 변경 firewalld 로 변경됨
iptables 를 사용하려면 패키지 설치하면 사용가능
방화벽에 zone 이 존재하는데
default 값으로 public zone 이 설정되어있다.
/etc/firewalld/firewalld.conf 에서 default zone 설정 확인 가능
centos7 부터 방화벽 설정 파일이 .xml 파일로 변경 되었다.
/etc/firewalld/zones/public.xml 에서 해당 존의 설정 확인 ( default 라서 public.xml )
** 방화벽 최초 설치시의 값 **
[root@centos7 zones]# more public.xml
<?xml version="1.0" encoding="utf-8"?>
<zone>
<short>Public</short>
<description>For use in public areas. You do not trust the other computers on networks to not harm your computer. Only selected incoming connections are ac
cepted.</description>
<service name="dhcpv6-client"/>
<service name="ssh"/>
</zone>
허용하고자 하는 port 열기
# firewall-cmd --permanent --zone=public --add-port=80/tcp
확인
# cat public.xml
<?xml version="1.0" encoding="utf-8"?>
<zone>
<short>Public</short>
<description>For use in public areas. You do not trust the other computers on networks to not harm your computer. Only selected incoming connections are accepted.</description>
<service name="dhcpv6-client"/>
<service name="ssh"/>
<port protocol="tcp" port="80"/>
</zone>
리로드로 적용
# firewall-cmd --reload
** 요약 **
centos7 부터 firewalld 로 변경 ( iptables 사용가능 )
zone 별로 적용 할 수 있다. default값으로 public zone 설정
# firewall-cmd --permanent --zone=public --add-port=80/tcp <추가>
# firewall-cmd --permanent --zone=public --remove-port=80/tcp <삭제>
# cat /etc/firewalld/zones/public.xml 에서 값 확인 가능
** firewalld 켜고 / 끄기 **
# systemctl start firewalld
# systemctl enable firewalld
# systemctl stop firewalld
# systemctl disable firewalld
** 기타 확인 명령어 **
# firewall-cmd --state ( 방화벽 상태 확인 )
# firewall-cmd --get-active-zones (활성화된 zone 목록 )
# firewall-cmd --get-service (현재 존재하는 서비스 목록 )
# firewall-cmd --zone=public --list-services ( public zone 에 있는 서비스 목록 )
참조 : https://oracle-base.com/articles/linux/linux-firewall-firewalld
'Work > Linux(7.x)_centos' 카테고리의 다른 글
centos7 고정 ip 설정 (0) | 2015.07.23 |
---|---|
centos7 selinux 설정 (0) | 2015.07.23 |
centos7 사용중인 포트 확인 (0) | 2015.07.23 |
centos7 네트워크 상태 확인 명령어(2) (0) | 2015.07.23 |
centos7 hostname 변경 (0) | 2015.07.23 |