Linux

ifconfig + 設備中斷

  • October 7, 2017

什麼是 - 設備中斷 90 記憶體 0x434000000-934fff

從 ifconfig 命令

是否顯示網路問題?,我們需要在 OS linux 上檢查什麼?

   ifconfig -a
   RX errors 1971059972  dropped 503931  overruns 65  frame 1971059907
   TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
   device interrupt 90  memory 0x96000000-967fffff
   RX errors 0  dropped 0  overruns 0  frame 0
   TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
   device interrupt 102  memory 0x95000000-957fffff
   RX errors 0  dropped 0  overruns 0  frame 0
   TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
   RX errors 0  dropped 0  overruns 0  frame 0
   TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
   RX errors 0  dropped 0  overruns 0  frame 0

這是查找錯誤資訊的一種非常糟糕的方法。 並非每個帶有字元串 “err” 的單詞都表示 “error”。“中斷”一詞恰好包含“錯誤”。 並非ifconfig命令的所有輸出都是錯誤消息。 畢竟,它確實報告了介面配置。

引用自:https://unix.stackexchange.com/questions/395862