CentOS 초기 네트워크 설정에 대해 간단히 정리해 보았다. ・호스트명 설정 hostnamectl set-hostname 호스트명 ・호스트명 확인 nmcli general hostname 예) 호스트명을 hello로 했을 경우 아래와 같이 호스트명을 hello로 지정한다. hostnamectl set-hostname hello nmcli general hostname를 쳐보면 아래와 같이 hello로 호스트명이 지정된 것을 확인할 수가 있다. hello ・systemctl을 재기동시켜서 호스트명을 적용 적용이 안되었을 경우엔 아래 커멘드로 systemctl을 재기동시켜서 호스트명을 적용시킨다. systemctl restart systemd-hostnamed 디바이스의 설정이나 확인을 할 때는 nmcli..