Linux檢視網路資訊ifconfig

2021-09-30 15:58:37 字數 1796 閱讀 2575

無論是linux 自動安裝還是我們手工安裝,linux 都會向你詢問有關網路的問題並配置相關的軟體。這個用於配置網絡卡的基本命令就是ifconfig。

在執行ifconfig 命令後,系統將在核心表中設定必要的引數,這樣linux 就知道如何與網路上的網**信。ifconfig 命令有以下兩種格式:

※ifconfig [inte***ce]

※ifconfig inte***ce [aftype] option | address …

ifconfig 的第一種格式(或使用不帶任何引數的ifconfig 命令)可以用來檢視當前系統的網路配置情況。

在剛剛安裝完系統之後,實際上是在沒有網絡卡或者網路連線的情況下使用linux,但通過ifconfig 可以使用迴繞方式工作,使計算機認為自己工作在網路上。

現在我們執行一下ifconfig 命令,不帶引數的ifconfig 命令可以顯示當前啟動的網路介面,其輸出結果為:

[root@machine1 /sbin]#ifconfig

eth0 link encap:ethernet hwaddr 52:54:ab:dd:6f:61

inet addr:210.34.6.89 bcast:210.34.6.127 mask:255.255.255.128

up broadcast running multicast mtu:1500 metric:1

rx packets:46299 errors:0 dropped:0 overruns:0 frame:189

tx packets:3057 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:100

interrupt:5 base address:0xece0

第三行:up(代表網絡卡開啟狀態)running(代表網絡卡的網線被接上)multicast(支援組播)mtu:1500(最大傳輸單元):1500位元組

第四、五行:接收、傳送資料報情況統計

第七行:接收、傳送資料位元組數統計資訊。

lo link encap:local loopback

inet addr:127.0.0.1 mask:255.0.0.0

up loopback running mtu:3924 metric:1

rx packets:44 errors:0 dropped:0 overruns:0 frame:0

tx packets:44 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:0

其中以eth0 為首的部分是本機的乙太網卡配置引數,這裡顯示了網絡卡在下的裝置名/dev/eth0 和硬體的mac 位址52:54:ab:dd:6f:61,mac 位址是生產廠家定的,每個網絡卡擁有的唯一位址。

ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx

然後重啟,此時再用ifconfig 命令檢視一下,我們就會發現網絡卡的mac 位址已經變成xx:xx:xx:xx:xx:xx了。

後繼 常用網絡卡ip設定方法:

直接通過setup 進行設定。

配置多個網絡卡 ifconfig -a 檢視網路裝置 eth0 / eth1 / lo (迴路)。

ifconfig eth1 //裝置1

ifconfig eth1 192.168.1.10 netmask 255.255.255.0 //設定網絡卡子網及ip

man ifconfig

ifconfig --help(t002)

centost檢視網路資訊 linux檢視網路流量

在linux下怎麼看網路流量?在windows下,我們可以很方便的通過360來檢視網路流量,知道哪個程序占用的網路頻寬比較多。那在linux下怎麼看流量呢,對於web伺服器來說這是很重要的。下面這邊部落格很仔細的介紹了linux下看流量的方法 我使用了其中一些,還找了網上其他一些資料,總結如下 1....

Linux 檢視網路資訊和網路監控命令。

該命令用於檢視機器掛載的網絡卡情況。可見機器有兩個網絡卡,乙個時eth0,另乙個是本地回環虛擬網絡卡。另外,iproute2軟體包含乙個強大的網路配置工具ip,它是公升級版的ifconfig命令,提供了更多的高階功能。ping命令是用於檢測網路故障的常用命令,可以用來測試一台主機到另外一台主機的網路...

linux檢視資訊

lscpu 檢視cpu lsblk 檢視硬碟 1,檢視cpu資訊 cat proc cpuinfo 2,檢視板卡資訊 cat proc pci 3,檢視usb裝置 cat proc bus usb devices 4,檢視pci資訊 lspci 相比cat proc pci更直觀 5,檢視記憶體資訊...