snmp_exporter是否支持AES 256,那么snmp.yml文件结构将是什么

问题描述 投票:1回答:1

当snmp.yml文件时,SNMP_Exporter可以正常工作>>

default:
  version: 3
  auth:
    username: SomeUser
    password: TotallySecret
    auth_protocol: SHA
    priv_protocol: AES
    security_level: SomethingReadOnly
    priv_password: SomeOtherSecret
  walk:
    - ...
  metrics:
    - ...

默认情况下,AES是指128位密钥因此,要走到使用AES 256位密钥作为隐私协议的设备上,我将需要进行哪些更改。

SNMP_Exporter在默认情况下使用snmp.yml文件时工作正常:版本:3 auth:用户名:SomeUser密码:TotallySecret auth_protocol:SHA priv_protocol:AES安全级别:...

aes prometheus snmp exporter
1个回答
1
投票

AES256不是SNMP标准的一部分,尽管某些供应商对此有自定义支持。如果要将其添加到SNMP导出器中,则首先需要将其添加到上游https://github.com/soniah/gosnmp/

© www.soinside.com 2019 - 2024. All rights reserved.