CentOS 방화벽 관련 명령어
방화벽 설치
# yum install firewalld
방화벽 시작
# systemctl start firewalld
# systemctl enable firewalld
포트 추가
# firewall-cmd --permanent --zone=public --add-port=[포트번호]/[프로토콜]
-ex)# firewall-cmd --permanent --zone=public --add-port=8080/tcp
# firewall-cmd --reload -> 포트 추가 후에는 reload 해 줄 것.
포트 목록 확인
# firewall-cmd --permanent --list-all
방화벽 상태 확인
$ systemctl status firewalld
'Linux' 카테고리의 다른 글
리눅스 운영체제 구조 (0) | 2021.12.07 |
---|---|
CentOS 7 & Window hostname 영구변경 (0) | 2019.04.11 |
CentOS 7에서 enp0s3을 eth0로 변경 (0) | 2019.03.28 |