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

2021-05-29 07:50:13 字數 2687 閱讀 2388

1樓:匿名使用者

# 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系統的網路介面

2樓:小清新心萌萌噠

方法/步驟

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

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

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

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

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

3樓:

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

del《地址》  刪除

down  關閉指定的網路介面

up  開啟指定的網路介面

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

4樓:匿名使用者

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

5樓:匿名使用者

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

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

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

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

ifconfig|grep eth

6樓:匿名使用者

ls /sys/class/***/

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

linux下用什麼命令可以檢視網路介面的資訊

7樓:雪v歌

要檢視開放這些埠的具體程序和使用者名稱,可以通過***stat命令進行簡單查詢:專

***stat命令各個引數說明如下:

-t : 指明顯示

屬tcp埠

-u : 指明顯示udp埠

-l : 僅顯示監聽套接字(所謂套接字就是使應用程式能夠讀寫與收發通訊協議(protocol)與資料的程式)

-p : 顯示程序識別符號和程式名稱,每一個套接字/埠都屬於一個程式。

-n : 不進行dns輪詢,顯示ip(可以加速操作)

即可顯示當前伺服器上所有埠及程序服務,於grep結合可檢視某個具體埠及服務情況。

***stat -ntlp //檢視當前所有tcp埠。

***stat -ntulp |grep 80 //檢視所有80埠使用情況。

***stat -an | grep 3306 //檢視所有3306埠使用情況。

例如要檢視當前mysql預設埠3702是否啟動可以做如下操作

linux下怎麼檢視有那些內部命令

如果有管理員許可權的話 只能一個家目錄一個家目錄下去檢視其歷史命令儲存檔案 或者有能力的話可以寫成個指令碼 linux下怎麼檢視有那些內部命令 linux命令有內部命令和外部命令之分。內部命令實際上是shell程式的一部分,其中包含的是一些比較簡練的linux系統命令,這些命令由shell程式識別並...

linux下怎麼檢視Oracle埠號

從xml裡面找下埠號。linux下檢視oracle埠號的方式方法 linux下怎麼檢視埠號 使用netstat命令,常用的一些用法 netstat 顯示所有已建立的有效連線,使用域名的形式 netstat n 顯示所有已建立的有效連線,直接使用ip地址,而不顯示域名。netstat a 顯示一個所有...

linux怎樣檢視那個程序佔用網路io

裝上iotop,或者dstat,用他們看.個人比較喜歡iotop linux 怎麼檢視那個程序佔用的io ps ef grep 程序名稱 或者直接pgrep 程序名稱 例如mysql ps ef grep mysql pgrep mysql linux 系統檢視哪個程序佔io 可以的,用命令過濾出來...