# Operation System/Linux2019. 1. 6. 13:54CentOS7 초기 설정

CentOS7버전을 최소설치하고나면 ifconfig명령어를 쓸수가 없다 ㅠ 이럴때는 아래와 같이 net-tools를 설치하면 해결됩니다. # yum install net-tools 7버전때부터는 기본방화벽이 firewall으로 되어있습니다. 아직 익숙치 않기때문에 iptables으로 변경할라면 아래와 같이 진행하면됩니다. firewall서비스 중지# systemctl stop firewalld.service 부팅시 자동으로 실행되지 않게하기# systemctl mask firewalld.service iptables 설치 및 실행# yum -y install iptables-services# systemctl start iptables.service 부팅시 자동실행#systemctl enable ipta..

image