Page 1 of 1

snmp question

Posted: 07 Nov 2011 14:13
by knarfoe
Hello,
I trying to setup snmp on my 6400.
I've created a user :


User name = community_user,
Password expiration = None,
Password allow to be modified date = None,
Account lockout = None,
Password bad attempts = 0,
Read Only for domains = None,
Read/Write for domains = None,
Snmp allowed = YES,
Snmp authentication = NONE,
Snmp encryption = NONE


Security:
show snmp security
snmp security = no security



Map:
show snmp community map
Community mode : enabled
status community string user name
--------+--------------------------------+--------------------------------
enabled comstring2 community_user
->
show snmp station
ipAddress/udpPort status protocol user
---------------------------------------------------+---------+--------+-------
172.2.120.3/162 enable v1 community_user


Is this enough?
I want to read bandwidths on ports with PRTG Traffic grapher.
So far I cannot connect.
The Paessler snmp tester cannot find interfaces

tnx
frank

Re: snmp question

Posted: 09 Nov 2011 07:40
by one6f
Hi,
aaa authentication snmp local
Also check this.

Re: snmp question

Posted: 09 Nov 2011 14:26
by knarfoe
that was not the trick.
any other suggestions?
tnx
frank

Re: snmp question

Posted: 10 Nov 2011 02:49
by one6f
How did you create the user?
Read Only for domains = None,
Read/Write for domains = None,
you have created a community_user, but they can't do anything.
Try:

Code: Select all

user snmpuser read-write all password snmppass no auth
aaa authentication snmp local
snmp security no security
snmp community map mode enable
snmp community map public user snmpuser on
snmp station 1.2.3.4 snmpuser v1 enable
The first command sets the read-write passwords for snmp queries and enables snmp with no authentication.

Re: snmp question

Posted: 10 Nov 2011 15:58
by knarfoe
Hello,
It works !
thanks
frank