Linux日志出現大量kernel: NET: Registered protocol family 36

一臺Linux服務器的系統錯誤日志出現大量的 kernel: NET: Registered protocol family 36錯誤信息,如下所示:

?

?

Jul? 2 05:27:45 xxxxxx kernel: NET: Registered protocol family 36
?
Jul? 2 05:27:45 xxxxxx kernel: NET: Unregistered protocol family 36
?
Jul? 2 05:28:29 xxxxxx kernel: NET: Registered protocol family 36
?
Jul? 2 05:28:29 xxxxxx kernel: NET: Unregistered protocol family 36
?
Jul? 2 05:29:10 xxxxxx kernel: NET: Registered protocol family 36
?
Jul? 2 05:29:10 xxxxxx kernel: NET: Unregistered protocol family 36
?
Jul? 2 05:30:02 xxxxxx kernel: NET: Registered protocol family 36
?
Jul? 2 05:30:02 xxxxxx kernel: NET: Unregistered protocol family 36

?

?

搜索了一下,Syslog being flooded with kernel "NET: Registered protocol family 38" messages. 與 Syslog being flooded with kernel "NET: Registered protocol family 38" messages. 這兩篇文章都反饋,由于Linux運行在VMWare虛擬化環境下,安裝了vmware-tools,將vmware-tools從10.0.5.-1 升級到10.1.0 就會解決這個問題。摘抄部分內容如下

?

Situation

Following a round of patching, it was observed that syslog was flooded with the following messages :

?

--- cut here ---

Nov 10 12:08:21 server kernel: [26068249.154815] NET: Unregistered protocol family 38

Nov 10 12:08:21 server kernel: [26068249.154832] NET: Registered protocol family 38

Nov 10 12:08:21 server kernel: [26068249.190805] NET: Unregistered protocol family 38

Nov 10 12:08:23 server kernel: [26068251.200546] NET: Registered protocol family 38

Nov 10 12:08:23 server kernel: [26068251.218140] NET: Unregistered protocol family 38

Nov 10 12:08:23 server kernel: [26068251.218157] NET: Registered protocol family 38

Nov 10 12:08:23 server kernel: [26068251.238126] NET: Unregistered protocol family 38

Nov 10 12:08:23 server kernel: [26068251.238150] NET: Registered protocol family 38

Nov 10 12:08:23 server kernel: [26068251.266167] NET: Unregistered protocol family 38

--- cut here ---

Resolution

The servers were running in a VMWare virtualized environment, and installed with the vmware-tools package from VMWare.

?

Updating the vmware-tools from version 10.0.5-1, to vmware-tools version 10.1.0 resolved the problem.

Disclaimer

This Support Knowledgebase provides a valuable tool for NetIQ/Novell/SUSE customers and parties interested in our products and solutions to acquire information, ideas and learn from one another. Materials are provided for informational, personal or non-commercial use within your organization and are presented "AS IS" WITHOUT WARRANTY OF ANY KIND.

?

其實我們系統的錯誤日志跟這個基本類似,除了Registered protocol family不同 ,那些鏈接里面是Registered protocol family是38 ,而我們錯誤日志中Registered protocol family為 36,檢查這個協議發現為XTP協議。

?

# vmware-toolbox-cmd -v

10.0.0.50046 (build-3000743)

# cat /etc/protocols

?

clip_image001

?

?

官方文檔Large number of "NET: Registered protocol family 30 31 36" messages,也有更全面的介紹。結合相關資料判斷,這個的確應該是vmware-tools版本引起的。

?

clip_image002

?

?

參考資料:

?

http://www.novell.com/support/kb/doc.php?id=7018302

https://www.suse.com/support/kb/doc/?id=7018302

https://access.redhat.com/solutions/1518873

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/282872.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/282872.shtml
英文地址,請注明出處:http://en.pswp.cn/news/282872.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

node的模塊機制

Node.js模塊的實現 之前在網上查閱了許多介紹Node.js的文章,可惜對于Node.js的模塊機制大都著墨不多。在后續介紹模塊的使用之前,我認為有必要深入一下Node.js的模塊機制。 CommonJS規范 早在Netscape誕生不久后,JavaScript就一直在探索本地編…

vs使用ado連接oracle,在VS環境下以ADO方式操作Oracle數據庫

利用ADO引擎方式訪問Oracle數據庫的實現方法:定義數據庫頭文件為CDBOperation.h#pragma once#import "C:\Program Files\Common Files\System\ADO\msado15.dll" no_namespace rename("EOF","adoEOF"),rename("LockTypeEnum"…

httpstat:一個檢查網站性能的 curl 統計分析工具

httpstat:一個檢查網站性能的 curl 統計分析工具httpstat 是一個 Python 腳本,它以美妙妥善的方式反映了 curl 統計分析,它是一個單一腳本,兼容 Python 3 ,在用戶的系統上不需要安裝額外的軟件(依賴)。作者&#xff1a…

Unity(創建腳本)

#一、描述 記錄第一課時,腳本的創建與使用基本的API #二、學習記錄 (一)創建一個Cube方塊 (二)在cube組件上添加一個腳本,選中cube組件,在屏幕右側有著cube的組件屬性欄,點擊AddComp…

關于面試中看到一些問題

