centos에서 네트워크 카드를 다시 시작하는 방법: 1. centos6의 네트워크 카드 다시 시작 명령은 "service network restart"입니다. 2. centos7의 네트워크 카드 다시 시작 명령은 "systemctl restart network"입니다.
이 튜토리얼의 운영 환경: CentOS 7 시스템, Dell G3 컴퓨터.
centos에서 네트워크 카드를 다시 시작하는 방법은 무엇입니까?
1. centos6의 네트워크 카드를 다시 시작하는 방법: service network restart
service network restart
centos7的网卡重启方法:systemctl restart network
2、DNS配置文件:cat /etc/resolv.conf
设置主机和IP绑定信息:cat /etc/hosts
设置主机名:cat /etc/hostname
systemctl restart network
2 . DNS 구성 파일: cat /etc/resolv.conf호스트 및 IP 바인딩 정보 설정: cat /etc/hosts
호스트 이름 설정: cat /etc/hostname<p></p>
<p></p>3. nmtui 텍스트 상자를 사용하여 IP를 수정할 수 있습니다<p></p>
<p></p>4. 방화벽을 끄고 컴퓨터를 켤 때 시작되지 않도록 설정하세요<p></p>View 방화벽 상태:<p><pre class="brush:php;toolbar:false">systemctl status firewalld.service</pre></p>Off:<p><pre class="brush:php;toolbar:false">systemctl stop firewalld</pre></p>On:<p><pre class="brush:js;toolbar:false">systemctl start firewalld</pre></p>컴퓨터 켜기 자동 종료: <p><pre class="brush:js;toolbar:false">systemctl disable firewalld</pre></p> 부팅 시 자동 시작: <p><pre class="brush:js;toolbar:false">systemctl enable firewalld</pre><a href="https://www.php.cn/course/list/33.html" target="_blank"> 시작 시 시작 여부 확인: </a><pre class="brush:php;toolbar:false">chkconfig --list|grep network(RHLE6)</pre></p>5. Selinux 종료🎜🎜임시 종료: 🎜<pre class="brush:php;toolbar:false">_getenforce
Enforcing
_setenforce 0
setenforce:SELinux is disabled</pre>🎜영구 종료: 🎜<pre class="brush:php;toolbar:false">_vim /etc/selinux/config</pre>🎜관련 권장 사항: "🎜Linux 비디오 튜토리얼 🎜》🎜
위 내용은 CentOS에서 네트워크 카드를 다시 시작하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!