similar to: have any one tried Snmp extension to Net-SNMP daemon

Displaying 20 results from an estimated 1200 matches similar to: "have any one tried Snmp extension to Net-SNMP daemon"

2006 Apr 06
2
SNMP EXTENSION
Hi ALL, I am trying to use the SNMP extension of michel http://x-ray.prokon.cz/data/snmp/ i pached the snmpd damon as mentioned in the README but when i run "snmpwalk -c community target enterprises.18756" i get this error "snmpwalk: No securityName specified (Sub-id not found: (top) -> enterprises)" any idea ? Thanks , venkat
2015 Feb 11
2
[PATCH] Fix for client certificate validation does not work
Hi all, As I reported earlier (with a typo in the work [BUG]) client certification validation *does not* work even if you do everything exactly according to all documentation and attempts at helpful advice. I have seen this issue with both startssl.com and self-signed certificates, and based on what I've seen from searching the web, this is a problem that has gotten little attention because
2009 Apr 09
0
bug/suggestion: debugger should respect option "deparse.max.lines" when printing the call (PR#13647)
Full_Name: John Brzustowski Version: 2.8.1 OS: linux Submission from: (NULL) (67.71.250.146) When entering a debug()'ed function, the call printout is not limited by options()$deparse.max.lines as it is when one uses browser() or trace(). Should it be? If so, here's a patch: diff -cr R-2.8.1/src/library/base/man/options.Rd R-2.8.1-patched/src/library/base/man/options.Rd ***
2012 Jan 07
3
Putting an index explicitly into function code --- a curiosity.
I want to create a list of functions in a for loop, with the index of the loop appearing explicitly in the function code. After quite a bit of thrashing around I figured out how to do it. Here is a toy example: junk <- vector("list",4) for(i in 1:4) { itmp <- i junk[[i]] <- eval(bquote(function(x){42 + .(itmp)*x})) } So I'm *basically* happy, but there's
2003 Dec 10
15
Graphing tc output
Hi, My HTB shaping is working perfectly, and i have setup a bridge and hosts behind the bridge are now getting only the bandwidth they are supposed to get. Thanks to every one here for helping me out :) Now I am thinking of making a graph of traffic going through various classes. Is their any thing readily available for it, or is parsing the output if tc and passing it to rrdtool the
2009 Mar 25
2
Listing of LAPACK error codes
Professor Ripley commented on LAPACK error codes: https://stat.ethz.ch/pipermail/r-help/2007-March/127702.html and says "Internal LAPACK errors are usually problems with arithmetic accuracy, and as such are compiler- and CPU-specific." Is there a listing for the error codes from Lapack routine 'dsyevr'? Especially I am interested about the meaning and handling of error codes 1
2006 May 16
0
rtbl_talk() call failed
Hi , I compiled the qosd-0.0.1-13122003.tgz code found in http://x-ray.prokon.cz/data/snmp/ , but i have a problem when i run it , i get an error rtnetlink call failed, reason: 2 , no such file or directory i found this line in the file delete_object_util.c rtnl_talk(&rth, &req.n, 0, 0, NULL,NULL,NULL); result=errno; if(result!=0)
2004 May 24
5
monitoring classes
Greetings all, I''ve been searching high and low for any inkling of how people are monitoring classes for long term usage data. I''m thinking something along a script to collect the data for mrtg or perhaps even an snmp module that would present them as interfaces to be polled....has anyone done any work in this area? John Dunning Assistant Director Net & Tech Svcs Wayne
2004 Jun 18
6
priorities + htb
Hi! How does prioritization work when you''ve got a tree structure, e.g. | +-- class_a rate 64kbit prio 1 | | | +-- class_a1 rate 32kbit prio 1 | | | `-- class_a2 rate 32kbit prio 2 | `-- class_b rate 64kbit prio 2 Above could either be interpreted as (a) a, a1 have prio 1 b, a2 have prio 2 (iow, no distinction is being made between the inner/nested
2005 Jan 10
1
dialing into * then forwarded out gets choppy audio
Hello all! If I place a call to our number, the call is routed to our Asterisk box from teliax --> IAX2 --> firewall w/ port forwarding --> * If that caller dials an extension that rings an outside line, where our * box makes an outbound connection to teliax to terminate the call, we get choppy audio. Internal extensions have been dialing outbound calls no problem for over a week. What
2003 Jul 08
1
rtnetlink documentation
Hello, I would like to ask, if somewhere exists documentation about rtnetlink interface? Something more than kernel documentation and manual pages (man rtnetlink and man netlink). I want create traffic classes, filters and so on (only cbq classes and some filters based on fwmark), like tc utility from Alexey does, but can''t find any relevant docs on net. -- Michal Charvat Prokon
2004 Sep 30
7
tc monitoring
I have managed to dynamically parse the output of commands: tc qdisc ls dev eth0 and tc -s class show dev eth0 Save statistics in an rrd database and display it via a php script. see http://143.233.4.215/graph.php and dload scripts from http://143.233.4.210/qos/ My next step in developing this monitoring software is to somehow manage to create a tree out of tc and then use it to greatly
2024 Feb 20
1
Compiling libR as a standalone C library for java+jni (-fPIC)
(cross-posted on SO: https://stackoverflow.com/questions/78022766) Hi all, I'm trying to compile R as a static library with the -fPIC flag so I can use it within java+JNI (is it only possible ?), but I cannot find the right flags in '.configure' to compile R this way. I tested various flags but I cannot find the correct syntax. for now, my latest attempt was ``` rm -rvf?
2004 Jun 19
7
QoS net-snmp ?
Hi I''ve patched net-mrtg http://www.net-snmp.org/ with http://x-ray.prokon.cz/data/snmp/ sucefully Also I''ve copied QOS.TXT to /usr/local/share/snmp/mibs when I make a normal use of snmp, with mrtg in order to monitor all traffic on eth0 and eth1, it works OK. But, how must I do in order to get monitor for a specific class ? If I make a snmpwalk (like README suggest), I get
2017 Jul 05
3
MSP430 code generation from LLVM IR
Hello, While trying to find out why the LDC compiler refuses to generate object code for MSP430 targets (but generates MSP430 assembly or LLVM IR/bitcode), I came across the following apparent inconsistency. This works: $ clang --target=msp430 -c test.c This doesn't work: $ clang --target=msp430 -S -emit-llvm test.c $ llc -filetype=obj test.ll /opt/msp430/bin/llc: target does not support
2010 Jun 21
2
[LLVMdev] MC: Object file specific parsing
Hi Daniel, attached is a patch that pushes most of the object file specific parsing out of AsmParser and down into MachOAsmParser. This was done as a cleanup for the ELF work. I know that you're not happy with this approach, particularly the fact that as we add more object file formats and assembler dialects, it's going to cause a class explosion. But I was hoping that we could use this
2007 Sep 18
1
[LLVMdev] 2.1 Pre-Release Available (testers needed)
More bison woes. llvm-2.1 + the patch Chris mentioned builds without bison, but llvm-gcc4 doesn't: /home/emil/ll/llvm-gcc4.0-2.1.source/missing bison -d -o gengtype-yacc.c ../../llvm-gcc4.0-2.1.source/gcc/gengtype-yacc.y WARNING: `bison' missing on your system. You should only need it if you modified a `.y' file. You may need the `Bison' package in order for
2004 Mar 02
0
Re: winbind and unix/nt login match use unix uid - resolved
> > Hi, > > I'm on solaris 9, and using winbind to be a part of our NT domain. > > > > I'm trying to determine if it's possible to configure winbind/smb so > > that when the nt login name matches the unix login name the share is > > mounted using their unix uid. With none matching account names, > > username map works fine. It doesn't
2009 Nov 17
3
gem install rails - errors MAC OSX (snow leopard)
This produced quite a mouthful of text. I''m stuck on the error messages and wondering if I messed something up. Any advice would be very appreciated. Thank you. dust:~ Lex$ gem install rails WARNING: Installing to ~/.gem since /Library/Ruby/Gems/1.8 and /usr/bin aren''t both writable. WARNING: You don''t have /Users/Lex/.gem/ruby/1.8/bin in your PATH, gem executables
2006 Jan 20
1
error on compiling wine 0.9.6 on fedora core 4 - wine 0.9.5 works!
gcc -g -O2 -o widl client.o hash.o header.o proxy.o server.o typegen.o typelib.o utils.o widl.o write_msft.o parser.tab.o lex.yy.o -L../../libs -lwpp -lwine_port -lfl ../../libs/libwpp.a(lex.yy.o)(.text+0x5e8): In function `_yy_dummy_uses_of_static_functions_b2f4_517d_02ff_b30c_3e5a_47d7_aaa3_3b5d_': /usr/local/rpm/wine-0.9.6/libs/wpp/lex.yy.c:3357: multiple definition of