Questions tagged [oid]

OID is the Oracle Internet Directory product

Oracle Internet Directory (OID) is a directory server by Oracle Corporation, compatible with LDAP version 3

184 questions
4
votes
3 answers

Can't log out from Oracle SSO

I’m building a J2EE web application which uses Oracle SSO with an OID back-end as the means for authenticating users. If a user wants to use the application, first he must provide a valid login/password at SSO's login page. When the user is done…
Óscar López
  • 232,561
  • 37
  • 312
  • 386
4
votes
1 answer

SNMP OID: How to find the firmware version of a cisco switch from MIB

I am looking for a OID to get the firmware version of a Cisco Switch using SNMP. I tried the below MIB files, i couldn't. OLD-CISCO-CHASSIS-MIB.mib ENTITY-MIB.my CISCO-ENTITY-ASSET-MIB Do anybody know the OID, if so, kindly post me. Thanks
prasankn
  • 81
  • 1
  • 1
  • 11
4
votes
2 answers

snmp OID not increasing

I try to create a custom SNMP oid (and script). I add the following line to snmpd.conf (and restart service) : pass .1.3.6.1.3.2 /bin/myscript.sh . cat myscript.sh #!/bin/sh echo .1.3.6.1.3.2 echo gauge exec 100 . snmpwalk -c mycommunity -v2c…
amprantino
  • 1,597
  • 4
  • 15
  • 15
3
votes
0 answers

How to convert a list of tuples into an OID?

I have an SQL statement where I would like to pass a list of tuples customerIdSubCustomerPairs so that I can fetch all the rows matching the where clause from the table customers. This is the SQL for it: @Language("PostgreSQL") private const val…
Leff
  • 1,968
  • 24
  • 97
  • 201
3
votes
2 answers

Oracle's OID Service, Oracle.DataAccess and connection strings

I am looking to understand how to implement an OID connection string in .Net using the Oracle.DataAccess.dll . The OID connection string is in this format: ldap://servname:389/instance,cn=OracleContext When I use this as my datasource, I receive…
Scott Ross
  • 123
  • 1
  • 7
3
votes
1 answer

Is there a single snmp command to get list of snmp enabled devices in some ip address range

In my network, I want to scan for snmp enabled devices. So is there any single line snmp command, to get list of snmp enabled devices in specific range of IP Address like 172.26.1.1 to 172.26.1.255. I found a link which says it is possible but it…
cybergeeeek
  • 410
  • 8
  • 22
3
votes
3 answers

How to set BITS data type in SNMPSET command?

the MIB OID object have data type 'Bits': object_OID Composed Type: Bits Base Type: BITS Access: read-write Kind: Scalar SMI Type: OBJECT-TYPE Value List: doc (0) emta (1) cpe (2) From MIB description, default is DEFVAL { '00'h }. I want set value…
user2427839
3
votes
1 answer

Is there a simple way to map snmp(MIB) strings to OIDs in Perl?

Is there a simple way/module to map snmp(MIB) strings to OIDs in Perl? E.g. I start with "sysUpTime.0" and get "1.3.6.1.2.1.1.3.0". As far as I can see, Net::SNMP expects you to have them already mapped.
Sec
  • 7,059
  • 6
  • 31
  • 58
3
votes
2 answers

How to specify the Syntax for Values of Private OIDs while configuring in OpenSSL?

I have the following questions related to OpenSSL Private OID support: By going through the openssl configurations and other artifacts on the internet, I found that OpenSSL supports configuring Private OIDs, but I am not clear how to specify the…
Jay
  • 24,173
  • 25
  • 93
  • 141
3
votes
1 answer

SNMP OID for network traffic

i'm working on a script that will monitor traffic on specific hosts from nagios. I have studied some scripts already made and have gathered almost all the info i need to do it but i have encountered a problem in identifying the OID's necessary for…
primero
  • 591
  • 1
  • 6
  • 17
3
votes
3 answers

Problems resolving Oracle SID via LDAP/OID lookup with Thin JDBC Client

We are using OID/LDAP lookup for our connection configuration. Both the TNS_ADMIN environment variable and the oracle.net.tns_admin Java property are set correctly and points to a directory that contains sqlnet.ora and ldap.ora. However, the JDBC…
jasonkarns
  • 1,762
  • 2
  • 14
  • 17
2
votes
1 answer

How to retrieve bytes sent received through SNMP

I am writing a Perl script that is supposed to retrieve bytes sent/received from a remote host, long story short I want to monitor network traffic. Notice that the host may be an actual host or something else like a router/switch etc. The data I…
raz3r
  • 3,071
  • 8
  • 44
  • 66
2
votes
0 answers

Processing X509 certificate, java converts postalCode present in Subject line to its OID value

When converting an uploaded security certificate to X509 format and later obtaining the subject line through following code. eg cert = (X509Certificate) cf.generateCertificate(inStream); String subject…
2
votes
2 answers

parsing SNMP MIB files (OID translation)

I am making a network device monitor. Part of it is a PHP front-end where user can enter the SNMP values he is interested in (SNMP OIDs). I want to make the process simpler for the user so I want to create a simple MIB browser, allowing user to…
johndodo
  • 17,247
  • 15
  • 96
  • 113
2
votes
1 answer

Is there a way to call a function by its oid in postgresql?

I have a table with two enum columns, each enum contains about 10 possible values. I need to write a function that calls a specific other function for each row of this table, depending on the particular combination of these values in the row. I…
Pupkov-Zadnij
  • 1,342
  • 2
  • 11
  • 21
1
2
3
12 13