CentOS7安裝沒有ip問題

很少說,直接上問題linux

centos7虛擬機安裝以後使用 ip addr發現沒有ip地址,具體的解決方式以下centos

1.關閉防火牆網絡

    1.SELinux(內置的防火牆)ssh連不上機器多數是由於這個,很少說,直接上關閉方法
        查詢selinux狀態
        getenforce
        暫時中止selinxu
        setenforce 0
        永久關閉selinux
        vi /etc/selinux/conf  
        #     enforcing - SELinux security policy is enforced.          開啓
        #     permissive - SELinux prints warnings instead of enforcing.        臨時關閉
        #     disabled - No SELinux policy is loaded.        永久關閉 

        修改以下行
        SELINUX=disabled
        重啓機器,使得selinx永久關閉
        service firewalld restart
        
    2.軟件的防火牆
        systemctl status firewalld #查看防火牆狀態
        systemctl stop firewalld    #關閉防火牆
        systemctl disable firewalld#關閉防火牆開機啓動
        systemctl is-enabled firewalld.service#檢查防火牆是否啓動
        
    3查看防火牆狀態
        iptables -L

2.若是ping不一樣,可能就是網卡沒有啓動ssh

查看ens33網卡的配置: vi /etc/sysconfig/network-scripts/ifcfg-ens33   

從配置中能夠發現 CentOS 7 默認是不啓動網卡的(ONBOOT=no)
改爲:yes
重啓網絡服務
sudo service network restart 
相關文章
相關標籤/搜索