Sponsored Content
Operating Systems Solaris Disable or remove SNMPv1/2c authentication and SNMP version-3 Post 302961289 by gc_sw on Thursday 26th of November 2015 08:36:02 AM
Old 11-26-2015
Disable or remove SNMPv1/2c authentication and SNMP version-3

Hi;

How can I disable or remove SNMPv1/2c authentication. I would like to use SNMP version 3 authentication.

Code:
bash-3.00# uname -a
SunOS SOL9229 5.10 Generic_142910-17 i86pc i386 i86pc
bash-3.00#

 

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Disable SSH key authentication

Hello Guys, I need your help. I am trying to create a script to change password for multipls servers but having problem when it comes to ssh key authentication. Does anyone have a sample script that will disable ssh key authentication for multiple servers?;) (3 Replies)
Discussion started by: youdexter
3 Replies

2. SCO

Disable the SNMP Service

Dear All, Kindly guide how to Disable the SNMP Service on sco unix release 5.0 Regards (2 Replies)
Discussion started by: sak900354
2 Replies

3. Linux

How Do I find out SNMP Version?

Can someone please tell me how I can find out what version of SNMP I have running on any linux and solaris server? i would think this was an easy thing to find. but google wasn't able to turn up anything on this. snmp -v should do the trick but it doesn't. thank you guys (1 Reply)
Discussion started by: SkySmart
1 Replies

4. Red Hat

How to check the running snmp version in Rhel?

Hi, Please help me to understand how to check which snmp vesion(1, 2, 3) is configured on my rhel5 server. Regards, Aravind :) (2 Replies)
Discussion started by: arumon
2 Replies

5. Shell Programming and Scripting

perl Net::SNMP version getting info from cisco switch

I am having trouble working with SNMP module with perl. I am trying to get SNMP version of target system. I use following code to get it however it resturns error as "Argument "v6.0.1" isn't numeric in numeric lt (<) at ./chk_env_upd.pl line 447." Get load table my $resultat =... (1 Reply)
Discussion started by: dynamax
1 Replies

6. Cybersecurity

Disable SSH 1.99 version?

Hello. My security audit reconise SSH 1.99 protocol version allowed. But in my sshd_config config is only: SSH version: How can I disable support for ssh protocol 1.99 version? (1 Reply)
Discussion started by: jabalv
1 Replies

7. Solaris

Error occurred while making the net-snmp 5.4.4 on Solaris 5.10 version.

Hi all, Error occurred while making the net-snmp-5.4.4 on Solaris 5.10 version. Environment - Solaris 5.10-x86 - Net-SNMP-5.4.4.tar.gz - Path (/etc/profile) PATH=/usr/local/bin:$PATH export PATH LD_LIBRARY_PATHUSR=/usr/ccs/bin: export LD_LIBRARY_PATH Error01 - summary ***... (3 Replies)
Discussion started by: ziosnim
3 Replies
SNMP3_GETNEXT(3)							 1							  SNMP3_GETNEXT(3)

snmp3_getnext - Fetch theSNMPobject which follows the given object id

SYNOPSIS
string snmp3_getnext (string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id, [string $timeout = 1000000], [string $retries = 5]) DESCRIPTION
The snmp3_getnext(3) function is used to read the value of the SNMP object that follows the specified $object_id. PARAMETERS
o $host - The hostname of the SNMP agent (server). o $sec_name - the security name, usually some kind of username o $sec_level - the security level (noAuthNoPriv|authNoPriv|authPriv) o $auth_protocol - the authentication protocol (MD5 or SHA) o $auth_passphrase - the authentication pass phrase o $priv_protocol - the privacy protocol (DES or AES) o $priv_passphrase - the privacy pass phrase o $object_id - The SNMP object id. o $timeout - The number of microseconds until the first timeout. o $retries - The number of times to retry if timeouts occur. RETURN VALUES
Returns SNMP object value on success or FALSE on error. In case of an error, an E_WARNING message is shown. EXAMPLES
Example #1 Using snmp3_getnext(3) <?php $nameOfSecondInterface = snmp3_getnext('localhost', 'james', 'authPriv', 'SHA', 'secret007', 'AES', 'secret007', 'IF-MIB::ifName.1'); ?> SEE ALSO
snmp3_get(3), snmp3_walk(3). PHP Documentation Group SNMP3_GETNEXT(3)
All times are GMT -4. The time now is 10:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy