寫在前面
如果你是對SNMP完全不了解,或者只想學習如何使用現(xiàn)成的SNMP工具,那你找對了文章,但如果你希望學習SNMP具體協(xié)議內(nèi)容,推薦閱讀官方的RFC文檔。
1. 簡介
SNMP(Simple Network Management Protocol) 設計在TCP/IP協(xié)議簇上的,為網(wǎng)絡節(jié)點提供了一個通用的管理方法。對于系統(tǒng)維護人員,SNMP是其必須要掌握的一個工具。同時,如果你是一名BMC工程師,那你也必須掌握這門技術(shù),SNMP常常會被部署在其Linux系統(tǒng)中,專門用于管理BMC所監(jiān)視的所有系統(tǒng)硬件資源。
2. MIB介紹
在你要了解SNMP前,你必須先要了解一下MIB是什么。MIB全程Management Information Base,其主要負責為所有的被管理網(wǎng)絡節(jié)點建立一個“接口”,本質(zhì)是類似IP地址的一串數(shù)字。例如我們會在使用SNMP的時候見到這樣一組數(shù)字串:
.1.3.6.1.2.1.1.5.0
在這串數(shù)字中,每個數(shù)字都代表一個節(jié)點,其含義可以參考下表:
1 | 3 | 6 | 1 | 2 | 1 | 1 | 5 | 0 |
---|---|---|---|---|---|---|---|---|
iso | org | dod | internet | mgmt | mib-2 | system | sysName | end |
顯然,這個數(shù)字串可以直接理解為系統(tǒng)的名字。在實際使用中,我們將其作為參數(shù)可以讀取該節(jié)點的值,如果有寫權(quán)限的話還可以更改該節(jié)點的值,因此,SNMP對于系統(tǒng)管理員提供了一套極為便利的工具。但,在一般使用中,我們一般不使用這種節(jié)點的表達方式,而是使用更為容易理解的方式,對于上面的這個例子,其往往可以使用SNMPv2-MIB::sysName.0所替代。
你可能會想,系統(tǒng)能理解它的含義嗎?那你就多慮了,一般在下載SNMP工具包的時候還會下載一個MIB包,其提供了所有節(jié)點的樹形結(jié)構(gòu)。在該結(jié)構(gòu)中可以方便的查找對應的替換表達。或者,如果你不嫌麻煩還可以到OID查詢網(wǎng)站查找對應的替換表達。
3. SNMP原理介紹
SNMP有兩個內(nèi)容,其一是其本身,專門負責管理節(jié)點,其二是一個Trap,用于監(jiān)測報警。通俗的理解,SNMP可以看作是一個C/S結(jié)構(gòu)。在客戶機中,一般會部署一個snmpd的守護進程,而在服務端(管理端)會下載一個snmp工具包,這個包中包含了許多用于管理客戶端網(wǎng)絡節(jié)點的的工具,例如get,set,translate等等。下圖可能會幫你更加清晰的理解這個概念:
上圖中,161表示的是雙方進行通信時所用的默認端口號,被管理端會打開一個守護進程,負責監(jiān)聽161端口發(fā)來的請求;管理端會提供一個SNMP工具包,利用工具包中的命令可以向被管理端的161端口發(fā)送請求包,以獲取響應。
除此之外,管理端還會開啟一個SNMPTrapd守護進程,用于接受被管理端向自己的162端口發(fā)送來的snmptrap請求,這一機制主要用于被管理端的自動報警中,一旦被管理端的某個節(jié)點出現(xiàn)故障,系統(tǒng)自動會發(fā)送snmptrap包,從而遠端的系統(tǒng)管理員可以及時的知道問題。更為詳細的介紹推薦閱讀《TCP/IP詳解 卷一》。這里推薦大家關(guān)注公眾號:網(wǎng)絡技術(shù)干貨圈,每天都會發(fā)布網(wǎng)絡技術(shù)方面的文章。
4. 實際運用
目前較為流行的一些SNMP工具有Net-SNMP,其專門運行在Linux系統(tǒng)中,以及可以運行在Windows系統(tǒng)的iReasoning MIB Browser。
4.1. Net-SNMP
Net-SNMP獲取的方式有很多種,可以在其官方網(wǎng)站下載,或者直接使用Linux發(fā)行版的包獲取命令都可以。安裝好之后,你可以通過修改/etc/snmp/snmpd.conf文件來進行配置你的Net-SNMP。接下來我們會對常用的一些SNMP工具包做一些介紹:
snmpd:這是一個SNMP的守護進程,用于部署在客戶機端,可以通過修改/etc/snmp/snmpd.conf文件來配置community(通俗點說就是密碼),監(jiān)聽IP及端口及其他內(nèi)容,你可以使用 sudo /etc/init.d/snmpd restart/start/stop 重啟/開啟/關(guān)閉該進程。
snmpget:這個命令可以用于獲取被管理端某個節(jié)點的值,用法很簡單,例如我們可以使用snmpget -v 2c -c public localhost SNMPv2-MIB::sysName.0 來獲取被管理端系統(tǒng)名稱,運行之后你會得到這樣一條信息SNMPv2-MIB::sysName.0 = STRING: ubuntu。當然了,如果你的Linux主機是Redhat,那你的結(jié)果肯定會和我不大一樣。除此之外,我們再來看一下參數(shù),-v 表示的是SNMP的版本號,到目前為止一共有三個版本(1|2c|3),最常用的后面兩個版本,而本文所講的都是2c版本;-c表示的是community,其參數(shù)應該填寫你在snmpd配置文件中設定的值;localhost 表示的是被管理端的IP地址,此處我是在自己電腦上測的,所以是localhost;最后面的一項內(nèi)容是要訪問的節(jié)點,你既可以輸入OID,即那一串數(shù)字,也可以輸入其代表的內(nèi)容,更多信息可以使用snmpget -h 查看。
snmpset:這個命令用于設置某個節(jié)點的值,用法與get類似,snmpset -v 2c -c public localhost SNMPv2-MIB::sysContact.0 s 'test'會設該節(jié)點的值為test(不知道為什么,我的電腦上提示該節(jié)點notwritable,總之這個指令我目前位置還沒用到過),s表示的是字符串賦值類型,test的賦值內(nèi)容。
snmpwalk:這個指令很有用,可以將某一個節(jié)點下的所有被管理的子節(jié)點內(nèi)容都打印出來,例如我們使用 snmpwalk -v 2c -c public localhost SNMPv2-MIB::system 可以打印system節(jié)點所有被管理子節(jié)點的信息。
snmptranslate:用于翻譯OID,例如我們使用 snmptranslate -Td SNMPv2-MIB::system 可以知道system節(jié)點所使用的數(shù)字OID,反之亦然。
snmptrap:可以向管理端發(fā)送trap包,主要用于報警,例如我們可以使用sudo snmptrap -v 2c -c public localhost "cxy" .1.3.6.1.2.1.1 SNMPv2-MIB::sysContact.0 s 'test' 向管理端發(fā)送一個trap包,管理端即可直接查獲并通知管理員,這就為被管理端提供了一種主動向管理端通訊的機制。另外,可以看到參數(shù)中多了一些內(nèi)容,"cxy"是管理端的用戶名,.1.3.6.1.2.1.1是主OID,而后面的則是具體的OID及其內(nèi)容。
snmptrapd:部署在管理端,可以通過修改/etc/snmp/snmptrapd.conf來配置其認證方式,一般使用命令sudo snmptrapd -df -Lo 啟動該服務,可以通過檢查162端口確認其啟動。
4.2. MIB-Browser
你可以在官網(wǎng)下載地址獲取該應用,由于是圖形化界面,所以使用極為簡單,下圖是SNMP工具的主界面。
當然,你還可以在Tools中找到Trap Reciever與Trap Sender,其分別對應snmptrapd與snmptrap。
5. Q&A
獲取信息時出現(xiàn)超時或被拒絕你應該檢查snmpd.conf文件的community是否和你命令的-c選項對應,或者是否監(jiān)聽端口是否對所有IP開放,但更多的時候是因為防火墻的原因,只要關(guān)掉就好了。
snmpset時出現(xiàn)無權(quán)限的問題需要設置snmpd.conf文件中的rwcommunity。
snmptrap失敗查看snmptrapd.conf文件的配置。這里推薦大家關(guān)注公眾號:網(wǎng)絡技術(shù)干貨圈,每天都會發(fā)布網(wǎng)絡技術(shù)方面的文章。
OID查找不到的情況需要下載snmp-mibs-downloader包,并且將/etc/snmp/snmp.conf中的第一行mib:注釋掉。
6. configuration example
下面是我在Ubuntu16.04中的一些關(guān)于Net-SNMP的相關(guān)配置文件:
/etc/snmp/snmp.conf
# As the snmp packages come without MIB files due to license reasons, loading # of MIBs is disabled by default. If you added the MIBs you can reenable # loading them by commenting out the following line. #mibs :
/etc/snmp/snmpd.conf
# #EXAMPLE-trap.conf: #AnexampleconfigurationfileforconfiguringtheNet-SNMPsnmptrapdagent. # ############################################################################### # #Thisfileisintendedtoonlybeanexample. #Whenthesnmptrapdagentstartsup,thisiswhereitwilllookforit. # #Alllinesbeginningwitha'#'arecommentsandareintendedforyou #toread.Allotherlinesareconfigurationcommandsfortheagent. # #PLEASE:readthesnmptrapd.conf(5)manualpageaswell! # #authCommunitylog,execute,netprivate authCommunitylog,execute,netpublic # ##sendmailwhengetanyevents #traphandledefault/usr/bin/traptoemail-ssmtp.qq.com1484652026@qq.com # ##sendmailwhengetlinkDown #traphandle.1.3.6.1.6.3.1.1.5.3/usr/bin/traptoemail-ssmtp.example.orgfoobar@example.org
/etc/snmp/snmpd.conf
############################################################################### # #EXAMPLE.conf: #AnexampleconfigurationfileforconfiguringtheNet-SNMPagent('snmpd') #Seethe'snmpd.conf(5)'manpagefordetails # #Someentriesaredeliberatelycommentedout,andwillneedtobeexplicitlyactivated # ############################################################################### # #AGENTBEHAVIOUR # #Listenforconnectionsfromthelocalsystemonly #agentAddressudp161 #Listenforconnectionsonallinterfaces(bothIPv4*and*IPv6) #agentAddressudp:161,udp6:[::1]:161 ############################################################################### # #SNMPv3AUTHENTICATION # #Notethattheseparticularsettingsdon'tactuallybelonghere. #Theyshouldbecopiedtothefile/var/lib/snmp/snmpd.conf #andthepasswordschanged,beforebeinguncommentedinthatfile*only*. #Thenrestarttheagent #createUserauthOnlyUserMD5"remembertochangethispassword" #createUserauthPrivUserSHA"remembertochangethisonetoo"DES #createUserinternalUserMD5"thisisonlyeverusedinternally,butstillchangethepassword" #Ifyoualsochangetheusernames(whichmightbesensible), #thenremembertoupdatetheotheroccurancesinthisexampleconfigfiletomatch. ############################################################################### # #ACCESSCONTROL # #system+hrSystemgroupsonly #viewsystemonlyincluded.1.3.6.1.2.1.1 #viewsystemonlyincluded.1.3.6.1.2.1.25.1 viewsystemonlyincluded.1 #Fullaccessfromthelocalhost #rocommunitypubliclocalhost #Defaultaccesstobasicsysteminfo rwcommunitypublicdefault-Vsystemonly #rocommunity6isforIPv6 rwcommunity6publicdefault-Vsystemonly #Fullaccessfromanexamplenetwork #Adjustthisnetworkaddresstomatchyourlocal #settings,changethecommunitystring, #andcheckthe'agentAddress'settingabove #rocommunitysecret10.0.0.0/16 #Fullread-onlyaccessforSNMPv3 rouserauthOnlyUser #Fullwriteaccessforencryptedrequests #Remembertoactivatethe'createUser'linesabove #rwuserauthPrivUserpriv #It'snolongertypicallynecessarytousethefull'com2sec/group/access'configuration #r[ow]userandr[ow]community,togetherwithsuitableviews,shouldcovermostrequirements ############################################################################### # #SYSTEMINFORMATION # #Notethatsettingthesevalueshere,resultsinthecorrespondingMIBobjectsbeing'read-only' #Seesnmpd.conf(5)formoredetails sysLocationSittingontheDockoftheBay sysContactMe #Application+End-to-Endlayers sysServices72 # #ProcessMonitoring # #Atleastone'mountd'process procmountd #Nomorethan4'ntalkd'processes-0isOK procntalkd4 #Atleastone'sendmail'process,butnomorethan10 procsendmail101 #WalktheUCD-SNMP-MIB::prTabletoseetheresultingoutput #Notethatthistablewillbeemptyifthereareno"proc"entriesinthesnmpd.conffile # #DiskMonitoring # #10MBsrequiredonrootdisk,5%freeon/var,10%freeonallotherdisks disk/10000 disk/var5% includeAllDisks10% #WalktheUCD-SNMP-MIB::dskTabletoseetheresultingoutput #Notethatthistablewillbeemptyifthereareno"disk"entriesinthesnmpd.conffile # #SystemLoad # #Unacceptable1-,5-,and15-minuteloadaverages load12105 #WalktheUCD-SNMP-MIB::laTabletoseetheresultingoutput #Notethatthistable*will*bepopulated,evenwithouta"load"entryinthesnmpd.conffile ############################################################################### # #ACTIVEMONITORING # #sendSNMPv1traps trapsinklocalhostpublic #sendSNMPv2ctraps #trap2sinklocalhostpublic #sendSNMPv2cINFORMs #informsinklocalhostpublic #Notethatyoutypicallyonlywant*one*ofthesethreelines #Uncommentingtwo(orallthree)willresultinmultiplecopiesofeachnotification. # #EventMIB-automaticallygeneratealerts # #Remembertoactivatethe'createUser'linesabove iquerySecNameinternalUser rouserinternalUser #generatetrapsonUCDerrorconditions defaultMonitorsyes #generatetrapsonlinkUp/Down linkUpDownNotificationsyes ############################################################################### # #EXTENDINGTHEAGENT # # #Arbitraryextensioncommands # extendtest1/bin/echoHello,world! extend-shtest2echoHello,world!;echoHithere;exit35 #extend-shtest3/bin/sh/tmp/shtest #Notethatthislastentryrequiresthescript'/tmp/shtest'tobecreatedfirst, #containingthesamethreeshellcommands,beforethelineisuncommented #WalktheNET-SNMP-EXTEND-MIBtables(nsExtendConfigTable,nsExtendOutput1Table #andnsExtendOutput2Table)toseetheresultingoutput #Notethatthe"extend"directivesupercedestheprevious"exec"and"sh"directives #However,walkingtheUCD-SNMP-MIB::extTableshouldstillreturnsthesameoutput, #aswellasthefullerresultsintheabovetables. # #"Pass-through"MIBextensioncommand # #pass.1.3.6.1.4.1.8072.2.255/bin/shPREFIX/local/passtest #pass.1.3.6.1.4.1.8072.2.255/usr/bin/perlPREFIX/local/passtest.pl #Notethatthisrequiresoneofthetwo'passtest'scriptstobeinstalledfirst, #beforetheappropriatelineisuncommented. #Thesescriptscanbefoundinthe'local'directoryofthesourcedistribution, #andarenotinstalledautomatically. #WalktheNET-SNMP-PASS-MIB::netSnmpPassExamplessubtreetoseetheresultingoutput # #AgentXSub-agents # #RunasanAgentXmasteragent masteragentx #Listenfornetworkconnections(fromlocalhost) #ratherthanthedefaultnamedsocket/var/agentx/master #agentXSockettcp705 @example.org>
審核編輯:劉清
-
Linux系統(tǒng)
+關(guān)注
關(guān)注
4文章
591瀏覽量
27352 -
SNMP
+關(guān)注
關(guān)注
0文章
83瀏覽量
29718 -
TCP
+關(guān)注
關(guān)注
8文章
1349瀏覽量
78985 -
TCPIP協(xié)議
+關(guān)注
關(guān)注
0文章
35瀏覽量
11924
原文標題:SNMP介紹及使用,超有用,建議收藏!
文章出處:【微信號:網(wǎng)絡技術(shù)干貨圈,微信公眾號:網(wǎng)絡技術(shù)干貨圈】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。
發(fā)布評論請先 登錄
相關(guān)推薦
評論