解決centos 網路無法連線問題

2021-06-27 19:07:57 字數 732 閱讀 3611

ifconfig 沒有eth0或者service network restart 報錯:device eth0 does not seem to be present

步驟1:

刪除/etc/sysconfig/network-scripts/ifcfg-eth0

刪除/etc/udev/rules.d/70-persistent-net.rules重啟

步驟2:

新建ifcfg-eth0

vi /etc/sysconfig/network-scripts/ifcfg-eth0

type=ethernet       #網絡卡型別

device=eth0         #網絡卡介面名稱

onboot=yes          #系統啟動時是否自動載入

bootproto=static    #啟用位址協議 --static:靜態協議 --bootp協議 --dhcp協議

ipaddr=192.168.1.11      #網絡卡ip位址

netmask=255.255.255.0    #網絡卡網路位址

gateway=192.168.1.1      #網絡卡閘道器位址

dns1=8.8.8.8       #網絡卡dns位址

hwaddr=00:0c:29:13:5d:74 #網絡卡裝置mac位址

步驟4:

ifconfig eth0 up

service network restart

CentOS無法遠端連線

ping www.baidu.com如果超時,則可能是防火牆未關閉,關閉防火牆 systemctl stop firewalld systemctl disable firewalld 檢視windows是否能ping ping www.baidu.com如果超時,則在控制面板中關閉防火牆 重新開啟...

CentOS7無法連線網路(網絡卡設定)

編輯檔案 vim etc sysconfig network scripts ifcfg ens33 或vim etc sysconfig network scripts ifcfg p8p1type ethernet proxy method none browser only no bootpr...

linux網路設定及解決無法連線網路

linux上設定網路需要設定 ip 子網掩碼 閘道器 dns等。設定正確才可訪問網路,否則會出現無法聯網的問題。下面會寫出如何設定ip等資訊,如何處理路由表等操作。網絡卡配置一般都會放置在 etc sysconfig network scripts 目錄下,我們可以cd到該目錄下看看有哪些東西 在這...