인터페이스 이름 변경
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