如何檢視linux系統的網路介面

2021-03-08 21:51:51 字數 2122 閱讀 7972

1樓:小清新心萌萌噠

方法/步驟

1、進入linux,使用「 cat /etc/services 」命令,可以檢視所有服務預設的埠列表資訊。

2、使用「***stat」命令,檢視正在連線的埠【連線】列表資訊。

3、使用「nestat -a」命令,檢視所有服務埠【監聽、連線】列表資訊。

4、套接字的種類除了t(tcp)、u(udp)之外,還有w(raw)、x(unix)套接字。

5、使用" ***stat -ap"檢視所有服務埠和對應的程式名稱。

2樓:

ifconfig:檢視或配置網路介面的位址和引數add 《位址》  設定

del《位址》  刪除

down  關閉指定的網路介面

up  開啟指定的網路介面

例如:檢視第一塊網絡卡的引數

3樓:匿名使用者

使用ifconfig -a就可以檢視linux系統下網路介面的資訊

4樓:匿名使用者

沒必要非要這樣吧....

eth系列就是介面名字了....

顯示的其他介面都不是..

或者你就這樣,可以只顯示介面名字的那一行..

ifconfig|grep eth

5樓:匿名使用者

ls /sys/class/***/

ls /proc/sys/***/ipv4/conf/

在linux下怎麼檢視網路介面的速率?

6樓:匿名使用者

# ethtool eth0

settings for eth0:

supported ports: [ tp mii ]

supported link modes: 10baset/half 10baset/full

100baset/half 100baset/full

supports auto-negotiation: yes

advertised link modes: 10baset/half 10baset/full

100baset/half 100baset/full

advertised auto-negotiation: yes

speed: 10mb/s

duplex: half

port: mii

phyad: 32

transceiver: internal

auto-negotiation: on

supports wake-on: pumbg

wake-on: d

current message level: 0×00000007 (7)

link detected: yes

# ethtool -s eth0 speed 100 duplex full autoneg off

# ethtool eth0

settings for eth0:

supported ports: [ tp mii ]

supported link modes: 10baset/half 10baset/full

100baset/half 100baset/full

supports auto-negotiation: yes

advertised link modes: 10baset/half 10baset/full

100baset/half 100baset/full

advertised auto-negotiation: no

speed: 100mb/s

duplex: full

port: mii

phyad: 32

transceiver: internal

auto-negotiation: off

supports wake-on: pumbg

wake-on: d

current message level: 0×00000007 (7)

link detected: yes

前兩天在51cto 6個豆豆下的資料,挺不錯的,匿名,沒法給你。。= . =...

linux怎麼檢視當前系統版本,如何檢視linux作業系統版本

介紹怎麼檢視linux系統版本 如何檢視linux作業系統版本 介紹怎麼檢視linux系統版本 linux下怎麼檢視當前系統的版本 uname r 語 法 uname amnrsvpio help version 補充說明 uname可顯示linux主機所用的作業系統的版本 硬體的名稱等基本資訊。更...

linux下如何檢視log檔案,linux中怎樣檢視日誌

cat logfile grep 需要檢視的日期 date.logfile 然後慢慢分析date.logfile 即可 用grep來顯示某個日期的條目.具體命令自己查查 是什麼型別的?如果是應用程式產生的,可以用crontab自動進行日誌的輪轉,使日誌變成單個的小檔案。如apache squid的日...

如何檢視linux核心版本,怎麼檢視linux系統的核心版本

吉祥二進位制 方法一 命令 uname a 作用 檢視系統核心版本號及系統名稱 方法二 命令 cat proc version作用 檢視目錄 proc 下version的資訊,也可以得到當前系統的核心版本號及系統名稱 執行效果如下圖所示 補充說明 proc檔案系統,它不是普通的檔案系統,而是系統核心...