linux 網路連不上備忘

2021-06-04 17:21:18 字數 1379 閱讀 3977

vi /etc/inittab 確認下 最好是3或者5

mii-tool -v eth0

檢視路由表route -a

檢視/etc/sysconfig/network-scripts/ifcfg-eth0

檢視/etc/sysconfig/network

networking=yes(表示系統是否使用網路,一般設定為yes。如果設為no,則不能使用網路,而且很多系統服務程式將無法啟動)

hostname=centos(設定本機的主機名,這裡設定的主機名要和/etc/hosts中設定的主機名對應)

gateway=192.168.1.1

檢視etc/resolv.conf

nameserver 8.8.8.8 #google網域名稱伺服器

nameserver 8.8.4.4 #google網域名稱伺服器

linux下一樣可以設定主機名。方法是修改/etc/hosts和/etc/sysconfig/network檔案.

關掉防火牆

防火牆關閉:#/etc/init.d/iptables stop

重啟:#/etc/init.d/iptables restart

狀態:#/etc/init.d/iptables status

永久關閉 chkconfig iptables off

重新啟動網路配置

# service network restart

或# /etc/init.d/network restart

去掉virbr0 (如果ifconfig有virbr0的話)

brctl show

ifconfig virbr0 down

brctl delbr virbr0

ifconfig -a 重啟

ifconfig eth0 down

ifconfig eth0 up

關閉selinux

/etc/selinux/config檔案中的selinux="" 為 disabled ,然後重啟。

如果不想重啟系統,使用命令setenforce 0

注:setenforce 1 設定selinux 成為enforcing模式

setenforce 0 設定selinux 成為permissive模式

在lilo或者grub的啟動引數中增加:selinux=0,也可以關閉selinux

動態ip獲取

dhclient -r               //release ip 釋放ip

dhclient                  //獲取ip檢視

netstat -r.

route -n

dmesg |grep eth

lspci|grep eth   

網路連不上我的修復步聚

今天早上,我起床後打算連網,可是怎麼也連不上。昨天晚上還是可以連的,首先我潛意識排出了學校問題。我感覺是自己電腦的問題,想起來了剛裝系統不久,這個系統是網上下的,自己做的啟動盤,一般有一些改首頁的木馬可以理解 可能是系統自帶的改首頁木馬導致的,有圖。木馬殺完之後,又進行了連網,可是還是連不上。於是我...

SecureCRT連不上Linux虛擬機器的一種可能

首先說下我的情況,主機是win7 64位作業系統,然後開了兩個虛擬機器,乙個是ubuntu9.10,另乙個是ubuntukylin。這其中,ubuntu9.10是直接拷別人的虛擬機器,ubuntukylin是自己安裝的。問題是,ubuntu9.10是可以用securecrt與主機相連進行遠端控制的,...

linux連不上網問題總結

最低階的錯誤沒有關閉防火牆 1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 1 檢查當前環境配置的ip...