Search

웹서버

대분류
보안
소분류
방화벽
유형
Linux
웹 보안
네트워크
최종 편집 일시
2024/10/27 16:24
생성 일시
2023/04/07 00:05
15 more properties

인터페이스 이름 변경

nmcli device show : 디바이스 확인
nmcli connection show : 커넥션값
nmcli connection modify ‘enp0s3' ifname eth0 ipv4.method manual ipv4.address 192.168.200.200/24 ipv4.gateway 192.168.200.100 ipv4.dns 8.8.8.8
nmcli connection down 'enp0s3'
nmcli connection up 'enp0s3'

vi init_accept.sh

#!/bin/sh systemctl stop firewalld.service (동적방화벽 중지) iptables -F iptables -t nat -F iptables -P INPUT ACCEPT iptables -P OUTPUT ACCEPT iptables -P FORWARD ACCEPT systemctl start httpd systemctl start sshd echo “Done”
Shell
복사
chmod 755 init.sh
./init.sh

웹서버 설치 및 index 파일 수정

dnf install httpd
vi /var/www/html/index.html