|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对于开发环境的选择尽量要轻量级和高度可定制,航空母舰级别的工具往往会让你迷惑不解;
取远程linux主机的流量和tcp毗连数
起首设置远程的linux主机的snmp.conf文件(能够了解为客户端)
vi/etc/snmp/snmp.conf
只需修正几处中央便可
####
#First,mapthecommunityname"public"intoa"securityname"
#sec.namesourcecommunity
com2secnotConfigUser*.*.*.*username#*.*.*.*是你远程监控呆板的IPusername是可托任的整体名
####
#Second,mapthesecuritynameintoagroupname:
#groupNamesecurityModelsecurityName
groupnotConfigGroupv1notConfigUser
groupnotConfigGroupv2cnotConfigUser
####
#Third,createaviewforustoletthegrouphaverightsto:
#Makeatleastsnmpwalk-v1localhost-cpublicsystemfastagain.
#nameincl/exclsubtreemask(optional)
viewsystemviewincluded.1.3.6.1.2.1.1
viewsystemviewincluded.1.3.6.1.2.1.2
viewsystemviewincluded.1.3.6.1.2.1.25.1.1
viewallincluded.1
####
#Finally,grantthegroupread-onlyaccesstothesystemviewview.
#groupcontextsec.modelsec.levelprefixreadwritenotif
#accessnotConfigGroup""anynoauthexactmib2nonenone
accessnotConfigGroup""anynoauthexactallnonenone
#Hereisacommentedoutexampleconfigurationthatallowsless
#restrictiveaccess.
#YOUSHOULDCHANGETHE"COMMUNITY"TOKENBELOWTOANEWKEYWORDONLY
#KNOWNATYOURSITE.YOU*MUST*CHANGETHENETWORKTOKENBELOWTO
#SOMETHINGREFLECTINGYOURLOCALNETWORKADDRESSSPACE.
##sec.namesourcecommunity
com2secnotConfigUserdefaultusername#username是可托任的整体名
com2sec*.*.*.0*.*.*.*/24username#username是可托任的整体名*.*.*.*是你远程监控呆板的IP
##group.namesec.modelsec.name
groupMyRWGroupanylocal
groupMyROGroupanymynetwork
groupnotConfigUseranyzcom
#
#groupMyRWGroupanyotherv3user
#...
##incl/exclsubtreemask
viewallincluded.180
##-orjustthemib2tree-
viewmib2included.iso.org.dod.internet.mgmt.mib-2fc
##contextsec.modelsec.levelprefixreadwritenotif
accessMyROGroup""anynoauth0allnonenone
accessMyRWGroup""anynoauth0allallall
修正终了后保留加入
/etc/init.d/snmpdrestart
监控端(能够了解为server端)
#snmpwalk-v2c-cusername*.*.*.*system
反省是不是能取道远程的体系数据
#snmpwalk-v2c-cusername*.*.*.*|grepIF-MIB::ifInOctets.1检察你的网卡流量
在你的mrtg的文件里写进IF-MIB::ifInOctets.1mrtg是不会取道流量的
#mib2cIF-MIB::ifInOctets.1转化为mib值,了局相似于
1.3.6.1.2.1.2.2.1.10
在你的mrtg文件中写进相似于如许的一句话
Target[*.*.*.*_BW_LAN]:1:username@*.*.*.*#username是可托任的整体名*.*.*.*是你远程监控呆板的IP
Title[*.*.*.*_BW_LAN]:202.102.251.133
PageTop[*.*.*.*_BW_LAN]:*.*.*.*
</p>
RedHatCentOS等等.学习linux不是逛自由市场,选定版本就要静下心来学习.不要今天换版本明天要升级.这样对你没有好处。 |
|