linux下一般利用ifconfig獲取網路介面裝置資訊,其輸入如下所示:
eth0
link encap:ethernet
hwaddr 52:54:00:fa:9e:91
inet addr:192.168.129.46
bcast:192.168.129.255
mask:255.255.255.0
inet6 addr: fe80::5054:ff:fefa:9e91/64 scope:link
up broadcast running multicast
mtu:1500
metric:1
rx packets:96430 errors:0 dropped:0 overruns:0 frame:0
tx packets:10274 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
rx bytes:19839082 (18.9 mib)
tx bytes:733188 (716.0 kib)
interrupt:11
lo link encap:local loopback
inet addr:127.0.0.1
mask:255.0.0.0
inet6 addr: ::1/128 scope:host
up loopback running
mtu:65536
metric:1
rx packets:16 errors:0 dropped:0 overruns:0 frame:0
tx packets:16 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
rx bytes:960 (960.0 b)
tx bytes:960 (960.0 b)
說明如下:
eth0 表示第一塊網絡卡, 其中 hwaddr 表示網絡卡的實體地址,可以看到目前這個網絡卡的實體地址(mac位址)是 52:54:00:fa:9e:91
inet addr 用來表示網絡卡的ip位址,此網絡卡的 ip位址是
192.168.129.46,廣播位址 bcast:
192.168.129.255,掩碼位址mask:255.255.255.0
lo 是 表示主機的回壞位址,這個一般是用來測試乙個網路程式,但又不想讓區域網或外網的使用者能夠檢視,只能在此台主機上執行和檢視所用的網路介面。比如 把 httpd伺服器的指定到回壞位址,在瀏覽器輸入 127.0.0.1 就能看到你所架web**了。但只是您能看得到,區域網的其它主機或使用者無從 知道。
第一行:連線型別:ethernet(乙太網)hwaddr(硬體mac位址)
第二行:網絡卡的ip位址、子網、掩碼
第三行:up(代表網絡卡開啟狀態)running(代表網絡卡的網線被接上)multicast(支援組播)mtu:1500(最大傳輸單元):1500位元組 第
四、五行:接收、傳送資料報情況統計
第七行:接收、傳送資料位元組數統計資訊。
linux下無ifconfig命令
你不是用root使用者執行此命令的吧?這樣試試看 su password 輸入root使用者口令 ifconfig 還是沒有的 用whereis命令找找看 whereis ifconfig 如果找不到,那可能你系統沒裝好 whereis ifconfig a b 只有二進位制搜尋 b dirs 定義...
linux下無ifconfig命令
你不是用root使用者執行此命令的吧?這樣試試看 su password 輸入root使用者口令 ifconfig 還是沒有的 用whereis命令找找看 whereis ifconfig 如果找不到,那可能你系統沒裝好 whereis ifconfig a b 只有二進位制搜尋 b dirs 定義...
Centos系統未找到ifconfig命令解決辦法
查詢ip位址命令 ip addr 和 ifconfig centos6.5及以下版本內部存在ifconfig命令 centos 7.0及以上內部無ifconfig命令,需要先檢視ifconfig命令包所在位址,輸入命令yum search ifconfig。找到相關安裝包yum install ne...