snmp-v3-add-trap-recipient

使用

avcli snmp-v3-add-trap-recipient --recipient recipient --username username --security-level security_level [--authentication-type type] [--authentication-pass-phrase pass_phrase] [--encryption-type type] [--encryption-pass-phrase pass_phrase]

描述

snmp-v3-add-trap-recipient 命令用于将收件人服务器(收件人)和自陷用户(用户名)添加到 everRun 系统上的 CallHomeInfo.xml 文件。然后当用户存在于收件人服务器上时,everRun系统能够将 SNMPv3 自陷发送给自陷用户。

选项

--recipient recipient 作为 SNMPv3 自陷的收件人的服务器。指定域名或 IPv4 地址。
--username username everRun系统将 SNMPv3 自陷发送到的收件人服务器上自陷用户的名称。
--security-level security-level

用户的安全级别。有效值为:

  • 针对身份验证和无隐私的 auth:消息进行了身份验证,但未加密。--authentication-type--authentication-pass-phrase 为必填项。--encryption-type--encryption-pass-phrase 为可选项。
  • 针对无身份验证且无隐私的 noauth:没有对消息应用安全;消息未进行身份验证或加密。--authentication-type--authentication-pass-phrase--encryption-type--encryption-pass-phrase 为可选项。
  • 针对身份验证和隐私的 priv:消息进行了身份验证和加密。--authentication-type--authentication-pass-phrase--encryption-type--encryption-pass-phrase 为必填项。
--authentication-type 类型

用户的身份验证类型。有效值为:

  • MD5:将消息摘要算法 (MD5) 配置为用户的身份验证类型。
  • SHA:将安全哈希算法 (SHA) 配置为用户的身份验证类型。
--authentication-pass-phrase pass_phrase 用户必填的密码短语,其用于生成身份验证密钥。pass_phrase 必须至少为八个字符。
--encryption-type 类型

用户的加密类型。有效值为:

  • AES:将高级加密标准 (AES) 配置为用户的加密类型。
  • DES:将数据加密标准 (DES) 配置为用户的加密类型。
--encryption-pass-phrase pass_phrase 用户必填的密码短语,其用于生成加密密钥。pass_phrase 必须至少为八个字符。

示例

以下示例将收件人服务器和自陷用户添加到 everRun系统上的 CallHomeInfo.xml 文件。

以下示例添加收件人服务器 snmp1.my-domain.com 和自陷用户 myTrapUser1。系统发送给 myTrapUser1 的自陷消息将进行身份验证和加密。
$ avcli snmp-v3-add-trap-recipient --recipient snmp1.my-domain.com --username myTrapUser1 --security-level priv --authentication-type MD5 --authentication-pass-phrase trapUser1AuthPassPhrase --encryption-type AES --encryption-pass-phrase trapUser1EncriptPassPhrase
以下示例添加收件人服务器 snmp2.my-domain.com 和自陷用户 myTrapUser2。系统发送给 myTrapUser2 的自陷消息将进行身份验证,但不加密。
$ avcli snmp-v3-add-trap-recipient --recipient snmp2.my-domain.com --username myTrapUser2 --security-level auth --authentication-type MD5 --authentication-pass-phrase trapUser2AuthPassPhrase
以下示例添加收件人服务器 snmp3.my-domain.com 和自陷用户 myTrapUser3。系统发送给 myTrapUser3 的自陷消息将不进行身份验证和加密。
$ avcli snmp-v3-add-trap-recipient --recipient snmp3.my-domain.com --username myTrapUser3 --security-level noauth