Master Agent Not Listening on Port and Subagent fails to connect
Steve Stetka <[email protected]>
| Newsgroups | gmane.network.net-snmp.user |
|---|---|
| Message-ID | <[email protected]> |
NET-SNMP 5.4.1
Ubuntu 9.0.4
I've been having a heck of a time trying to get an snmp subagent to connect to the master agent. The master agent is running as a daemon and explicitly configured to use as the agentx socket 127.0.0.1:705. The main subagent code is based off of the net-snmp example-demon tutorial with the addition of the following line:
netsnmp_ds_set_string(NETSNMP_DS_APPLICATION_ID,
NETSNMP_DS_AGENT_X_SOCKET, "127.0.0.1:705");
With the master agent up and running, I start the subagent (as superuser) and get the following:
Warning: Failed to connect to the agentx master agent (127.0.0.1:705):
So I kill the subagent and start it with strace and see the following:
socket(PF_FILE, SOCK_STREAM, 0) = 7
connect(7, {sa_family=AF_FILE, path="127.0.0.1:705"...}, 110) = -1 ENOENT (No such file or directory)
close(7) = 0
write(2, "Warning: Failed to connect to the"..., 72Warning: Failed to connect to the agentx master agent (127.0.0.1:705):
) = 72
So I then execute a netstat -an and grep for LISTEN. Nothing is listening on port 705. So I begin to think that connections to port 705 are not allowed. I'm using ubuntu, so I had to determine how to enable port connections. I discovered a couple of ways. First was iptables. Wasn't sure if I needed tcp or udp so I executed the following:
sudo iptables -A INPUT -j ACCEPT -p tcp --destination-port 705 -i eth0
sudo iptables -A INPUT -j ACCEPT -p udp --destination-port 705 -i eth0
Then I discovered some ubuntu firewall commands and executed them:
sudo ufw default allow
sudo ufw allow 705
I still get the Failed to connect warning; and I still do not see anything listening on port 705. So I updated the system to start snmdp with the following debug flags:
-Dagentx -Dtdomain -Dnetsnmp_ds
I've included the debug output below. I've also included my .conf file as well as the trace from the subagent. Not sure what else to do.
Thanks,
Steve
------------------------- snmpd.conf ----------------------------
rwuser user0001 priv system
createUser user0001 MD5 user0001 AES user0001
master agentx
agentxSocket 127.0.0.1:705
------------------------- snmpd debug ----------------------------
sgstet@ubuntu:~$ sudo /etc/init.d/snmpd start
[sudo] password for sgstet:
* Starting network management services: [80G No log handling enabled - turning on stderr logging
registered debug token agentx, 1
registered debug token tdomain, 1
registered debug token netsnmp_ds, 1
netsnmp_ds_set_int: Setting APP:1 = 114
netsnmp_ds_set_string: Setting APP:2 = "127.0.0.1"
netsnmp_ds_set_boolean: Setting APP:1 = 0/False
netsnmp_ds_set_boolean: Setting LIB:11 = 1/True
netsnmp_ds_set_boolean: Setting APP:1 = 0/False
netsnmp_ds_set_boolean: Setting APP:1 = 0/False
netsnmp_ds_set_string: Setting LIB:6 = "snmpd"
tdomain: netsnmp_tdomain_init() called
tdomain: domain_list -> { iso.3.6.1.6.1.1, "udp" } -> { iso.3.6.1.2.1.100.1.5, "tcp" } -> { iso.3.6.1.2.1.100.1.13, "unix" } -> { iso.3.6.1.2.1.100.1.2, "udp6/ipv6/udpv6/udpipv6" } -> { iso.3.6.1.2.1.100.1.6, "tcp6/tcpv6/tcpipv6" } -> [NIL]
netsnmp_ds_set_int: Setting LIB:6 = 16
netsnmp_ds_set_boolean: Setting LIB:20 = 1/True
agentx_register_app_config_handler: registering .conf token for "agentxsocket"
agentx_register_app_config_handler: registering .conf token for "agentxperms"
agentx_register_app_config_handler: registering .conf token for "agentxRetries"
agentx_register_app_config_handler: registering .conf token for "agentxTimeout"
netsnmp_ds_set_int: Setting APP:11 = 3
netsnmp_ds_set_int: Setting APP:12 = 2
[74G[ OK ]
]0;sgstet@ubuntu: ~sgstet@ubuntu:~$ netsnmp_ds_set_string: Setting LIB:9 = "/etc/snmp:/usr/share/snmp:/usr/lib/snmp:/home/sgstet/.snmp"
netsnmp_ds_set_string: Setting LIB:8 = "/var/lib/snmp"
netsnmp_ds_set_boolean: Setting LIB:26 = 1/True
netsnmp_ds_set_string: Setting LIB:11 = "/usr/share/snmp/mibs"
netsnmp_ds_set_string: Setting LIB:11 = "/usr/share/snmp/mibs"
Cannot find module (RTN-CCM-MIB): At line 0 in (none)
Turning on AgentX master support.
netsnmp_ds_set_boolean: Setting APP:3 = 1/True
agentx/config: port spec: 127.0.0.1:705
netsnmp_ds_set_string: Setting APP:1 = "127.0.0.1:705"
netsnmp_ds_set_boolean: Setting LIB:27 = 1/True
agentx/master: initializing...
tdomain: tdomain_transport_full("agentx", "127.0.0.1:705", 1, "[NIL]", "[NIL]")
tdomain: Found no domain from specifier "127.0.0.1"
tdomain: Use application default domain "unix"
tdomain: Found domain "unix" from specifier "unix"
tdomain: domain "unix" address "127.0.0.1:705" default address "/var/agentx/master"
agentx/master: initializing... DONE
tdomain: tdomain_transport_full("snmp", "127.0.0.1", 1, "[NIL]", "[NIL]")
tdomain: Use application default domain "udp"
tdomain: Found domain "udp" from specifier "udp"
tdomain: domain "udp" address "127.0.0.1" default address ":161"
NET-SNMP version 5.4.1
------------------------- subagent strace ----------------------------
sgstet@ubuntu:~/code$ sudo strace ./subagent-demon
execve("./subagent-demon", ["./subagent-demon"], [/* 16 vars */]) = 0
brk(0) = 0x9d88000
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f20000
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=53035, ...}) = 0
mmap2(NULL, 53035, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f13000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/usr/lib/libnetsnmpmibs.so.15", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\346\1\0004\0\0\0\230"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=1112232, ...}) = 0
mmap2(NULL, 1227288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7de7000
mmap2(0xb7ef0000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x109) = 0xb7ef0000
mmap2(0xb7ef7000, 113176, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7ef7000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/usr/lib/libnetsnmpagent.so.15", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000\231\0\0004\0\0\0\240"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=277640, ...}) = 0
mmap2(NULL, 283516, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7da1000
mmap2(0xb7de4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x42) = 0xb7de4000
mmap2(0xb7de6000, 892, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7de6000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/usr/lib/libnetsnmphelpers.so.15", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@f\0\0004\0\0\0\300"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=136912, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7da0000
mmap2(NULL, 140288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7d7d000
mmap2(0xb7d9e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20) = 0xb7d9e000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/usr/lib/libnetsnmp.so.15", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\363\0\0004\0\0\0\254"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=604092, ...}) = 0
mmap2(NULL, 732848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7cca000
mprotect(0xb7d5b000, 4096, PROT_NONE) = 0
mmap2(0xb7d5c000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x91) = 0xb7d5c000
mmap2(0xb7d5f000, 122544, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7d5f000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/tls/i686/cmov/libc.so.6", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320h\1\0004\0\0\0\344"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1442180, ...}) = 0
mmap2(NULL, 1451632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7b67000
mprotect(0xb7cc3000, 4096, PROT_NONE) = 0
mmap2(0xb7cc4000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15c) = 0xb7cc4000
mmap2(0xb7cc7000, 9840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7cc7000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/libwrap.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \"\0\0004\0\0\0\10"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=30960, ...}) = 0
mmap2(NULL, 35868, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7b5e000
mmap2(0xb7b65000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6) = 0xb7b65000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/usr/lib/libperl.so.5.10", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320Y\2\0004\0\0\0$"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=1379164, ...}) = 0
mmap2(NULL, 1378136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7a0d000
mmap2(0xb7b59000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14c) = 0xb7b59000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/tls/i686/cmov/libm.so.6", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@4\0\0004\0\0\0P"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=149328, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7a0c000
mmap2(NULL, 151680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb79e6000
mmap2(0xb7a0a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23) = 0xb7a0a000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/tls/i686/cmov/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000H\0\0004\0\0\0\330"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=116405, ...}) = 0
mmap2(NULL, 98780, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb79cd000
mmap2(0xb79e2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14) = 0xb79e2000
mmap2(0xb79e4000, 4572, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb79e4000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/tls/i686/cmov/libcrypt.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \7\0\0004\0\0\0008"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=38296, ...}) = 0
mmap2(NULL, 201052, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb799b000
mmap2(0xb79a4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8) = 0xb79a4000
mmap2(0xb79a6000, 155996, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb79a6000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/i686/cmov/libcrypto.so.0.9.8", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\303\3\0004\0\0\0\204"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=1340132, ...}) = 0
mmap2(NULL, 1356536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb784f000
mmap2(0xb7982000, 86016, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x132) = 0xb7982000
mmap2(0xb7997000, 13048, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7997000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/tls/i686/cmov/libdl.so.2", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \n\0\0004\0\0\0D"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=9676, ...}) = 0
mmap2(NULL, 12408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb784b000
mmap2(0xb784d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb784d000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/usr/lib/libsensors.so.3", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\217\0\0004\0\0\0\204"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=220564, ...}) = 0
mmap2(NULL, 223980, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7814000
mmap2(0xb7829000, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15) = 0xb7829000
mmap2(0xb784a000, 2796, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb784a000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/tls/i686/cmov/libnsl.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p1\0\0004\0\0\0\234"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=87804, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7813000
mmap2(NULL, 100328, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb77fa000
mmap2(0xb780f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14) = 0xb780f000
mmap2(0xb7811000, 6120, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7811000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/libz.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\31\0\0004\0\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=83552, ...}) = 0
mmap2(NULL, 86284, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb77e4000
mmap2(0xb77f8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13) = 0xb77f8000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/libsysfs.so.2", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\34\0\0004\0\0\0\\"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=42308, ...}) = 0
mmap2(NULL, 45200, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb77d8000
mmap2(0xb77e2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9) = 0xb77e2000
close(3) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb77d7000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb77d6000
set_thread_area({entry_number:-1 -> 6, base_addr:0xb77d66c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
open("/dev/urandom", O_RDONLY) = 3
read(3, "\26\242\21\233"..., 4) = 4
close(3) = 0
mprotect(0xb77e2000, 4096, PROT_READ) = 0
mprotect(0xb77f8000, 4096, PROT_READ) = 0
mprotect(0xb780f000, 4096, PROT_READ) = 0
mprotect(0xb7829000, 4096, PROT_READ) = 0
mprotect(0xb784d000, 4096, PROT_READ) = 0
mprotect(0xb7982000, 32768, PROT_READ) = 0
mprotect(0xb79a4000, 4096, PROT_READ) = 0
mprotect(0xb79e2000, 4096, PROT_READ) = 0
mprotect(0xb7a0a000, 4096, PROT_READ) = 0
mprotect(0xb7b59000, 8192, PROT_READ) = 0
mprotect(0xb7b65000, 4096, PROT_READ) = 0
mprotect(0xb7cc4000, 8192, PROT_READ) = 0
mprotect(0xb7d5c000, 4096, PROT_READ) = 0
mprotect(0xb7d9e000, 4096, PROT_READ) = 0
mprotect(0xb7de4000, 4096, PROT_READ) = 0
mprotect(0xb7ef0000, 4096, PROT_READ) = 0
mprotect(0x804c000, 4096, PROT_READ) = 0
mprotect(0xb7f3f000, 4096, PROT_READ) = 0
munmap(0xb7f13000, 53035) = 0
set_tid_address(0xb77d6708) = 20439
set_robust_list(0xb77d6710, 0xc) = 0
futex(0xbff3e000, FUTEX_WAKE_PRIVATE, 1) = 0
rt_sigaction(SIGRTMIN, {0xb79d12e0, [], SA_SIGINFO}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0xb79d1720, [], SA_RESTART|SA_SIGINFO}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
uname({sys="Linux", node="ubuntu", ...}) = 0
brk(0) = 0x9d88000
brk(0x9da9000) = 0x9da9000
gettimeofday({1255267433, 707024}, NULL) = 0
pipe([3, 4]) = 0
gettimeofday({1255267433, 707779}, NULL) = 0
pipe([5, 6]) = 0
open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/locale.alias", O_RDONLY) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=2570, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "# Locale name alias data base.\n# "..., 4096) = 2570
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/lib/locale/en_US.UTF-8/LC_CTYPE", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/locale/en_US.utf8/LC_CTYPE", O_RDONLY) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=256316, ...}) = 0
mmap2(NULL, 256316, PROT_READ, MAP_PRIVATE, 7, 0) = 0xb7797000
close(7) = 0
open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=26048, ...}) = 0
mmap2(NULL, 26048, PROT_READ, MAP_SHARED, 7, 0) = 0xb7790000
close(7) = 0
futex(0xb7cc6a4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0
times({tms_utime=0, tms_stime=0, tms_cutime=0, tms_cstime=0}) = 1734818706
gettimeofday({1255267433, 711247}, NULL) = 0
stat64("/etc/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/snmp/ccm-snmp-subagent-demon.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/etc/snmp/ccm-snmp-subagent-demon.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/share/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/snmp/ccm-snmp-subagent-demon.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/usr/share/snmp/ccm-snmp-subagent-demon.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/snmp", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
stat64("/home/sgstet/.snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/home/sgstet/.snmp/ccm-snmp-subagent-demon.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/home/sgstet/.snmp/ccm-snmp-subagent-demon.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/var/lib/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/var/lib/snmp/ccm-snmp-subagent-demon.0.conf", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/ccm-snmp-subagent-demon.conf", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0600, st_size=716, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "#\n# net-snmp (or ucd-snmp) persis"..., 4096) = 716
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/var/lib/snmp/ccm-snmp-subagent-demon.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/etc/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/snmp/agentx.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/etc/snmp/agentx.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/share/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/snmp/agentx.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/usr/share/snmp/agentx.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/snmp", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
stat64("/home/sgstet/.snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/home/sgstet/.snmp/agentx.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/home/sgstet/.snmp/agentx.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/var/lib/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/var/lib/snmp/agentx.0.conf", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/agentx.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/agentx.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/etc/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/snmp/snmp.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/etc/snmp/snmp.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/share/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/snmp/snmp.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/usr/share/snmp/snmp.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/snmp", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
stat64("/home/sgstet/.snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/home/sgstet/.snmp/snmp.conf", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=19, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "mibs +RTN-CCM-MIB\n\n"..., 4096) = 19
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/home/sgstet/.snmp/snmp.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/var/lib/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/var/lib/snmp/snmp.0.conf", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/snmp.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/snmp.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/dev/urandom", O_RDONLY|O_NOCTTY|O_NONBLOCK) = 7
fstat64(7, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 9), ...}) = 0
poll([{fd=7, events=POLLIN}], 1, 10) = 1 ([{fd=7, revents=POLLIN}])
read(7, "\237\20NJw\3W\243\225\233}\225%2\335\232\256e\16\2\26\306>\377\234n\253\260k\375\311\251"..., 32) = 32
close(7) = 0
getuid32() = 0
time(NULL) = 1255267433
stat64("/home/sgstet/.snmp/mibs/.index", {st_mode=S_IFREG|0644, st_size=28, ...}) = 0
stat64("/home/sgstet/.snmp/mibs", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/home/sgstet/.snmp/mibs/.index", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=28, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "RTN-CCM-MIB RTN-CCM-MIB.mib\n"..., 4096) = 28
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
stat64("/usr/share/snmp/mibs/.index", {st_mode=S_IFREG|0644, st_size=2188, ...}) = 0
stat64("/usr/share/snmp/mibs", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/snmp/mibs/.index", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=2188, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "SNMP-TARGET-MIB SNMP-TARGET-MIB.t"..., 4096) = 2188
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/HOST-RESOURCES-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=52544, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "HOST-RESOURCES-MIB DEFINITIONS ::"..., 4096) = 4096
open("/usr/share/snmp/mibs/SNMPv2-SMI.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=8924, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "SNMPv2-SMI DEFINITIONS ::= BEGIN\n"..., 4096) = 4096
read(8, "65535)),\n objectID-value\n "..., 4096) = 4096
read(8, "ON ::=\n value(VA"..., 4096) = 732
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
open("/usr/share/snmp/mibs/SNMPv2-TC.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=38034, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "SNMPv2-TC DEFINITIONS ::= BEGIN\n\n"..., 4096) = 4096
read(8, "eeds, the variable-\n b"..., 4096) = 4096
read(8, " station wishing to create a ne"..., 4096) = 4096
read(8, " | or | "..., 4096) = 4096
read(8, "r which the agent does not supply"..., 4096) = 4096
read(8, " least one conceptual "..., 4096) = 4096
read(8, " If the agent is unwilling to\n "..., 4096) = 4096
read(8, " make the conceptual ro"..., 4096) = 4096
read(8, "-- this value may be read, but no"..., 4096) = 4096
read(8, "readOnly(5) -- e.g., complete"..., 4096) = 1170
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
open("/usr/share/snmp/mibs/IF-MIB.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=71691, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "IF-MIB DEFINITIONS ::= BEGIN\n\nIMP"..., 4096) = 4096
open("/usr/share/snmp/mibs/SNMPv2-MIB.txt", O_RDONLY|O_LARGEFILE) = 9
fstat64(9, {st_mode=S_IFREG|0644, st_size=29305, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1d000
read(9, "SNMPv2-MIB DEFINITIONS ::= BEGIN\n"..., 4096) = 4096
read(9, "son for\n this managed "..., 4096) = 4096
read(9, "o various MIB modules supported\n "..., 4096) = 4096
read(9, "ory so that it remains\n "..., 4096) = 4096
read(9, " group\n--\n-- a collection of obje"..., 4096) = 4096
read(9, " defines objects which are common"..., 4096) = 4096
read(9, "ounter32\n MAX-ACCESS read-onl"..., 4096) = 4096
read(9, "NoSuchNames,\n snmpIn"..., 4096) = 633
read(9, ""..., 4096) = 0
close(9) = 0
munmap(0xb7f1d000, 4096) = 0
open("/usr/share/snmp/mibs/IANAifType-MIB.txt", O_RDONLY|O_LARGEFILE) = 9
fstat64(9, {st_mode=S_IFREG|0644, st_size=24065, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1d000
read(9, " IANAifType-MIB DEFINITIONS ::="..., 4096) = 4096
read(9, " -- Sept 19, 2001\n DESCRIP"..., 4096) = 4096
read(9, " rfc877x25(5),\n "..., 4096) = 4096
read(9, "ing\n isdns(75),"..., 4096) = 4096
read(9, "SL\n\t\t ieee1394 (144), -- IEEE13"..., 4096) = 4096
read(9, " Group D\n voice"..., 4096) = 3585
read(9, ""..., 4096) = 0
close(9) = 0
munmap(0xb7f1d000, 4096) = 0
read(8, " SYNTAX Integer32\n MAX"..., 4096) = 4096
read(8, "he\n size of the larges"..., 4096) = 4096
read(8, "\n network management s"..., 4096) = 4096
read(8, "d at other\n times as i"..., 4096) = 4096
read(8, "c MIB specify what value\n "..., 4096) = 4096
read(8, "the value of\n ifCounte"..., 4096) = 4096
read(8, "f\n ifCounterDiscontinu"..., 4096) = 4096
read(8, " current\n DESCRIPTION\n "..., 4096) = 4096
read(8, "ackStatus.x.y=active\n\n "..., 4096) = 4096
read(8, "US current\n DESCRIPTION\n "..., 4096) = 4096
read(8, "pliances OBJECT IDENTIFIER ::= { "..., 4096) = 4096
read(8, " ifTableLastChange }\n "..., 4096) = 4096
read(8, " STATUS current\n DESCRIPTION\n"..., 4096) = 4096
read(8, "incremented by the agent (per the"..., 4096) = 4096
read(8, "om 'notInUse(1)' to 'inUse(2)'.\n "..., 4096) = 4096
read(8, " STATUS deprecated\n DESCRIPT"..., 4096) = 4096
read(8, "TION\n \"This group is m"..., 4096) = 2059
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, "BJECT IDENTIFIER ::= { host 7 }\n\n"..., 4096) = 4096
read(7, "X Gauge32\n MAX-ACCESS read"..., 4096) = 4096
read(7, "T-TYPE\n SYNTAX AutonomousT"..., 4096) = 4096
read(7, " The value for each device mu"..., 4096) = 4096
read(7, "D object might be\n named h"..., 4096) = 4096
read(7, "\n noPaper "..., 4096) = 4096
read(7, " SYNTAX SEQUENCE OF HrPartiti"..., 4096) = 4096
read(7, "FSIndex }\n ::= { hrFSTable 1 }"..., 4096) = 4096
read(7, " have the value corresponding to "..., 4096) = 4096
read(7, "of this software.\"\n ::= { hrSW"..., 4096) = 4096
read(7, "at no data in this table is\n "..., 4096) = 4096
read(7, " required.\"\n\n GROUP hrSWRunG"..., 4096) = 3392
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/HOST-RESOURCES-TYPES.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=10583, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "HOST-RESOURCES-TYPES DEFINITIONS "..., 4096) = 4096
read(7, "rent\n DESCRIPTION\n \"The"..., 4096) = 4096
read(7, " \"The file system type identifier"..., 4096) = 2391
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/UCD-DLMOD-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=3010, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "UCD-DLMOD-MIB DEFINITIONS ::= BEG"..., 4096) = 3010
open("/usr/share/snmp/mibs/UCD-SNMP-MIB.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=44629, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "UCD-SNMP-MIB DEFINITIONS ::= BEGI"..., 4096) = 4096
read(8, "gned in the ucdExperimental branc"..., 4096) = 4096
read(8, "\tDisplayString\n}\n\nprIndex OBJECT-"..., 4096) = 4096
read(8, "TAX\tDisplayString\n MAX-ACCESS\t"..., 4096) = 4096
read(8, " and swap space or virtual me"..., 4096) = 4096
read(8, "dskUsed\t\tInteger32,\n dskPercen"..., 4096) = 4096
brk(0x9dca000) = 0x9dca000
brk(0x9dc9000) = 0x9dc9000
read(8, "TATUS\tcurrent\n DESCRIPTION\n\t\"T"..., 4096) = 4096
read(8, "each module's OID it is responsib"..., 4096) = 4096
read(8, " deprecated in favour of\n "..., 4096) = 4096
read(8, "ON\n \"The number of 'ticks'"..., 4096) = 4096
read(8, " UNITS \"kB\"\n MAX-ACCES"..., 4096) = 3669
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/UCD-DISKIO-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=4402, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "UCD-DISKIO-MIB DEFINITIONS ::= BE"..., 4096) = 4096
read(7, " \"The number of bytes read fr"..., 4096) = 306
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/LM-SENSORS-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=5931, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "LM-SENSORS-MIB DEFINITIONS ::= BE"..., 4096) = 4096
read(7, " MAX-ACCESS read-only\n STAT"..., 4096) = 1835
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/IP-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=185928, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "IP-MIB DEFINITIONS ::= BEGIN\n\nIMP"..., 4096) = 4096
open("/usr/share/snmp/mibs/INET-ADDRESS-MIB.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=16782, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "INET-ADDRESS-MIB DEFINITIONS ::= "..., 4096) = 4096
read(8, "),\n ipv6z(4),"..., 4096) = 4096
read(8, " with its zone index:\n\n "..., 4096) = 4096
read(8, "must be defined as\n part "..., 4096) = 4096
read(8, "0.\n\n Note that this textu"..., 4096) = 398
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, "munication and\n should"..., 4096) = 4096
read(7, " held while they are awaiting "..., 4096) = 4096
read(7, "r IPv4 is enabled (up) or disable"..., 4096) = 4096
read(7, "cation is released as an RFC; how"..., 4096) = 4096
read(7, "OBJECT-TYPE\n SYNTAX SEQUEN"..., 4096) = 4096
read(7, "pSystemStatsDiscontinuityTime.\"\n "..., 4096) = 4096
read(7, " \"The number of locally-add"..., 4096) = 4096
read(7, "erface for some of the datagrams."..., 4096) = 4096
read(7, "emStatsEntry 20 }\n\nipSystemStatsH"..., 4096) = 4096
read(7, "essfully\n fragmented d"..., 4096) = 4096
read(7, ".\n\n Discontinuities in"..., 4096) = 4096
read(7, "\"\n ::= { ipSystemStatsEntry 39"..., 4096) = 4096
read(7, "ount of\n time required"..., 4096) = 4096
read(7, " \"The index value that uni"..., 4096) = 4096
read(7, "ncludes invalid addresses (e.g., "..., 4096) = 4096
read(7, "alization of the management syste"..., 4096) = 4096
read(7, " \"The total number of IP data"..., 4096) = 4096
read(7, "ng interface is incremented for a"..., 4096) = 4096
read(7, "e of this counter can occur at\n "..., 4096) = 4096
read(7, " \"The total number of o"..., 4096) = 4096
read(7, " current\n DESCRIPTION\n "..., 4096) = 4096
read(7, "ddressPrefixEntry 5 }\n\nipAddressP"..., 4096) = 4096
read(7, "n multicast address information.\n"..., 4096) = 4096
read(7, " used for communication.\n\n "..., 4096) = 4096
read(7, "ame interface as\n iden"..., 4096) = 4096
read(7, "ation before entering\n "..., 4096) = 4096
read(7, " MAX-ACCESS read-only\n STATUS"..., 4096) = 4096
read(7, "\n\n Implementers need t"..., 4096) = 4096
read(7, "ersistent, and when this\n "..., 4096) = 4096
read(7, "eate\n STATUS current\n D"..., 4096) = 4096
read(7, "StatsInErrors Counter32,\n "..., 4096) = 4096
read(7, "put packets for this AF and type."..., 4096) = 4096
read(7, " ipv4z(3), ipv6z(4)"..., 4096) = 4096
read(7, "o provide write access to this\n "..., 4096) = 4096
read(7, "te access to this\n obj"..., 4096) = 4096
read(7, "rent\n DESCRIPTION\n \""..., 4096) = 4096
read(7, "PrefixOnLinkFlag,\n "..., 4096) = 4096
read(7, " discovered in processi"..., 4096) = 4096
read(7, "US deprecated\n DESCRIPTION"..., 4096) = 4096
read(7, "eutral\n table has been"..., 4096) = 4096
read(7, "ranslation table\n\n-- The Address "..., 4096) = 4096
read(7, "vant ipNetToMediaType object.\n\n "..., 4096) = 4096
read(7, " SYNTAX Counter32\n MAX-A"..., 4096) = 4096
read(7, "e number of ICMP Source Quench me"..., 4096) = 4096
read(7, "ails,\n ipFragCreat"..., 4096) = 1608
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/TCP-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=28564, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "TCP-MIB DEFINITIONS ::= BEGIN\n\nIM"..., 4096) = 4096
read(7, "ns OBJECT-TYPE\n SYNTAX Cou"..., 4096) = 4096
read(7, " on currently established"..., 4096) = 4096
read(7, "mplementors should be\n "..., 4096) = 4096
read(7, ".0.0.2 would\n use Inet"..., 4096) = 4096
read(7, "transient in that it ceases to ex"..., 4096) = 4096
read(7, " and IPv6 address types.\n "..., 4096) = 3988
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/UDP-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=20882, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "UDP-MIB DEFINITIONS ::= BEGIN\n\nIM"..., 4096) = 4096
read(7, "nd at\n other times as "..., 4096) = 4096
read(7, "ecifying a default remote\n "..., 4096) = 4096
read(7, " Only\n IPv4, IPv4z, IP"..., 4096) = 4096
read(7, " case of a UDP listene"..., 4096) = 4096
read(7, " DESCRIPTION\n \"The grou"..., 4096) = 402
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/RFC1213-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=79667, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "RFC1213-MIB DEFINITIONS ::= BEGIN"..., 4096) = 4096
open("/usr/share/snmp/mibs/RFC1155-SMI.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=3067, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "RFC1155-SMI DEFINITIONS ::= BEGIN"..., 4096) = 3067
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, "alue which indicates the set of s"..., 4096) = 4096
read(7, "ion\n of the hardware i"..., 4096) = 4096
read(7, "l network management\n "..., 4096) = 4096
read(7, "lue of this\n object re"..., 4096) = 4096
read(7, " ::= { atEntry 3 }\n\n-- the IP g"..., 4096) = 4096
read(7, "nter\n ACCESS read-only\n ST"..., 4096) = 4096
read(7, "::= { ip 20 }\n\nipAddrEntry OBJECT"..., 4096) = 4096
read(7, " management protocol in use"..., 4096) = 4096
read(7, " other(1), -- none of t"..., 4096) = 4096
read(7, "BJECT-TYPE\n SYNTAX SEQUENCE O"..., 4096) = 4096
read(7, "ages received.\"\n ::= { icmp 3 "..., 4096) = 4096
read(7, "s OBJECT-TYPE\n SYNTAX Counter"..., 4096) = 4096
read(7, "TYPE\n SYNTAX Counter\n ACCE"..., 4096) = 4096
read(7, "793) of the\n correspon"..., 4096) = 4096
read(7, "{ udpEntry 1 }\n\nudpLocalPort OBJE"..., 4096) = 4096
read(7, "YNTAX Counter\n ACCESS read-o"..., 4096) = 4096
read(7, "he Internet standardization proce"..., 4096) = 4096
read(7, "protocol error to generate an SNM"..., 4096) = 4096
read(7, "l number of SNMP Get-Request PDUs"..., 4096) = 1843
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/NOTIFICATION-LOG-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=24723, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "NOTIFICATION-LOG-MIB DEFINITIONS "..., 4096) = 4096
open("/usr/share/snmp/mibs/SNMP-FRAMEWORK-MIB.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=22342, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "SNMP-FRAMEWORK-MIB DEFINITIONS ::"..., 4096) = 4096
read(8, "hat an\n address m"..., 4096) = 4096
read(8, "ngth 27\n\n 6-"..., 4096) = 4096
read(8, " - Values greater than 255 a"..., 4096) = 4096
read(8, "d by\n amendments "..., 4096) = 4096
read(8, "um of the maximum\n "..., 4096) = 1862
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, "nsigned32,\n nlmConfigLogAdminS"..., 4096) = 4096
read(7, "\"The number of Notifications put "..., 4096) = 4096
read(7, "DateAndTime DateAndTime,"..., 4096) = 4096
read(7, " SEQUENCE OF NlmLogVariableEnt"..., 4096) = 4096
read(7, " when nlmLogVariableType is 'obje"..., 4096) = 4096
read(7, "date and time and should not be i"..., 4096) = 147
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/DISMAN-EVENT-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=68177, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "DISMAN-EVENT-MIB DEFINITIONS ::= "..., 4096) = 4096
open("/usr/share/snmp/mibs/SNMP-TARGET-MIB.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=22769, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "SNMP-TARGET-MIB DEFINITIONS ::= B"..., 4096) = 4096
read(8, " representation is identic"..., 4096) = 4096
read(8, "mpty list (i.e. there are no tag "..., 4096) = 4096
read(8, " interval is implementation depe"..., 4096) = 4096
read(8, "me SnmpAdminString,\n "..., 4096) = 4096
read(8, " MAX-ACCESS read-only\n STAT"..., 4096) = 2289
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, " notWritable(17),\n "..., 4096) = 4096
read(7, "dminString,\n mteTriggerTest "..., 4096) = 4096
read(7, "lue }\n ::= { mteTriggerEntry 5"..., 4096) = 4096
read(7, "d-create\n STATUS current\n"..., 4096) = 4096
read(7, " OBJECT IDENTIFIER ::= { sysUpTim"..., 4096) = 4096
read(7, "t.\n\n absent(1) - when thi"..., 4096) = 4096
read(7, "ValueID is compared to\n mt"..., 4096) = 4096
read(7, " mteTriggerThresholdFallingEven"..., 4096) = 4096
read(7, "vent is not\n triggered unt"..., 4096) = 4096
read(7, "erThresholdDeltaRisingEvent OBJEC"..., 4096) = 4096
brk(0x9dea000) = 0x9dea000
read(7, " OID for obtaining this ob"..., 4096) = 4096
read(7, " ::= { mteEventEntry 5 }\n\n--\n-- "..., 4096) = 4096
read(7, " fills the wildcard without havin"..., 4096) = 4096
read(7, "US current\n DESCRIPTION\n "..., 4096) = 4096
read(7, "IBGroups OBJECT IDENTIFIER :"..., 4096) = 4096
read(7, " mteTriggerThresholdSta"..., 4096) = 2641
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/DISMAN-SCHEDULE-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=24613, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "DISMAN-SCHEDULE-MIB DEFINITIONS :"..., 4096) = 4096
read(7, "ects 1 }\n\n--\n-- The schedule tabl"..., 4096) = 4096
read(7, "TION\n \"The set of weekdays"..., 4096) = 4096
read(7, "21(21), h22(22), h23(23)\n "..., 4096) = 4096
read(7, "dar schedule with the additional "..., 4096) = 4096
read(7, "ffect on whether other\n o"..., 4096) = 4096
read(7, "ies.\"\n ::= { schedGroups 1 }\n\n"..., 4096) = 37
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/UCD-DEMO-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=2163, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "UCD-DEMO-MIB DEFINITIONS ::= BEGI"..., 4096) = 2163
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=15732, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "NET-SNMP-AGENT-MIB DEFINITIONS ::"..., 4096) = 4096
open("/usr/share/snmp/mibs/NET-SNMP-MIB.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=2036, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "NET-SNMP-MIB DEFINITIONS ::= BEGI"..., 4096) = 2036
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, "sConfiguration 2}\n\nnsDebugEnabled"..., 4096) = 4096
read(7, " should be applied.\"\n ::= { "..., 4096) = 4096
read(7, " 1 }\n\nnsmRegistrationPoint OBJECT"..., 4096) = 3444
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/SNMP-MPD-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=5496, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "SNMP-MPD-MIB DEFINITIONS ::= BEGI"..., 4096) = 4096
read(7, " current\n DESCRIPTION \"The"..., 4096) = 1400
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/SNMP-USER-BASED-SM-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=39201, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "SNMP-USER-BASED-SM-MIB DEFINITION"..., 4096) = 4096
read(7, "AuthProtocol OBJECT-IDENTITY\n "..., 4096) = 4096
read(7, "n case of MD5) of the 'delta' com"..., 4096) = 4096
read(7, "y\n STATUS current\n DE"..., 4096) = 4096
read(7, "If the new user will never use pr"..., 4096) = 4096
read(7, "another conceptual row in this\n "..., 4096) = 4096
read(7, "40)) for HMACSHA\n MAX-ACCESS "..., 4096) = 4096
read(7, " returned.\n \"\n "..., 4096) = 4096
read(7, "me of the operation\n "..., 4096) = 4096
read(7, " clause states under which circum"..., 4096) = 2337
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/SNMP-VIEW-BASED-ACM-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=34162, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "SNMP-VIEW-BASED-ACM-MIB DEFINITIO"..., 4096) = 4096
read(7, "n changes). Such\n "..., 4096) = 4096
read(7, "s.\n\n This groupNa"..., 4096) = 4096
read(7, " than the longest one rem"..., 4096) = 4096
read(7, "DESCRIPTION \"The value of an inst"..., 4096) = 4096
read(7, " view. The\n vacm"..., 4096) = 4096
read(7, " for instance-level access\n "..., 4096) = 4096
read(7, " corresponding instance of vac"..., 4096) = 4096
read(7, "ESCRIPTION \"Write access is not "..., 4096) = 1394
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/SNMP-COMMUNITY-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=15490, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "SNMP-COMMUNITY-MIB DEFINITIONS ::"..., 4096) = 4096
read(7, "snmpCommunityStatus "..., 4096) = 4096
read(7, " the\n\n snmpTargetAddrTabl"..., 4096) = 4096
read(7, " contain the value of the commu"..., 4096) = 3202
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/IPV6-ICMP-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=15936, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, " IPV6-ICMP-MIB DEFINITIONS ::= BE"..., 4096) = 4096
open("/usr/share/snmp/mibs/IPV6-MIB.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=48703, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, " IPV6-MIB DEFINITIONS ::= BEGIN\n\n"..., 4096) = 4096
open("/usr/share/snmp/mibs/IPV6-TC.txt", O_RDONLY|O_LARGEFILE) = 9
fstat64(9, {st_mode=S_IFREG|0644, st_size=2367, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1d000
read(9, "IPV6-TC DEFINITIONS ::= BEGIN\n\nIM"..., 4096) = 2367
read(9, ""..., 4096) = 0
close(9) = 0
munmap(0xb7f1d000, 4096) = 0
read(8, "\n \"An interface entry conta"..., 4096) = 4096
read(8, "object. For interfaces which do n"..., 4096) = 4096
read(8, "s\n Counter32,\n "..., 4096) = 4096
read(8, "nly\n STATUS current\n "..., 4096) = 4096
read(8, "Entry 18 }\n\n ipv6IfStatsInMcastPk"..., 4096) = 4096
read(8, "table\n\n -- The IPv6 address table"..., 4096) = 4096
read(8, " current\n DESCRIPTION\n "..., 4096) = 4096
read(8, " to a route for which the next "..., 4096) = 4096
read(8, "ns specific to the\n partic"..., 4096) = 4096
read(8, " interface address.\"\n ::= { i"..., 4096) = 4096
read(8, " \"An agent is not required to pro"..., 4096) = 3647
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, " Counter32 ,\n "..., 4096) = 4096
read(7, "terface.\"\n ::= { ipv6IfIcmpEn"..., 4096) = 4096
read(7, " DESCRIPTION\n \"The number"..., 4096) = 3648
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/IPV6-TCP-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=7257, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "IPV6-TCP-MIB DEFINITIONS ::= BEGI"..., 4096) = 4096
read(7, "ion's local address\n\n (ip"..., 4096) = 3161
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/IPV6-UDP-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=4400, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "IPV6-UDP-MIB DEFINITIONS ::= BEGI"..., 4096) = 4096
read(7, "ed in this module\n "..., 4096) = 304
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/IP-FORWARD-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=46366, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "IP-FORWARD-MIB DEFINITIONS ::= BE"..., 4096) = 4096
open("/usr/share/snmp/mibs/IANA-RTPROTO-MIB.txt", O_RDONLY|O_LARGEFILE) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=3518, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1e000
read(8, "\nIANA-RTPROTO-MIB DEFINITIONS ::="..., 4096) = 3518
read(8, ""..., 4096) = 0
close(8) = 0
munmap(0xb7f1e000, 4096) = 0
read(7, "rs) in\n inetCidrRouteD"..., 4096) = 4096
read(7, "ault value for this object.\"\n "..., 4096) = 4096
read(7, "teEntry 11 }\n\ninetCidrRouteMetric"..., 4096) = 4096
read(7, " InetAddressType (unknown(0), ip"..., 4096) = 4096
read(7, "rRouteEntry\n MAX-ACCESS not-ac"..., 4096) = 4096
read(7, "extHop OBJECT-TYPE\n SYNTAX "..., 4096) = 4096
read(7, "value.\"\n ::= { ipCidrRouteEntr"..., 4096) = 4096
read(7, "ed\n DESCRIPTION\n \"Th"..., 4096) = 4096
read(7, "r a given destination) is referre"..., 4096) = 4096
read(7, " rip (8), -- Berke"..., 4096) = 4096
read(7, "PE\n SYNTAX Integer32\n M"..., 4096) = 1310
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=9198, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "NET-SNMP-EXTEND-MIB DEFINITIONS :"..., 4096) = 4096
read(7, "d (3)\n }\n MAX-AC"..., 4096) = 4096
read(7, " the corresponding value of nsExt"..., 4096) = 1006
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/SNMP-NOTIFICATION-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=20014, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "SNMP-NOTIFICATION-MIB DEFINITIONS"..., 4096) = 4096
read(7, "AX SnmpAdminString (SIZE(1.."..., 4096) = 4096
read(7, "orageType\n MAX-ACCESS read-cr"..., 4096) = 4096
read(7, " i.e., any sub-identifier "..., 4096) = 4096
read(7, "CCESS read-only\n DESCRI"..., 4096) = 3630
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/SNMPv2-TM.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=5775, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "SNMPv2-TM DEFINITIONS ::= BEGIN\n\n"..., 4096) = 4096
read(7, "'n' as an unsigned integer\n "..., 4096) = 1679
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/usr/share/snmp/mibs/NET-SNMP-VACM-MIB.txt", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=5039, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "NET-SNMP-VACM-MIB DEFINITIONS ::="..., 4096) = 4096
read(7, "across\n all nsVac"..., 4096) = 943
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/home/sgstet/.snmp/mibs/RTN-CCM-MIB.mib", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0544, st_size=8850, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "--UNCLASSIFIED//FOR OFFICIAL USE "..., 4096) = 4096
read(7, "nt\n\tDESCRIPTION\n\t\t\"(U//FOUO) Narr"..., 4096) = 4096
read(7, "ts OBJECT-TYPE\n\tSYNTAX INTEGER {"..., 4096) = 658
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
stat64("/etc/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/snmp/ccm-snmp-subagent-demon.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/etc/snmp/ccm-snmp-subagent-demon.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/share/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/snmp/ccm-snmp-subagent-demon.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/usr/share/snmp/ccm-snmp-subagent-demon.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/snmp", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
stat64("/home/sgstet/.snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/home/sgstet/.snmp/ccm-snmp-subagent-demon.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/home/sgstet/.snmp/ccm-snmp-subagent-demon.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/var/lib/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/var/lib/snmp/ccm-snmp-subagent-demon.0.conf", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/ccm-snmp-subagent-demon.conf", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0600, st_size=716, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "#\n# net-snmp (or ucd-snmp) persis"..., 4096) = 716
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/var/lib/snmp/ccm-snmp-subagent-demon.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/etc/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/snmp/agentx.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/etc/snmp/agentx.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/share/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/snmp/agentx.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/usr/share/snmp/agentx.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/snmp", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
stat64("/home/sgstet/.snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/home/sgstet/.snmp/agentx.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/home/sgstet/.snmp/agentx.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/var/lib/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/var/lib/snmp/agentx.0.conf", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/agentx.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/agentx.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/etc/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/snmp/snmp.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/etc/snmp/snmp.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/share/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/snmp/snmp.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/usr/share/snmp/snmp.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/snmp", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
stat64("/home/sgstet/.snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/home/sgstet/.snmp/snmp.conf", O_RDONLY|O_LARGEFILE) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=19, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f1f000
read(7, "mibs +RTN-CCM-MIB\n\n"..., 4096) = 19
read(7, ""..., 4096) = 0
close(7) = 0
munmap(0xb7f1f000, 4096) = 0
open("/home/sgstet/.snmp/snmp.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
stat64("/var/lib/snmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/var/lib/snmp/snmp.0.conf", 0xbff3dd9c) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/snmp.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/var/lib/snmp/snmp.local.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
socket(PF_FILE, SOCK_STREAM, 0) = 7
connect(7, {sa_family=AF_FILE, path="127.0.0.1:705"...}, 110) = -1 ENOENT (No such file or directory)
close(7) = 0
write(2, "Warning: Failed to connect to the"..., 72Warning: Failed to connect to the agentx master agent (127.0.0.1:705):
) = 72
gettimeofday({1255267434, 38283}, NULL) = 0
times({tms_utime=0, tms_stime=6, tms_cutime=0, tms_cstime=0}) = 1734818739
times({tms_utime=0, tms_stime=6, tms_cutime=0, tms_cstime=0}) = 1734818739
gettimeofday({1255267434, 38603}, NULL) = 0
rt_sigaction(SIGTERM, {0x804a420, [TERM], SA_RESTART}, {SIG_DFL}, 8) = 0
rt_sigaction(SIGINT, {0x804a420, [INT], SA_RESTART}, {SIG_DFL}, 8) = 0
write(2, "ccm-snmp-subagent-demon is up and"..., 43ccm-snmp-subagent-demon is up and running.
) = 43
gettimeofday({1255267434, 38969}, NULL) = 0
gettimeofday({1255267434, 39037}, NULL) = 0
select(6, [3 5], NULL, NULL, {14, 999314}
_________________________________________________________________
Hotmail: Trusted email with powerful SPAM protection.
http://clk.atdmt.com/GBL/go/177141665/direct/01/
------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Net-snmp-users mailing list
[email protected]
Please see the following page to unsubscribe or change other options:
https://lists.sourceforge.net/lists/listinfo/net-snmp-users