agentX各个角色功能

AgentX Roles

 1、master

An entity acting in a master agent role performs the following  functions:

-  Accepts AgentX session establishment requests from subagents.

接受来自于subagents的会话请求

-  Accepts registration of MIB regions by subagents.

接受来自于subagents的会话请求

-  Sends and accepts SNMP protocol messages on the agent‘s

specified transport addresses.

接受来自于subagents的会话请求

-  Implements the agent role Elements of Procedure specified for

the administrative framework applicable to the SNMP protocol

message, except where they specify performing management

operations.  (The application of MIB views, and the access

control policy for the managed node, are implemented by the

master agent.)

-  Provides instrumentation for the MIB objects defined in RFC

1907 [17], and for any MIB objects relevant to any

administrative framework it supports.

-  Sends and receives AgentX protocol messages to access

management information, based on the current registry of MIB

regions.

基于注册的mib库文件,接收和发送agentx协议消息

-  Forwards notifications on behalf of subagents.

转发subagents消息

 2、subagent

An entity acting in a subagent role performs the following functions:

-  Initiates AgentX sessions with the master agent.

初始化与master端的会话

-  Registers MIB regions with the master agent.

向master端注册mib库

-  Instantiates managed objects.

实例化对象

-  Binds OIDs within its registered MIB regions to actual

variables.

绑定对象

-  Performs management operations on variables.

实现管理动作

-  Initiates notifications.

初始化通知

=======================================

agentX的报文类型:

     agentx-Open-PDU             (1),

agentx-Close-PDU            (2),

agentx-Register-PDU         (3),

agentx-Unregister-PDU       (4),

agentx-Get-PDU              (5),

agentx-GetNext-PDU          (6),

agentx-GetBulk-PDU          (7),

agentx-TestSet-PDU          (8),

agentx-CommitSet-PDU        (9),

agentx-UndoSet-PDU         (10),

agentx-CleanupSet-PDU      (11),

agentx-Notify-PDU          (12),

agentx-Ping-PDU            (13),

agentx-IndexAllocate-PDU   (14),

agentx-IndexDeallocate-PDU (15),

agentx-AddAgentCaps-PDU    (16),

agentx-RemoveAgentCaps-PDU (17),

agentx-Response-PDU        (18)

其中1-4和12-17部分属于“administrative processing”, 5-11属于snmp请求处理。

时间: 2024-08-13 00:09:42

agentX各个角色功能的相关文章

IOS 2D游戏开发框架 SpriteKit-->续(完善角色功能)

一.说明       今天给角色精灵增加了子弹发射功能,增加了子弹与敌对精灵的碰撞检测,当角色精灵子弹与敌对精灵碰撞后,它们都会从屏幕上消失. 二.场景层SKScene的修改 1. 在初始化场景层的方法中增加下面代码 self.physicsWorld.contactDelegate = self; self.physicsWorld.gravity = CGVectorMake(0,0); 2.初始化场景层增加场景动力检测代理 1 - (instancetype)initWithSize:(C

WinServer2008下通过powershell获取IIS等角色功能列表,保存至txt

Set objShell = CreateObject("WScript.Shell") strCommondLine = "powershell.exe" app = objShell.Run(strCommondLine) objShell.AppActivate app WScript.Sleep 100 strCommond = "Import-Module ServerManager {ENTER} Get-WindowsFeature|out-

MVC5 网站开发之七 用户功能 1、角色的后台管理

角色是网站中都有的一个功能,用来区分用户的类型.划分用户的权限,这次实现角色列表浏览.角色添加.角色修改和角色删除. 目录 奔跑吧,代码小哥! MVC5网站开发之一 总体概述 MVC5 网站开发之二 创建项目 MVC5 网站开发之三 数据存储层功能实现 MVC5 网站开发之四 业务逻辑层的架构和基本功能 MVC5 网站开发之五 展示层架构 MVC5 网站开发之六 管理员 1.登录.验证和注销 MVC5 网站开发之六 管理员 2.添加.删除.重置密码.修改密码.列表浏览 MVC5 网站开发之七 用

Exchange 2013 (多服务器多角色)安装部署(一)

Exchange Server 是微软公司的一套电子邮件服务组件,是个消息与协作系统.与exchange 2010 相比,Exchange 2013 在角色上发生了重大的变化,只有 Mailbox 和 Client Access 服务器角色,取消了集线器传输.统一角色 2个服务器角色 . 环境部署: 域林环境:主域:ds01.bicionline.org ,辅助域控:pdc01.bicionline.org  ,树域:bici-igrid.com ,子域:sh.bicionline.org ;

asp.net Identity2 角色(Role)的使用(一)

asp.net Identity自带有角色功能,但默认的模板并没有启用.启用Role的步骤如下:定义role模型--配置角色管理器---配置初始化器---修改数据库上下对象---在应用程序启动文件中配置角色请求 1.定义模型: 在IdentityModel.cs //定义程序的角色模型,继承自IdentityRole public class ApplicationRole : IdentityRole { public ApplicationRole():base() {} public Ap

PHP.47-TP框架商城应用实例-后台22-权限管理-角色和管理员的关系

角色和管理员的关系 角色功能 管理员功能 角色与管理的关联要通过管理-角色表进行{多对多} /********* 管理-角色表 *********/ drop if exists p39_admin_role; create table p39_admin_role ( admin_id mediumint unsigned not null comment '管理Id', role_id mediumint unsigned not null comment '角色Id', key admin

PHP.46-TP框架商城应用实例-后台21-权限管理-权限和角色的关系

权限和角色的关系 权限功能 角色功能 权限与角色的关联要通过权限-角色表进行{多对多} /********* 角色-权限表 *********/ drop if exists p39_role_pri; create table p39_role_pri ( pri_id mediumint unsigned not null comment '权限Id', role_id mediumint unsigned not null comment '角色Id', key pri_id (pri_i

asp.net identity 2.2.0 中角色启用和基本使用(一)

基本环境:asp.net 4.5.2 第一步:在App_Start文件夹中的IdentityConfig.cs中添加角色控制器. 在namespace xxx内(即最后一个“}”前面)添加 角色控制类 代码如下: //配置此应用程序中使用的应用程序角色管理器.RoleManager 在 ASP.NET Identity 中定义,并由此应用程序使用. public class ApplicationRoleManager : RoleManager<IdentityRole> { public

Windows server 2012 角色转移及删除域控方法

本章博文讲述Windows server 2012 如何夺取主域控角色及删除域控方法 .针对不同的运行环境,对操作方法进行了归纳与总结   . 下面分2种情况做介绍  : 一.环境:主域控制器ds01.bicionline.org ,辅域控制器pdc01.bicionline.org  , 两台域控服务器运行正常,相互间可以实现AD复制.目的:主域控服务器把RID.PDC.Domain.Schema.Naming角色及GC功能转移到辅助域控制器,并降级成普通服务器.解决思路:通过图形界面或命令行