Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to specify snmp config for network nodes #258

Open
jonstout opened this issue Oct 23, 2018 · 2 comments
Open

Add ability to specify snmp config for network nodes #258

jonstout opened this issue Oct 23, 2018 · 2 comments

Comments

@jonstout
Copy link
Member

Add ability to specify snmp community string for network nodes. When specified, this will allow for network statistics to be gathered and graphed on the frontend.

@jonstout
Copy link
Member Author

SNMP options are as follows:

snmpv3:
    security_level: noAuthNoPriv|authNoPriv|authPriv
    auth_protocol: MD5|SHA
    auth_password: ''
    priv_protocol: DES|AES
    priv_password: ''
snmpv2:
    community: ''

@jonstout
Copy link
Member Author

We can overload the passwords.json file to include the following special keys containing creds. They can then be assigned to a node by id via the frontend.

{
    "snmpv3": [
        {
            "id": "mlxe16-1.example.com",
            "security_level": "noAuthNoPriv|authNoPriv|authPriv",
            "auth_protocol": "MD5|SHA",
            "auth_password": "",
            "priv_protocol": "DES|AES",
            "priv_password": ""
        }
    ],
    "snmpv2": [
        {
            "id": "mlxe16-1.example.com",
            "community": ""
        }
    ],
    "ssh": [
        {
            "id": "mlxe16-1.example.com",
            "username": "",
            "password": ""
        }
    ]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant