Notice
Recent Posts
Recent Comments
Tags
- 맥 오라클설치
- 하드 마이그레이션
- XSS PHP
- 바코드 스캔하기
- javascript 유효성체크
- 강제이동
- asp.net Select
- 말줄임표시
- SSD 복사
- php 캐쉬제거
- 타임피커
- javascript 바코드스캔
- 파일업로드 체크
- jquery 바코드
- javascript redirection
- 404에러페이지
- 파일업로드 유효성체크
- ViewData
- ASP.Net Core 404
- 바코드 생성하기
- asp.net dropdownlist
- Mac Oracle
- TempData
- asp.net core Select
- 하드 윈도우 복사
- javascript 바코드 생성
- django 엑셀불러오기
- ViewBag
- jquery 바코드생성
- XSS방어
웹개발자의 기지개
Centos7 iptables 사용법 본문
방화벽 내역 확인
iptables -nL
일단 centos7의 기본 방화벽인 firewall데몬을 중지 시킨 후 재부팅시에도 올라오지 않도록 설정합니다.
# systemctl stop firewalld
# systemctl mask firewalld
iptables 를 설치합니다.(OS설치시 웹서버 구성으로 설치시 자동 설치됨)
# yum install iptables-services
iptables 서비스 데몬 재부팅시 자동 설정합니다.
# systemctl enable iptables
iptables 서비스 시작합니다.(시작/재시작/중지)
# systemctl start/restart/stop iptables
iptables 재시작합니다.
# systemctl restart iptables
vi /etc/sysconfig/selinux
SELINUX=enforcing 에서 값을 disabled로 설정
:wq 로 저장함
iptables 환경설정
vi /etc/sysconfig/iptables
22번 , 80포트가 열려있다.
참고
'리눅스서버 > Centos7' 카테고리의 다른 글
[Centos7] 새로운 일반계정 추가, httpd설치, 가상 웹호스팅 설정 , maria DB 설치 및 계정추가 (0) | 2019.10.10 |
---|---|
Centos7 포트 열려있는지 여부 확인하기 (0) | 2019.10.09 |
Centos7 vsftpd 설치 및 사용 (0) | 2019.10.09 |
Centos7 firewall 방화벽 사용하기 (0) | 2019.10.09 |
Centos7 iptables 설치 및 설정하기 (0) | 2019.10.08 |
Comments