반응형
# tcp, udp port 등록
sudo firewall-cmd --zone=public --permanent --add-port=8080/tcp
sudo firewall-cmd --zone=public --permanent --add-port=8080/udp
# tcp, udp port 삭제
sudo firewall-cmd --zone=public --permanent --remove-port=8080/tcp
sudo firewall-cmd --zone=public --permanent --remove-port=8080/udp
# 범위 지정
sudo firewall-cmd --zone=public --permanent --add-port=9000-10000/udp
# 서비스로 등록
sudo firewall-cmd --zone=public --permanent --add-service=http
# 방화벽 정보 갱신
sudo firewall-cmd --reload
# 등록된 포트 정보 확인
sudo firewall-cmd --zone=public --permanent --list-ports
반응형
'Operating System > Linux' 카테고리의 다른 글
linux find : search multiful files. (0) | 2022.06.02 |
---|---|
Git 최신 버전 설치하기 (ubuntu 20.04/CentOS 7) (0) | 2022.05.28 |
[apt command] dpdk: error processing package linux-firmware (0) | 2022.05.17 |
[CentOS] Error message, This system is not registered with an entitlement server. (0) | 2022.05.11 |
Shell Script 실행 시에 root 권한 확인 (0) | 2020.07.14 |
kernel source version check (0) | 2019.09.03 |
ffmpeg install (Ubuntu 14.04) (0) | 2014.07.22 |
ubuntu 11.04 root 자동 로그인 설정 하기.. (0) | 2011.07.14 |
ubuntu 10.10에 tftpd 서비스 설치 (0) | 2010.12.16 |
xorg.conf 해상도 관련 설정... (0) | 2009.05.13 |