Networking General
Posts
Selected Posts
Unsolved
Responses(1)
10
0
4
8
0
2
38
0
9
18
0
3
51
0
2
No Events found!
Unsolved
1 Rookie
•
5 Posts
0
159
Dear all,
I need help to configure SNMP V3 in Dell switch N2048P, but is GUI
I am not much familiar about command line,
Top
DELL-Erman O
Moderator
Moderator
•
2.5K Posts
0
March 28th, 2024 14:34
Hi, I can try to help you with this article. How to configure SNMPv3 on Dell EMC Networking N series switches. | Dell US
Steps in configuring SNMPv3
1. Creating a SNMPv3 View
Commands
Console#configure
console(config)#snmp-server view test_view internet included
CLI Breakdown
MIB family which we select from the OID subtree.
2. Creating a SNMPV3 Group
Commands:
console(config)#snmp-server group test_group v3 ‘noauth/auth/priv’ ‘read/write’ test_view
CLI Breakdown
auth - Specifies authentication of a packet without encrypting it.
noauth - Specifies no authentication of a packet.
priv - Specifies authentication of a packet with encryption.
3. Creating a SNMPV3 User
The next step after creating a SNMPv3 group is to create a SNMPv3 user and associate it with the group that has been created.
Commands
console(config)#snmp-server user test_user test_group auth-md5 password1 priv-3des password2
CLI Breakdown
Configuration Example
Console# configure
Console(config) snmp-server view test_view internet included
Console(config) snmp-server group test_group v3 priv read test_view
Console(config) snmp-server user test_user test_group auth-md5 password1 priv-3des password2
Switch Running Configuration output
snmp-server view "test_view" internet included
snmp-server group "test_group" v3 priv read "test_view"
snmp-server user "test_user" test_group auth-md5-key 240826d65a17fe9d8826630917f60b0f priv-3des-key 240826d65a17fe9d8826630917f60b0f400dd0592395032de9b2ad0759c017e9
Hope that helps!