SELinux 비활성, iptables 설치, net-tools 설치
시작하기전에 update랑 upgrade 해주는 것이 좋다.
1. SELinux 비활성화
SELinux는 리눅스의 강력한 보안 모듈
실습을 진행하기 위해 비활성화하고 진행
vi /etc/sysconfig/selinux
reboot로 재실행
2. net-tools 설치
ifconfig 명령어를 찾을 수 없다고 나온다.
이제 자신의 ip가 잘 나온다.
3. iptables 설치
CentOs 7 부터 기본방화벽으로 firewalld가 제공된다.
Iptables가 더 익숙하기 때문에 firewalld를 끄고 iptables 이용
먼저 firewalld를 중지 시킨다.
#> systemctl stop firewalld
재부팅시 firewalld를 자동으로 실행되지 않게 한다.
#> systemctl mask firewalld
이제 iptables를 설치한다.
#> yum install -y iptables
설치한 iptables를 실행한다.
#> systemctl start iptables
부팅시 자동으로 iptables가 실행되게 한다.
#> systemctl enable iptables
방화벽 정책 설정 파일의 경로
#> /etc/sysconfig/iptables
★추가★
#> yum install -y iptables를 이용해 설치한 후
#> rpm -qa | grep iptables로 패키지 설치로 확인을 한다.
iptables.services가 없는 경우라면
#> yum install -y iptables-services
'리눅스' 카테고리의 다른 글
Apache + MariaDB + PHP (3) (0) | 2023.09.06 |
---|---|
Apache + MariaDB + PHP (2) (0) | 2023.09.06 |
Apache + MariaDB + PHP (1) (0) | 2023.09.06 |
FTP 서버 구축 및 보안 설정 (1) | 2023.09.06 |
록키 리눅스 설치방법 (0) | 2023.07.04 |