Windows服务器SNMP服务的配置方法
更新时间:2009年07月22日 23:31:26 作者:
SNMP(Simple Network Management Protocol,简单网络管理协议),用来对通信线路进行管理。
在Windows服务器上配置SNMP服务时,使用手动填写信息太麻烦。下面是使用命令行执行配置文件来实现。
创建snmp.inf
[NetOptionalComponents]
SNMP = 1
[SNMP]
Contact_Name = "ITSupport"
Location = "ServerRoom"
Service = Physical, Applications, End-to-End
Community_Name = Type_your_string_here
Traps = Type_the_destination_IP
Send_Authentication = Yes
Accept_CommunityName = Type_your_string_here:Read_Only
Any_Host = no
Limit_Host = Type_the_destination_IP
在服务器上运行以下命令
C:\Windows\System32\Sysocmgr.exe /i:%windir%\inf\sysoc.inf /u:path_to_the_file/snmp.inf
创建snmp.inf
复制代码 代码如下:
[NetOptionalComponents]
SNMP = 1
[SNMP]
Contact_Name = "ITSupport"
Location = "ServerRoom"
Service = Physical, Applications, End-to-End
Community_Name = Type_your_string_here
Traps = Type_the_destination_IP
Send_Authentication = Yes
Accept_CommunityName = Type_your_string_here:Read_Only
Any_Host = no
Limit_Host = Type_the_destination_IP
在服务器上运行以下命令
C:\Windows\System32\Sysocmgr.exe /i:%windir%\inf\sysoc.inf /u:path_to_the_file/snmp.inf
相关文章
Windows 2008任务计划执行bat脚本失败返回0x1的解决方法
这篇文章主要介绍了Windows 2008任务计划执行bat脚本失败返回0x1的解决方法,脚本之家小编一般更倾向于使用vbs来实现功能更强大与简单2020-05-05windows server 2008 R2 管理员帐户克隆方法(图文)
大家知道,黑客入侵一台服务器,一般都会先建立一个帐户,然后再设法将该帐户进行提权,而且这个过程都是隐藏的,下面我们来试试如何将GUEST帐户提权成管理员(administrators)帐户2015-10-10
最新评论