最近公司在招聘.NET開發人員,面試了一些人,有一些感悟,分享出來,以供參考。面試的人員中,有一些是三五年的開發人員;也有幾個是10年左右的技術負責人,不但自己架構過項目,還有帶領導…

jQuery遍歷not的用法

從包含所有段落的集合中刪除 id 為 "selected" 的段落: $("p").not("#selected") 定義和用法 not() 從匹配元素集合中刪除元素。 語法 1 .not(selector) 參數描述selector字符串值,包含用于匹配元素的選擇器表達式。語法 …

linux 字符串加入中括號,Linux Shell 基礎 -- 總結幾種括號、引號的用法

1、雙引號 " "雙引號常用于包含一組字符串,在雙引號中,除了 "$"、""、" (反引號)"有特殊含義外,其余字符(如IFS、換行符、回車符等)沒有特殊含義。$ a3$ echo "$a"輸出結果為 3&#xff…

設計模式相關

多例模式 轉載于:https://www.cnblogs.com/our880tom/p/6392983.html

一個countDown在多線程調度下使用不當的分享

2019獨角獸企業重金招聘Python工程師標準>>> 一個countDown在多線程調度下使用不當的分享 1. 詭異的數據抖動 在一個需求開發過程中,由于有多角色需要獲取每個角色下的菜單;結果出現了單角色下拉去菜單沒問題,多角色情況下只有一個…

我堅持三年了!

閱讀本文大概需要5分鐘。不知不覺,公眾號寫作已經持續了3年了。2019年11月底,心血來潮寫了第一篇文章,更多是為了復盤過去的一些工作經歷。在前幾天,讀者數突破了16萬,雖然這個數字相比那些頭部大號而言并不多&#xf…

關于Qt模態框總匯

轉載請注明出處:http://www.cnblogs.com/dachen408/p/7285710.html 父窗體為QMainWindow; 當子窗體為: 1.QWidget,需要設置 this->setWindowFlags(Qt::FramelessWindowHint | Qt::Dialog); this->setWindowModality(Qt::Win…

linux腳本打印循環次數,shell腳本編程基礎(3)——循環用法

本節索引:一、if、case條件判斷二、for、while及until循環三、循環控制語句continue、break、shift及select菜單四、信號捕捉trap在前面的基礎編程內容中,我們已經學習了shell腳本的順序執行及選擇執行,通過這兩種方式,可以幫我們…

RTSP服務器之————rtsp-server(輕量級RTSP / RTP流媒體服務器)

github:https://github.com/revmischa/rtsp-server 輕量級RTSP / RTP流媒體服務器

EF CORE 7 中的新功能:使用 ExecuteDelete 和 ExecuteUpdate 進行批量操作

原文鏈接:https://timdeschryver.dev/blog/new-in-entity-framework-7-bulk-operations-with-executedelete-and-executeupdate原文作者:tim_deschryver翻譯:沙漠盡頭的狼(谷歌翻譯加持)Entity Framework 7 包括一些已被要求的流行功能&#…

java 簡單json和對象相互轉換

2019獨角獸企業重金招聘Python工程師標準>>> package Fasterxml; import com.fasterxml.jackson.databind.ObjectMapper; import mode.User; import java.io.StringWriter; import java.util.ArrayList; import java.util.List;/*** maven...**<dependency>* …

暢想動畫制作的樂趣

為什么要制作動畫&#xff1f; 現在的營銷活動&#xff0c;用一個很簡單的圖片去吸引消費者已經遠遠不夠。想讓消費者創造GMV&#xff0c;肯定需要讓消費者覺得眼前一亮或是有視覺沖擊的東西&#xff0c;或者在動畫過程中提供更好的引導部分&#xff0c;比如紅包&#xff0c;引…

Linux的scan命令,linux的scan命令

linux下scan命令主要是以scanf的形式使用轉換符解析字符串&#xff0c;下面由秋天網 Qiutian.ZqNF.Com小編為大家整理了linux下scan命令的相關知識&#xff0c;希望對大家有幫助!linux的scan命令詳解scan - 以sscanf的形式使用轉換符解析字符串語法:scan string format ?varna…

Spring Cloud Gateway 原生支持接口限流該怎么玩

關于pig&#xff1a; 基于Spring Cloud、oAuth2.0開發基于Vue前后分離的開發平臺&#xff0c;支持賬號、短信、SSO等多種登錄&#xff0c;提供配套視頻開發教程。 關于 Spring Cloud Gateway SpringCloudGateway是Spring官方基于Spring 5.0&#xff0c;Spring Boot 2.0和Projec…

我的手機 不支持箭頭函數

不支持&#xff0c;要換成function的形式 轉載于:https://www.cnblogs.com/web-fusheng/p/7295901.html

中標麒麟linux卸載qt,國產化 銀河麒麟編譯Qt程序的問題匯總 | 阿拉燈

Run in terminal莫名奇妙軟件無法在QtCreator中運行或者調試&#xff0c;main函數都無法進入&#xff0c;QtCreator中一運行就崩潰&#xff0c;并跳到匯編界面&#xff0c;這多半和代碼沒什么關系&#xff0c;我這里是將項目->運行中的“Run in terminal”去掉勾選&#xff…