Closed frankfer01 closed 4 years ago
I suspect that this is an issue with the custom data query.
If you have quotes around your parameters within the data query, you don't need to now as we automatically add quotes to all parameters due to escaping in order to prevent injection attacks.
Since this appears to be a custom script, check that the parameters of the query are correct in the definition and remove any manually entered single quotes. It may have relied on the fact that because a parameter was missing, it shuffled along the rest of them.
So if originally, you had a script that was defined as /my/script <1> <2> <3> <4> <5>
with 1=first, 2=second, 3=third, 4=, 5=fifth, previously $4
would actually have fifth in the script. which is incorrect, so if there is an extra field defined misaligning the parameters, this will cause an issue.
Hi,
You are right, it's a custom script, but the point is why using cmd.php work well, but using spine add the single quotes. I checked my script and I can't find misaligning parameters or errors with extra fields.
I’ll do a command line check and find out but the differences but we do utilise the PHP escapearg function if it’s available on phone so that may be a difference.
I just realised that this is going to need more debugging logs than I thought as it goes from CMD/Spine to Script Server and back out. Is your custom script a query or script server script?
It's a query script(Data Query)
Sorry, to be clear, the Data Input Method name and type is?
The Data Input Method is "Get Script Data (Indexed)". The script it's made in bash.
Another point...if I put the graph in real time,I can see data of graph.
What kind of script is this, a bash, perl, php script?
It's a bash script.
When you use spine, you must output all data in one print/echo. It's by design. Breaks peoples scripts all the time.
Surely spine should able able to cope with multiple output? I didn't realise that myself.
In my case, all output data is in one print/echo
Would you be able to zip and email your script to developers@cacti.net, I can then properly see what the difference is between the output. If possible, also include the template export that uses it.
Surely spine should able able to cope with multiple output? I didn't realise that myself.
Been that way since day one. It will not wait by design.
Would you be able to zip and email your script to developers@cacti.net, I can then properly see what the difference is between the output. If possible, also include the template export that uses it.
Hi, I sent the info required.
Regards,
So, looking at your script there are a number of places were you are echoing output within a loop. I would suggest building those output values up and then echoing that all at once. The easiest way to do that is to put the loops into a function and then capture the function output into an variable before echoing the final output in one go.
So, looking at your script there are a number of places were you are echoing output within a loop. I would suggest building those output values up and then echoing that all at once. The easiest way to do that is to put the loops into a function and then capture the function output into an variable before echoing the final output in one go.
Thanks for looking. These loops have a function, and run (once) just when you made a verbose. The think is why work well in cmd.php(in real time too) and spine not. I used the same script in a old version of cacti(0.8) with spine as poller and works well too.
The only path relative to spine is the get and it looked okay. So, this must be environment related. Try configuring spine to use the traditional popen vs. the nifty (default).
The only path relative to spine is the get and it looked okay. So, this must be environment related. Try configuring spine to use the traditional popen vs. the nifty (default).
I tryed a lot of configurations of spine and the result it's the same.
Here two examples, one in cmd.php and other using spine:
CMS.PHP --> Ok! 2020/03/05 15:25:03 - POLLER: Poller[Main Poller] Device[SBC4STGO-00] DS[MSS7-IBASIS-Private SBC4STGO-00 SIP Response] Graphs[MSS7-IBASIS-Private SBC4STGO-00 SIP Response] CMD: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '"172.16.200.236"' '"public"' '"2"' 'get' 'ocu_re5' '19.77.83.83.55.45.73.66.65.83.73.83.45.80.114.105.118.97.116.101.0', output: 68
SPINE --> Failed! 2020/03/05 15:30:04 - SPINE: Poller[Main Poller] PID[16094] Device[SBC4STGO-00] DS[MSS7-IBASIS-Private SBC4STGO-00 SIP Response] Graphs[MSS7-IBASIS-Private SBC4STGO-00 SIP Response] ERROR: Empty result [172.16.200.236]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '"172.16.200.236"' '"public"' '"2"' 'get' 'ocu_re5' '19.77.83.83.55.45.73.66.65.83.73.83.45.80.114.105.118.97.116.101.0''
Note a single quote add at first and the end using SPINE.
Thanks for the debug, I'm tied up today, so I will take a look tomrorow.
Please show the output of configure and the configure options you used.
Run configure like this:
./configure --enable-popen
Then run with that compilation of the of spine.
[root@voltron cacti-spine-1.2.9]# ./configure --enable-popen
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gawk... (cached) gawk
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
./configure: line 4136: LT_INIT: command not found
checking whether to enable -Wall... no
checking for help2man... /usr/bin/help2man
checking for help2man... /usr/bin/help2man
checking for socket in -lsocket... no
checking for floor in -lm... yes
checking for dlclose in -ldl... yes
checking for pthread_exit in -lpthread... yes
checking for deflate in -lz... yes
checking for kstat_close in -lkstat... no
checking for CRYPTO_realloc in -lcrypto... yes
checking for library containing clock_gettime... none required
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking for signal.h... (cached) yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking for netinet/in_systm.h... yes
checking for netinet/in.h... yes
checking for netinet/ip.h... yes
checking for netinet/ip_icmp.h... yes
checking for unsigned long long... yes
checking for long long... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking return type of signal handlers... void
checking for malloc... yes
checking for calloc... yes
checking for gettimeofday... yes
checking for strerror... yes
checking for strtoll... yes
checking priv.h usability... no
checking priv.h presence... no
checking for priv.h... no
checking whether we are using Solaris privileges... no
checking sys/capability.h usability... no
checking sys/capability.h presence... no
checking for sys/capability.h... no
checking whether we are using Linux Capabilities... no
checking for mysql_init in -lmysqlclient... yes
checking if Net-SNMP needs crypto support... yes
checking for snmp_timeout in -lnetsnmp... yes
checking for the spine results buffer size... 2048 bytes
checking for the maximum simultaneous spine scripts... 20
checking for the maximum MySQL buffer size... 131072
checking whether we are using traditional popen... yes
checking whether to verify net-snmp library vs header versions... no
checking if we can support backtracing... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/config.h
config.status: executing depfiles commands
The condition it's the same(spine fail):
2020/03/09 08:50:04 - SPINE: Poller[Main Poller] PID[26761] WARNING: Invalid Response, Device[SBC4STGO-00] HT[1] DS[MSS7-IBASIS-Private SBC4STGO-00 SIP Response] Graphs[MSS7-IBASIS-Private SBC4STGO-00 SIP Response] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '"172.16.200.236"' '"public"' '"2"' 'get' 'ocu_re5' '19.77.83.83.55.45.73.66.65.83.73.83.45.80.114.105.118.97.116.101.0', output: U
--
2020/03/09 08:50:04 - SPINE: Poller[Main Poller] PID[26761] Device[SBC4STGO-00] DS[MSS7-IBASIS-Private SBC4STGO-00 SIP Response] Graphs[MSS7-IBASIS-Private SBC4STGO-00 SIP Response] ERROR: Empty result [172.16.200.236]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '"172.16.200.236"' '"public"' '"2"' 'get' 'ocu_re5' '19.77.83.83.55.45.73.66.65.83.73.83.45.80.114.105.118.97.116.101.0''
Today, I upgraded to cacti and spine to version 1.2.10, and the problem continue.
SPINE: Poller[Main Poller] PID[2019] Device[SBC3RRA-01] DS[ODO_MSS7_VIVA_STDO SBC3RRA-01 SIP Response] Graphs[ODO_MSS7_VIVA_STDO SBC3RRA-01 SIP Response] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '"172.16.200.229"' '"public"' '"2"' 'get' 'ocu_re5' '18.79.68.79.95.77.83.83.55.95.86.73.86.65.95.83.84.68.79.0''
The issue is clear to me, your hostname, community string, and snmp version are double escaped. Do you know why that is? Check your data input method, updated it change the double quotes to single quotes and that problem should go away. You can also remove the quotes, and Cacti will auto-escape them with single quotes.
The issue is clear to me, your hostname, community string, and snmp version are double escaped. Do you know why that is? Check your data input method, updated it change the double quotes to single quotes and that problem should go away. You can also remove the quotes, and Cacti will auto-escape them with single quotes.
I removed the double quotes of hostname, community string and snmp version, but the single quotes it's still add using spine(not in cmd.php):
2020/03/13 12:20:03 - SPINE: Poller[Main Poller] PID[12035] Device[SBC3RRA-01] DS[TRI_Ibasis_3 SBC3RRA-01 ASR] Graphs[TRI_Ibasis_3 SBC3RRA-01 ASR] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0''
Copy that entire command, goto the command line and paste it, are you getting good information back
/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0'
Copy that entire command, goto the command line and paste it, are you getting good information back
/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0'
Of course, works:
[root@localhost scripts]# /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0' 0
In this case return 0.
Can you call it with a time in front so
time /bin/bash ...
Can you call it with a time in front so
time /bin/bash ...
This is the output:
[root@voltron ~]# time /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0' 0
real 0m0.025s user 0m0.017s sys 0m0.007s
Okay, good. Now, get the host id for the host in question and run the following:
./spine -R -V 3 -f hostid -l hostid -S
Post the output.
Okay, good. Now, get the host id for the host in question and run the following:
./spine -R -V 3 -f hostid -l hostid -S
Post the output. [root@localhost bin]# ./spine -R -V 3 -f 4 -l 4 -S SPINE: Using spine config file [/etc/spine.conf] SPINE: Version 1.2.10 starting NOTE: Spine will support multithread device polling. DEBUG: Initial Value of Active Threads is 0 SPINE: Active Threads is 1, Pending is 1 Device[0] HT[1] Total Time: 0.00063 Seconds POLLER: Active Threads is 0, Pending is 0 SPINE: Active Threads is 1, Pending is 1 Device[4] INFO: SNMP Device '172.16.200.229' has timeout 500000 (500), retries 3 NOTE: Device[4] Checking for System Information Update NOTE: Device[4] Updating Full System Information Table Device[4] HT[1] DQ[4] RECACHE OID: .1.3.6.1.2.1.1.3.0, (assert: 1545717371 < output: 1545733689) Device[4] HT[1] DQ[10] RECACHE OID: .1.3.6.1.2.1.1.3.0, (assert: 1545717371 < output: 1545733689) Device[4] HT[1] DQ[11] RECACHE OID: .1.3.6.1.2.1.1.3.0, (assert: 1545717371 < output: 1545733689) Device[4] HT[1] DQ[12] RECACHE OID: .1.3.6.1.2.1.1.3.0, (assert: 1545717371 < output: 1545733689) Device[4] HT[1] NOTE: There are '134' Polling Items for this Device Device[4] INFO: SNMP Device '172.16.200.229' has timeout 500000 (500), retries 3 Device[4] HT[1] DS[43] SNMP: v2: 172.16.200.229, dsname: traffic_in, oid: .1.3.6.1.2.1.31.1.1.1.6.1, value: 1270637517162 Device[4] HT[1] DS[43] SNMP: v2: 172.16.200.229, dsname: traffic_out, oid: .1.3.6.1.2.1.31.1.1.1.10.1, value: 1270637517162 Device[4] HT[1] DS[44] SNMP: v2: 172.16.200.229, dsname: traffic_in, oid: .1.3.6.1.2.1.31.1.1.1.6.2, value: 34105284712 Device[4] HT[1] DS[44] SNMP: v2: 172.16.200.229, dsname: traffic_out, oid: .1.3.6.1.2.1.31.1.1.1.10.2, value: 869219935014 Device[4] HT[1] DS[45] SNMP: v2: 172.16.200.229, dsname: traffic_in, oid: .1.3.6.1.2.1.31.1.1.1.6.4, value: 490310192711 Device[4] HT[1] DS[45] SNMP: v2: 172.16.200.229, dsname: traffic_out, oid: .1.3.6.1.2.1.31.1.1.1.10.4, value: 9858754595014 Device[4] HT[1] DS[46] SNMP: v2: 172.16.200.229, dsname: traffic_in, oid: .1.3.6.1.2.1.31.1.1.1.6.8, value: 1223838609030 Device[4] HT[1] DS[46] SNMP: v2: 172.16.200.229, dsname: traffic_out, oid: .1.3.6.1.2.1.31.1.1.1.10.8, value: 1392182695326 Device[4] HT[1] DS[47] SNMP: v2: 172.16.200.229, dsname: traffic_in, oid: .1.3.6.1.2.1.31.1.1.1.6.10, value: 1607578826754 Device[4] HT[1] DS[47] SNMP: v2: 172.16.200.229, dsname: traffic_out, oid: .1.3.6.1.2.1.31.1.1.1.10.10, value: 1665780337362 enterprises.7684.2.14.16.1.3.10.65.66.67.95.116.111.95.77.83.83.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[75] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.65.66.67.95.116.111.95.77.83.83.0 Device[4] HT[1] DS[75] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.65.66.67.95.116.111.95.77.83.83.0', output: U enterprises.7684.2.14.16.1.4.10.65.66.67.95.116.111.95.77.83.83.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[75] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.65.66.67.95.116.111.95.77.83.83.0 Device[4] HT[1] DS[75] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.65.66.67.95.116.111.95.77.83.83.0', output: U enterprises.7684.2.14.16.1.6.10.65.66.67.95.116.111.95.77.83.83.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[75] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.65.66.67.95.116.111.95.77.83.83.0 Device[4] HT[1] DS[75] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.65.66.67.95.116.111.95.77.83.83.0', output: U enterprises.7684.2.14.16.1.7.10.65.66.67.95.116.111.95.77.83.83.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[75] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.65.66.67.95.116.111.95.77.83.83.0 Device[4] HT[1] DS[75] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.65.66.67.95.116.111.95.77.83.83.0', output: U enterprises.7684.2.14.16.1.3.10.77.101.116.97.67.108.97.115.115.52.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[76] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.77.101.116.97.67.108.97.115.115.52.0 Device[4] HT[1] DS[76] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.77.101.116.97.67.108.97.115.115.52.0', output: U enterprises.7684.2.14.16.1.4.10.77.101.116.97.67.108.97.115.115.52.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[76] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.77.101.116.97.67.108.97.115.115.52.0 Device[4] HT[1] DS[76] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.77.101.116.97.67.108.97.115.115.52.0', output: U enterprises.7684.2.14.16.1.6.10.77.101.116.97.67.108.97.115.115.52.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[76] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.77.101.116.97.67.108.97.115.115.52.0 Device[4] HT[1] DS[76] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.77.101.116.97.67.108.97.115.115.52.0', output: U enterprises.7684.2.14.16.1.7.10.77.101.116.97.67.108.97.115.115.52.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[76] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.77.101.116.97.67.108.97.115.115.52.0 Device[4] HT[1] DS[76] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.77.101.116.97.67.108.97.115.115.52.0', output: U enterprises.7684.2.14.16.1.3.10.77.83.83.95.116.111.95.65.66.67.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[77] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.77.83.83.95.116.111.95.65.66.67.0 Device[4] HT[1] DS[77] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.77.83.83.95.116.111.95.65.66.67.0', output: U enterprises.7684.2.14.16.1.4.10.77.83.83.95.116.111.95.65.66.67.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[77] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.77.83.83.95.116.111.95.65.66.67.0 Device[4] HT[1] DS[77] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.77.83.83.95.116.111.95.65.66.67.0', output: U enterprises.7684.2.14.16.1.6.10.77.83.83.95.116.111.95.65.66.67.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[77] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.77.83.83.95.116.111.95.65.66.67.0 Device[4] HT[1] DS[77] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.77.83.83.95.116.111.95.65.66.67.0', output: U enterprises.7684.2.14.16.1.7.10.77.83.83.95.116.111.95.65.66.67.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[77] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.77.83.83.95.116.111.95.65.66.67.0 Device[4] HT[1] DS[77] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.77.83.83.95.116.111.95.65.66.67.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.73.68.84.95.48.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[78] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.49.0 Device[4] HT[1] DS[78] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.49.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.73.68.84.95.48.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[78] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.49.0 Device[4] HT[1] DS[78] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.49.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.73.68.84.95.48.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[78] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.49.0 Device[4] HT[1] DS[78] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.49.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.73.68.84.95.48.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[78] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.49.0 Device[4] HT[1] DS[78] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.49.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.73.68.84.95.48.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[79] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.50.0 Device[4] HT[1] DS[79] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.50.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.73.68.84.95.48.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[79] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.50.0 Device[4] HT[1] DS[79] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.50.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.73.68.84.95.48.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[79] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.50.0 Device[4] HT[1] DS[79] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.50.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.73.68.84.95.48.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[79] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.50.0 Device[4] HT[1] DS[79] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.50.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.73.68.84.95.48.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[80] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.51.0 Device[4] HT[1] DS[80] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.51.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.73.68.84.95.48.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[80] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.51.0 Device[4] HT[1] DS[80] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.51.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.73.68.84.95.48.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[80] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.51.0 Device[4] HT[1] DS[80] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.51.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.73.68.84.95.48.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[80] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.51.0 Device[4] HT[1] DS[80] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.51.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.73.68.84.95.48.52.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[81] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.52.0 Device[4] HT[1] DS[81] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.52.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.73.68.84.95.48.52.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[81] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.52.0 Device[4] HT[1] DS[81] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.52.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.73.68.84.95.48.52.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[81] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.52.0 Device[4] HT[1] DS[81] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.52.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.73.68.84.95.48.52.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[81] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.52.0 Device[4] HT[1] DS[81] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.52.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.73.68.84.95.48.53.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[82] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.53.0 Device[4] HT[1] DS[82] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.53.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.73.68.84.95.48.53.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[82] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.53.0 Device[4] HT[1] DS[82] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.53.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.73.68.84.95.48.53.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[82] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.53.0 Device[4] HT[1] DS[82] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.53.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.73.68.84.95.48.53.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[82] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.53.0 Device[4] HT[1] DS[82] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.53.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.73.68.84.95.48.54.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[83] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.54.0 Device[4] HT[1] DS[83] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.54.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.73.68.84.95.48.54.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[83] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.54.0 Device[4] HT[1] DS[83] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.54.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.73.68.84.95.48.54.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[83] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.54.0 Device[4] HT[1] DS[83] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.54.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.73.68.84.95.48.54.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[83] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.54.0 Device[4] HT[1] DS[83] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.54.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.73.68.84.95.48.55.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[84] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.55.0 Device[4] HT[1] DS[84] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.73.68.84.95.48.55.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.73.68.84.95.48.55.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[84] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.55.0 Device[4] HT[1] DS[84] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.73.68.84.95.48.55.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.73.68.84.95.48.55.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[84] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.55.0 Device[4] HT[1] DS[84] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.73.68.84.95.48.55.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.73.68.84.95.48.55.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[84] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.55.0 Device[4] HT[1] DS[84] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.73.68.84.95.48.55.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.76.101.118.101.108.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[85] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.76.101.118.101.108.51.0 Device[4] HT[1] DS[85] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.76.101.118.101.108.51.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.76.101.118.101.108.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[85] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.76.101.118.101.108.51.0 Device[4] HT[1] DS[85] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.76.101.118.101.108.51.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.76.101.118.101.108.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[85] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.76.101.118.101.108.51.0 Device[4] HT[1] DS[85] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.76.101.118.101.108.51.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.76.101.118.101.108.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[85] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.76.101.118.101.108.51.0 Device[4] HT[1] DS[85] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.76.101.118.101.108.51.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.83.112.114.105.110.116.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[86] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.83.112.114.105.110.116.0 Device[4] HT[1] DS[86] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.83.112.114.105.110.116.0', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.83.112.114.105.110.116.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[86] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.83.112.114.105.110.116.0 Device[4] HT[1] DS[86] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.83.112.114.105.110.116.0', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.83.112.114.105.110.116.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[86] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.83.112.114.105.110.116.0 Device[4] HT[1] DS[86] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.83.112.114.105.110.116.0', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.83.112.114.105.110.116.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[86] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.83.112.114.105.110.116.0 Device[4] HT[1] DS[86] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.83.112.114.105.110.116.0', output: U enterprises.7684.2.14.16.1.3.10.84.82.73.95.83.112.114.105.110.116.1: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[87] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.83.112.114.105.110.116.1 Device[4] HT[1] DS[87] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '10.84.82.73.95.83.112.114.105.110.116.1', output: U enterprises.7684.2.14.16.1.4.10.84.82.73.95.83.112.114.105.110.116.1: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[87] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.83.112.114.105.110.116.1 Device[4] HT[1] DS[87] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '10.84.82.73.95.83.112.114.105.110.116.1', output: U enterprises.7684.2.14.16.1.6.10.84.82.73.95.83.112.114.105.110.116.1: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[87] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.83.112.114.105.110.116.1 Device[4] HT[1] DS[87] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '10.84.82.73.95.83.112.114.105.110.116.1', output: U enterprises.7684.2.14.16.1.7.10.84.82.73.95.83.112.114.105.110.116.1: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[87] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.83.112.114.105.110.116.1 Device[4] HT[1] DS[87] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '10.84.82.73.95.83.112.114.105.110.116.1', output: U enterprises.7684.2.14.16.1.3.11.57.49.49.45.80.117.98.108.105.99.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[88] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.57.49.49.45.80.117.98.108.105.99.49.0 Device[4] HT[1] DS[88] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.57.49.49.45.80.117.98.108.105.99.49.0', output: U enterprises.7684.2.14.16.1.4.11.57.49.49.45.80.117.98.108.105.99.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[88] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.57.49.49.45.80.117.98.108.105.99.49.0 Device[4] HT[1] DS[88] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.57.49.49.45.80.117.98.108.105.99.49.0', output: U enterprises.7684.2.14.16.1.6.11.57.49.49.45.80.117.98.108.105.99.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[88] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.57.49.49.45.80.117.98.108.105.99.49.0 Device[4] HT[1] DS[88] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.57.49.49.45.80.117.98.108.105.99.49.0', output: U enterprises.7684.2.14.16.1.7.11.57.49.49.45.80.117.98.108.105.99.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[88] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.57.49.49.45.80.117.98.108.105.99.49.0 Device[4] HT[1] DS[88] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.57.49.49.45.80.117.98.108.105.99.49.0', output: U enterprises.7684.2.14.16.1.3.11.65.84.84.49.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[89] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.65.84.84.49.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[89] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.65.84.84.49.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.4.11.65.84.84.49.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[89] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.65.84.84.49.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[89] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.65.84.84.49.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.6.11.65.84.84.49.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[89] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.65.84.84.49.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[89] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.65.84.84.49.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.7.11.65.84.84.49.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[89] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.65.84.84.49.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[89] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.65.84.84.49.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.3.11.73.68.84.32.80.114.105.118.97.116.101.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[90] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.73.68.84.32.80.114.105.118.97.116.101.0 Device[4] HT[1] DS[90] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.73.68.84.32.80.114.105.118.97.116.101.0', output: U enterprises.7684.2.14.16.1.4.11.73.68.84.32.80.114.105.118.97.116.101.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[90] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.73.68.84.32.80.114.105.118.97.116.101.0 Device[4] HT[1] DS[90] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.73.68.84.32.80.114.105.118.97.116.101.0', output: U enterprises.7684.2.14.16.1.6.11.73.68.84.32.80.114.105.118.97.116.101.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[90] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.73.68.84.32.80.114.105.118.97.116.101.0 Device[4] HT[1] DS[90] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.73.68.84.32.80.114.105.118.97.116.101.0', output: U enterprises.7684.2.14.16.1.7.11.73.68.84.32.80.114.105.118.97.116.101.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[90] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.73.68.84.32.80.114.105.118.97.116.101.0 Device[4] HT[1] DS[90] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.73.68.84.32.80.114.105.118.97.116.101.0', output: U enterprises.7684.2.14.16.1.3.11.83.70.82.51.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[91] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.83.70.82.51.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[91] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.83.70.82.51.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.4.11.83.70.82.51.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[91] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.83.70.82.51.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[91] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.83.70.82.51.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.6.11.83.70.82.51.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[91] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.83.70.82.51.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[91] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.83.70.82.51.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.7.11.83.70.82.51.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[91] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.83.70.82.51.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[91] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.83.70.82.51.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.3.11.83.70.82.52.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[92] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.83.70.82.52.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[92] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.83.70.82.52.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.4.11.83.70.82.52.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[92] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.83.70.82.52.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[92] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.83.70.82.52.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.6.11.83.70.82.52.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[92] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.83.70.82.52.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[92] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.83.70.82.52.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.7.11.83.70.82.52.45.80.117.98.108.105.99.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[92] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.83.70.82.52.45.80.117.98.108.105.99.0 Device[4] HT[1] DS[92] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.83.70.82.52.45.80.117.98.108.105.99.0', output: U enterprises.7684.2.14.16.1.3.11.84.82.73.95.75.68.68.73.95.48.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[93] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.84.82.73.95.75.68.68.73.95.48.49.0 Device[4] HT[1] DS[93] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.84.82.73.95.75.68.68.73.95.48.49.0', output: U enterprises.7684.2.14.16.1.4.11.84.82.73.95.75.68.68.73.95.48.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[93] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.84.82.73.95.75.68.68.73.95.48.49.0 Device[4] HT[1] DS[93] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.84.82.73.95.75.68.68.73.95.48.49.0', output: U enterprises.7684.2.14.16.1.6.11.84.82.73.95.75.68.68.73.95.48.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[93] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.84.82.73.95.75.68.68.73.95.48.49.0 Device[4] HT[1] DS[93] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.84.82.73.95.75.68.68.73.95.48.49.0', output: U enterprises.7684.2.14.16.1.7.11.84.82.73.95.75.68.68.73.95.48.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[93] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.84.82.73.95.75.68.68.73.95.48.49.0 Device[4] HT[1] DS[93] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.84.82.73.95.75.68.68.73.95.48.49.0', output: U enterprises.7684.2.14.16.1.3.11.84.82.73.95.75.68.68.73.95.48.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[94] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.84.82.73.95.75.68.68.73.95.48.50.0 Device[4] HT[1] DS[94] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.84.82.73.95.75.68.68.73.95.48.50.0', output: U enterprises.7684.2.14.16.1.4.11.84.82.73.95.75.68.68.73.95.48.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[94] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.84.82.73.95.75.68.68.73.95.48.50.0 Device[4] HT[1] DS[94] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.84.82.73.95.75.68.68.73.95.48.50.0', output: U enterprises.7684.2.14.16.1.6.11.84.82.73.95.75.68.68.73.95.48.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[94] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.84.82.73.95.75.68.68.73.95.48.50.0 Device[4] HT[1] DS[94] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.84.82.73.95.75.68.68.73.95.48.50.0', output: U enterprises.7684.2.14.16.1.7.11.84.82.73.95.75.68.68.73.95.48.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[94] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.84.82.73.95.75.68.68.73.95.48.50.0 Device[4] HT[1] DS[94] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.84.82.73.95.75.68.68.73.95.48.50.0', output: U enterprises.7684.2.14.16.1.3.11.84.82.73.95.75.68.68.73.95.48.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[95] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.84.82.73.95.75.68.68.73.95.48.51.0 Device[4] HT[1] DS[95] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.84.82.73.95.75.68.68.73.95.48.51.0', output: U enterprises.7684.2.14.16.1.4.11.84.82.73.95.75.68.68.73.95.48.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[95] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.84.82.73.95.75.68.68.73.95.48.51.0 Device[4] HT[1] DS[95] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.84.82.73.95.75.68.68.73.95.48.51.0', output: U enterprises.7684.2.14.16.1.6.11.84.82.73.95.75.68.68.73.95.48.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[95] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.84.82.73.95.75.68.68.73.95.48.51.0 Device[4] HT[1] DS[95] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.84.82.73.95.75.68.68.73.95.48.51.0', output: U enterprises.7684.2.14.16.1.7.11.84.82.73.95.75.68.68.73.95.48.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[95] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.84.82.73.95.75.68.68.73.95.48.51.0 Device[4] HT[1] DS[95] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.84.82.73.95.75.68.68.73.95.48.51.0', output: U enterprises.7684.2.14.16.1.3.11.84.82.73.95.79.114.98.105.116.101.108.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[96] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.84.82.73.95.79.114.98.105.116.101.108.0 Device[4] HT[1] DS[96] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '11.84.82.73.95.79.114.98.105.116.101.108.0', output: U enterprises.7684.2.14.16.1.4.11.84.82.73.95.79.114.98.105.116.101.108.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[96] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.84.82.73.95.79.114.98.105.116.101.108.0 Device[4] HT[1] DS[96] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '11.84.82.73.95.79.114.98.105.116.101.108.0', output: U enterprises.7684.2.14.16.1.6.11.84.82.73.95.79.114.98.105.116.101.108.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[96] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.84.82.73.95.79.114.98.105.116.101.108.0 Device[4] HT[1] DS[96] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '11.84.82.73.95.79.114.98.105.116.101.108.0', output: U enterprises.7684.2.14.16.1.7.11.84.82.73.95.79.114.98.105.116.101.108.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[96] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.84.82.73.95.79.114.98.105.116.101.108.0 Device[4] HT[1] DS[96] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '11.84.82.73.95.79.114.98.105.116.101.108.0', output: U enterprises.7684.2.14.16.1.3.12.76.73.77.69.45.80.117.98.108.105.99.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[97] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.76.73.77.69.45.80.117.98.108.105.99.50.0 Device[4] HT[1] DS[97] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.76.73.77.69.45.80.117.98.108.105.99.50.0', output: U enterprises.7684.2.14.16.1.4.12.76.73.77.69.45.80.117.98.108.105.99.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[97] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.76.73.77.69.45.80.117.98.108.105.99.50.0 Device[4] HT[1] DS[97] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.76.73.77.69.45.80.117.98.108.105.99.50.0', output: U enterprises.7684.2.14.16.1.6.12.76.73.77.69.45.80.117.98.108.105.99.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[97] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.76.73.77.69.45.80.117.98.108.105.99.50.0 Device[4] HT[1] DS[97] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.76.73.77.69.45.80.117.98.108.105.99.50.0', output: U enterprises.7684.2.14.16.1.7.12.76.73.77.69.45.80.117.98.108.105.99.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[97] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.76.73.77.69.45.80.117.98.108.105.99.50.0 Device[4] HT[1] DS[97] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.76.73.77.69.45.80.117.98.108.105.99.50.0', output: U enterprises.7684.2.14.16.1.3.12.76.73.77.69.45.80.117.98.108.105.99.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[98] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.76.73.77.69.45.80.117.98.108.105.99.51.0 Device[4] HT[1] DS[98] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.76.73.77.69.45.80.117.98.108.105.99.51.0', output: U enterprises.7684.2.14.16.1.4.12.76.73.77.69.45.80.117.98.108.105.99.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[98] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.76.73.77.69.45.80.117.98.108.105.99.51.0 Device[4] HT[1] DS[98] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.76.73.77.69.45.80.117.98.108.105.99.51.0', output: U enterprises.7684.2.14.16.1.6.12.76.73.77.69.45.80.117.98.108.105.99.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[98] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.76.73.77.69.45.80.117.98.108.105.99.51.0 Device[4] HT[1] DS[98] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.76.73.77.69.45.80.117.98.108.105.99.51.0', output: U enterprises.7684.2.14.16.1.7.12.76.73.77.69.45.80.117.98.108.105.99.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[98] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.76.73.77.69.45.80.117.98.108.105.99.51.0 Device[4] HT[1] DS[98] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.76.73.77.69.45.80.117.98.108.105.99.51.0', output: U enterprises.7684.2.14.16.1.3.12.84.82.73.95.66.101.108.103.97.99.111.109.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[99] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.66.101.108.103.97.99.111.109.0 Device[4] HT[1] DS[99] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.66.101.108.103.97.99.111.109.0', output: U enterprises.7684.2.14.16.1.4.12.84.82.73.95.66.101.108.103.97.99.111.109.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[99] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.66.101.108.103.97.99.111.109.0 Device[4] HT[1] DS[99] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.66.101.108.103.97.99.111.109.0', output: U enterprises.7684.2.14.16.1.6.12.84.82.73.95.66.101.108.103.97.99.111.109.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[99] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.66.101.108.103.97.99.111.109.0 Device[4] HT[1] DS[99] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.66.101.108.103.97.99.111.109.0', output: U enterprises.7684.2.14.16.1.7.12.84.82.73.95.66.101.108.103.97.99.111.109.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[99] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.66.101.108.103.97.99.111.109.0 Device[4] HT[1] DS[99] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.66.101.108.103.97.99.111.109.0', output: U enterprises.7684.2.14.16.1.3.12.84.82.73.95.73.80.32.86.111.105.99.101.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[100] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.80.32.86.111.105.99.101.0 Device[4] HT[1] DS[100] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.80.32.86.111.105.99.101.0', output: U enterprises.7684.2.14.16.1.4.12.84.82.73.95.73.80.32.86.111.105.99.101.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[100] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.80.32.86.111.105.99.101.0 Device[4] HT[1] DS[100] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.80.32.86.111.105.99.101.0', output: U enterprises.7684.2.14.16.1.6.12.84.82.73.95.73.80.32.86.111.105.99.101.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[100] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.80.32.86.111.105.99.101.0 Device[4] HT[1] DS[100] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.80.32.86.111.105.99.101.0', output: U enterprises.7684.2.14.16.1.7.12.84.82.73.95.73.80.32.86.111.105.99.101.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[100] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.80.32.86.111.105.99.101.0 Device[4] HT[1] DS[100] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.80.32.86.111.105.99.101.0', output: U enterprises.7684.2.14.16.1.3.12.84.82.73.95.73.88.67.95.86.73.86.65.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[101] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.88.67.95.86.73.86.65.0 Device[4] HT[1] DS[101] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.88.67.95.86.73.86.65.0', output: U enterprises.7684.2.14.16.1.4.12.84.82.73.95.73.88.67.95.86.73.86.65.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[101] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.88.67.95.86.73.86.65.0 Device[4] HT[1] DS[101] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.88.67.95.86.73.86.65.0', output: U enterprises.7684.2.14.16.1.6.12.84.82.73.95.73.88.67.95.86.73.86.65.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[101] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.88.67.95.86.73.86.65.0 Device[4] HT[1] DS[101] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.88.67.95.86.73.86.65.0', output: U enterprises.7684.2.14.16.1.7.12.84.82.73.95.73.88.67.95.86.73.86.65.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[101] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.88.67.95.86.73.86.65.0 Device[4] HT[1] DS[101] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.88.67.95.86.73.86.65.0', output: U enterprises.7684.2.14.16.1.3.12.84.82.73.95.73.98.97.115.105.115.32.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[102] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.98.97.115.105.115.32.49.0 Device[4] HT[1] DS[102] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.98.97.115.105.115.32.49.0', output: U enterprises.7684.2.14.16.1.4.12.84.82.73.95.73.98.97.115.105.115.32.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[102] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.98.97.115.105.115.32.49.0 Device[4] HT[1] DS[102] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.98.97.115.105.115.32.49.0', output: U enterprises.7684.2.14.16.1.6.12.84.82.73.95.73.98.97.115.105.115.32.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[102] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.49.0 Device[4] HT[1] DS[102] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.49.0', output: U enterprises.7684.2.14.16.1.7.12.84.82.73.95.73.98.97.115.105.115.32.49.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[102] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.49.0 Device[4] HT[1] DS[102] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.49.0', output: U enterprises.7684.2.14.16.1.3.12.84.82.73.95.73.98.97.115.105.115.32.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[103] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.98.97.115.105.115.32.50.0 Device[4] HT[1] DS[103] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.98.97.115.105.115.32.50.0', output: U enterprises.7684.2.14.16.1.4.12.84.82.73.95.73.98.97.115.105.115.32.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[103] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.98.97.115.105.115.32.50.0 Device[4] HT[1] DS[103] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.98.97.115.105.115.32.50.0', output: U enterprises.7684.2.14.16.1.6.12.84.82.73.95.73.98.97.115.105.115.32.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[103] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.50.0 Device[4] HT[1] DS[103] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.50.0', output: U enterprises.7684.2.14.16.1.7.12.84.82.73.95.73.98.97.115.105.115.32.50.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[103] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.50.0 Device[4] HT[1] DS[103] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.50.0', output: U enterprises.7684.2.14.16.1.3.12.84.82.73.95.73.98.97.115.105.115.32.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[104] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.98.97.115.105.115.32.51.0 Device[4] HT[1] DS[104] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca' '12.84.82.73.95.73.98.97.115.105.115.32.51.0', output: U enterprises.7684.2.14.16.1.4.12.84.82.73.95.73.98.97.115.105.115.32.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[104] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.98.97.115.105.115.32.51.0 Device[4] HT[1] DS[104] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca' '12.84.82.73.95.73.98.97.115.105.115.32.51.0', output: U enterprises.7684.2.14.16.1.6.12.84.82.73.95.73.98.97.115.105.115.32.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[104] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0 Device[4] HT[1] DS[104] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'ic_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0', output: U enterprises.7684.2.14.16.1.7.12.84.82.73.95.73.98.97.115.105.115.32.51.0: Unknown Object Identifier (Sub-id not found: (top) -> enterprises) Device[4] DS[104] ERROR: Empty result [172.16.200.229]: '/bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0 Device[4] HT[1] DS[104] SCRIPT: /bin/bash /home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '172.16.200.229' 'public' '2' 'get' 'og_ca_su' '12.84.82.73.95.73.98.97.115.105.115.32.51.0', output: U Device[4] HT[1] DS[48] SNMP: v2: 172.16.200.229, dsname: traffic_in, oid: .1.3.6.1.2.1.31.1.1.1.6.119, value: 1641716408 Device[4] HT[1] DS[48] SNMP: v2: 172.16.200.229, dsname: traffic_out, oid: .1.3.6.1.2.1.31.1.1.1.10.119, value: 1670874 Device[4] HT[1] DS[49] SNMP: v2: 172.16.200.229, dsname: traffic_in, oid: .1.3.6.1.2.1.31.1.1.1.6.120, value: 7160 Device[4] HT[1] DS[49] SNMP: v2: 172.16.200.229, dsname: traffic_out, oid: .1.3.6.1.2.1.31.1.1.1.10.120, value: 422370 Device[4] HT[1] Total Time: 1.2 Seconds POLLER: Active Threads is 0, Pending is 0 SPINE: The Final Value of Threads is 0 Time: 1.3116 s, Threads: 1, Devices: 2
Okay this explains a lot. Basically those error messages that the OID is not found are a common mistake that template developers make. Spine, by default, does not load up the mib files, so it has no way to parse 'enterprise'. This is a documented feature of spine. So, basically, you have to change your scripts to replace 'enterprise' with the numeric oid of 'enterprise'.
Simply make the changes in the script and then rerun as above until you are getting the proper output. 'enterprise' is think is like '.1.3.6.1.4.1'.
You are right, I changed in the script 'enterprise' for '1.3.6.1.4.1' and now is working. Thank you so much.
Best regards,
👍
After switch the poller type form cmd.php to spine, some graphs stops to populate. I got this error messages in logs: 2020/02/25 12:50:04 - SPINE: Poller[Main Poller] PID[25953] Device[SBC1LDV-00] DS[ODO_SIP_Trunk_BPD SBC1LDV-00 ASR] Graphs[ODO_SIP_Trunk_BPD SBC1LDV-00 ASR] ERROR: Empty result [172.16.148.2]: '/home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '"172.16.148.2"' '"public"' '"2"' 'get' 'og_ca' '17.79.68.79.95.83.73.80.32.84.114.117.110.107.32.66.80.68.0''
2020/02/25 12:50:04 - SPINE: Poller[Main Poller] PID[25953] Device[SBC1LDV-00] DS[ODO_SIP_Trunk_BPD SBC1LDV-00 ASR] Graphs[ODO_SIP_Trunk_BPD SBC1LDV-00 ASR] ERROR: Empty result [172.16.148.2]: '/home/cacti/Nodes/Genband/scripts/SBC3RRA_sip '"172.16.148.2"' '"public"' '"2"' 'get' 'ic_ca' '17.79.68.79.95.83.73.80.32.84.114.117.110.107.32.66.80.68.0''
I noted that a single quote ('') is added and I don't know why. Without this quote the script will run correctly, and don't generate the empty result.
Can you help me whit this issue?
I'm using the last version of cacti and spine.