Sponsored Content
Full Discussion: SNMP on Sun Solaris 5.8
Special Forums UNIX and Linux Applications Infrastructure Monitoring SNMP on Sun Solaris 5.8 Post 302462126 by verdepollo on Wednesday 13th of October 2010 09:46:53 AM
Old 10-13-2010
As the error message suggests, you need to install libcrypto.
 

10 More Discussions You Might Find Interesting

1. Solaris

net-snmp-5.1.2 Solaris 9

All, I downloaded and installed the following net-snmp from the sourceforge.net website on a Solaris 9 server with the entire collection installed: net-snmp-5.1.2-SunOS_5.9_sun4u.tar.gz with no errors. I attempt to run snmpget and I get the following error: ld.so.1: snmpget: fatal:... (1 Reply)
Discussion started by: bubba112557
1 Replies

2. UNIX for Dummies Questions & Answers

Sun Solaris 10: How do I create a bootup disc? The Sun website confuses me

Hey there, I am starting a Computer Science Foundation year at the end of this month and am trying to get a little bit ahead of the game. I have always wanted to learn Unix and am currently struggling with creating a boot disc to run Solaris (I have chosen to study this) from as opposed to... (0 Replies)
Discussion started by: Jupiter
0 Replies

3. Solaris

net-snmp on solaris 8

hello I am running solaris 8 sparc. I installed net-snmp 5.4.1 (compiled it from tar file). When I do snmpwalk from another server, I receive a partial list of OIDs then it stops and gives 'timeout. No response...' another snmpwalk will directly timeouts. I compiled again the binaries... (1 Reply)
Discussion started by: melanie_pfefer
1 Replies

4. Solaris

Net-SNMP-5.4.2.1 issue on Sun Solaris

Hi, I am trying to compile the source code for Net-SNMP-5.4.2.1 using the gcc compiler-3.4.6 and 3.4.3 but I am getting the follwoing error with perl enabled: /bin/sh ../libtool --mode=link gcc -g -O2 -Usolaris2 -Dsolaris2=solaris2 -fno-strict-aliasing -pipe -Wdeclaration-after-statement... (2 Replies)
Discussion started by: tisha
2 Replies

5. Solaris

Sun Fire 280R Sun Solaris CRT/Monitor requirements

I am new to Sun. I brought Sun Fire 280R to practice UNIX. What are the requirements for the monitor/CRT? Will it burn out old non-Sun CRTs? Does it need LCD monitor? Thanks. (3 Replies)
Discussion started by: bramptonmt
3 Replies

6. Solaris

useful links and help resources for Sun's products and Sun's Solaris

Hi all, Those links might help anyone Knowledge base Video tutorials (0 Replies)
Discussion started by: h@foorsa.biz
0 Replies

7. Infrastructure Monitoring

snmp on solaris

hello, please, can any one help me to find a set of information to configure snmp in solaris 10 to send traps to manager urgent please thanks (4 Replies)
Discussion started by: lamou23
4 Replies

8. Infrastructure Monitoring

SNMP on Sun Solaris 5.8

hello, I have installed netsnmp-5.1.1-sol8-sparc-local under sun solaris 5.8, but when il write: snmpwalk -v1 -c public localhost memory I have not information about memory, il displays me: End of mib Can any one help me thanks (1 Reply)
Discussion started by: lamou23
1 Replies

9. Solaris

snmp on solaris 2.8

Hi All, I was looking for MIBs for getting CPU & Memory Usage from Solaris Machine ( Ver 2.8 ). I came across 2 mibs which provides this info. Those are HOST-RESOURCES-MIB and UCD-SNMP Mibs. But when I query the machine for these mibs, it is not returning any value. I would like to know... (2 Replies)
Discussion started by: lamou23
2 Replies

10. Solaris

SNMP - cpu core information for Sun SPARC machine

Dears, I'm looking for getting CPU cores information of Sun machines (like: SunFire V880, Fujitsu SPARC T5120, ...) via SNMP, unfortunately i couldn't find the proper OID for that. Can anyone help me with this ? Thanks, (1 Reply)
Discussion started by: Anti_Evil
1 Replies
SSL_load_client_CA_file(3)					      OpenSSL						SSL_load_client_CA_file(3)

NAME
SSL_load_client_CA_file - load certificate names from file LIBRARY
libcrypto, -lcrypto SYNOPSIS
#include <openssl/ssl.h> STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file); DESCRIPTION
SSL_load_client_CA_file() reads certificates from file and returns a STACK_OF(X509_NAME) with the subject names found. NOTES
SSL_load_client_CA_file() reads a file of PEM formatted certificates and extracts the X509_NAMES of the certificates found. While the name suggests the specific usage as support function for SSL_CTX_set_client_CA_list(3), it is not limited to CA certificates. EXAMPLES
Load names of CAs from file and use it as a client CA list: SSL_CTX *ctx; STACK_OF(X509_NAME) *cert_names; ... cert_names = SSL_load_client_CA_file("/path/to/CAfile.pem"); if (cert_names != NULL) SSL_CTX_set_client_CA_list(ctx, cert_names); else error_handling(); ... RETURN VALUES
The following return values can occur: NULL The operation failed, check out the error stack for the reason. Pointer to STACK_OF(X509_NAME) Pointer to the subject names of the successfully read certificates. SEE ALSO
ssl(3), SSL_CTX_set_client_CA_list(3) 1.0.1i 2009-07-20 SSL_load_client_CA_file(3)
All times are GMT -4. The time now is 03:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy