similar to: [Bridge] Bridge-MIB and 802.1d linux bridge

Displaying 20 results from an estimated 4000 matches similar to: "[Bridge] Bridge-MIB and 802.1d linux bridge"

2007 Apr 18
0
[Bridge] Bridge Digest, Vol 36, Issue 8
Julian, I did not understand what you meant by this paragraph. "Now, for the twist. For development and testing, I assigned an ip address and gateway to the bridge. I need to be able for a "non-it" person to install this box without having to set it up at all , so it cannot have an ip address assigned, as it *may* be in use somewhere else on the lan or router." Did your
2007 Apr 18
2
[Bridge] Trouble with ARP traffic
Raffaele If you don't want to see much arp traffic on eth1, assuming that you have a subnet 10.190.190.0/24, with 10.190.190.1 on eth1 and the rest of the hosts on eth0, you can use for example, the following filter ebtables -N f1 ebtables -P f1 DROP ebtables -t filter -A FORWARD -i eth0 -o eth1 -p ARP -j f1 ebtables -t filter -A f1 -p ARP --arp-ip-src 10.190.190.0/24 --arp-ip-dst
2017 Nov 02
0
Updating snmp-mib.c with new Cyberpower v2.0 MIB
On November 2, 2017 5:31:42 AM GMT+01:00, Ben Kamen <ben at benkamen.net> wrote: >On 10/31/2017 01:13 AM, Jim Klimov wrote: >> If the new data is in a separate OID tree, it can quite be a new MIB. >Otherwise you can use the UNIQUE flag and set the preferred (e.g. >newer, more precise) source for a value first in the list of same-named >mappings in existing file - if
2017 Oct 31
0
Updating snmp-mib.c with new Cyberpower v2.0 MIB
On October 31, 2017 2:32:36 AM GMT+01:00, Ben Kamen <ben at benkamen.net> wrote: >Hey all, > > >?I'm feeling spunky... and want to update nut to handle the new v2.0 >MIB from CyberPower. > >I've looked at the cyberpower v0.1 .c/.h and being new to working on >nut to this level -- anything anyone has to offer on adding code >besides the obvious? >
2019 Nov 30
0
[PATCH nbdkit 1/3] filters: stats: Show size in GiB, rate in MiB/s
I find bytes and bits-per-second unhelpful and hard to parse. Using GiB for sizes works for common disk images, and MiB/s works for common storage throughput. Here is an example run with this change: $ ./nbdkit --foreground \ --unix /tmp/nbd.sock \ --exportname '' \ --filter stats \ file file=/var/tmp/dst.img \ statsfile=/dev/stderr \ --run 'qemu-img convert
2019 Nov 30
0
[PATCH nbdkit v2 1/3] filters: stats: Add size in GiB, show rate in MiB/s
I find bytes and bits-per-second unhelpful and hard to parse. Add also size in GiB, and show rate in MiB per second. This works well for common disk images and storage. Here is an example run with this change: $ ./nbdkit --foreground \ --unix /tmp/nbd.sock \ --exportname '' \ --filter stats \ file file=/var/tmp/dst.img \ statsfile=/dev/stderr \ --run 'qemu-img
2017 Nov 02
2
Updating snmp-mib.c with new Cyberpower v2.0 MIB
On 11/02/2017 01:52 AM, Jim Klimov wrote: > > I believe the main reason for a new set of .c/.h files here would be if the new MIB is defined in a separate subtree. The top-level mapping binds the vendor entry OIDs (often "hidden" so one has to know where to poke). It may also be higher in the list of snmp-ups.h, in case the device also serves the older MIB but you'd prefer the
2017 Nov 02
2
Updating snmp-mib.c with new Cyberpower v2.0 MIB
On 10/31/2017 01:13 AM, Jim Klimov wrote: > If the new data is in a separate OID tree, it can quite be a new MIB. Otherwise you can use the UNIQUE flag and set the preferred (e.g. newer, more precise) source for a value first in the list of same-named mappings in existing file - if there's a hit on an actual device, it will be used and not iterated onwards. The flag is not yet supported for
2017 Oct 31
2
Updating snmp-mib.c with new Cyberpower v2.0 MIB
Hey all, ?I'm feeling spunky... and want to update nut to handle the new v2.0 MIB from CyberPower. I've looked at the cyberpower v0.1 .c/.h and being new to working on nut to this level -- anything anyone has to offer on adding code besides the obvious? like: should the 0.1 and 2.0 coexist somehow? (maybe different files) (also, is there a list of all the parms I can match up from the
2015 Aug 18
1
Liebert IntelliSlot Unity Card IS-UNITY-DP snmp UPS-MIB.upsIdentManufacturer '1.3.6.1.2.1.33.1.1.1.0' problem
OpenBSD 5.6 nut-2.7.2 (bin package) Liebert IntelliSlot Unity Card IS-UNITY-DP ups.conf: ...... ? mibs = ietf ? snmp_version = v1 ...... The problem is that the card responds to other snmp (v1,2c,3) requests normally but not to the 1.3.6.1.2.1.33.1.1.1.0 (UPS-MIB.upsIdentManufacturer). # snmp-ups -a laes2ups -DDDDDDD Network UPS Tools - Generic SNMP UPS driver 0.72 (2.7.2) ?? 0.000000???? debug
2007 Feb 09
3
? has mib:::udp[In/Out]Datagrams been superceded by mib:::udpHC[In/Out]Datagrams
Hi, Looking at some udp stuff on snv_57, and I noticed that mib:::udpInDatagrams no longer exists, has this been superceded by mib:::udpHCInDatagrams? From my understanding they represent the same counter, but I''m asking in case this is a bug. I noticed that there is still a reference to udpInDatagrams in the DTrace testsuite. - Fintan
2010 Jan 27
1
CPQPOWER-MIB - nearly there
I have attempted to create cpqpowermib.h for the snmp-ups driver. We use HP UPSs and version 2 of the firmware for their AF401A management cards use the CPQPOWER-MIB. I have attached my current attempt (which builds and almost works against nut 2.4.1). Once all is working I'll send in the finished article for consideration. This file is based on ietfmib.h. There are a couple of issues
2019 Nov 30
1
Re: [PATCH nbdkit 1/3] filters: stats: Show size in GiB, rate in MiB/s
On Sat, Nov 30, 2019 at 02:17:05AM +0200, Nir Soffer wrote: > I find bytes and bits-per-second unhelpful and hard to parse. Using GiB > for sizes works for common disk images, and MiB/s works for common > storage throughput. > > Here is an example run with this change: > > $ ./nbdkit --foreground \ > --unix /tmp/nbd.sock \ > --exportname '' \ >
2012 Jan 05
1
Re old message CPQPOWER-MIB - nearly there (using snmp-ups with HP AH401A management card)
Hi, This appears to be related to a thread from January 2010: http://lists.alioth.debian.org/pipermail/nut-upsdev/2010-January/004470.html NB: This is on an HP-UX 11.31 box, using a self compiled and packaged version of NUT 2.6.3, and net-snmp v5.7.1. Therefore some of the search paths and things like that may well be wrong because I've done something dumb. I'm also only just getting
2007 Oct 25
0
snmp commands not working with the Asterisk MIB ( Asterisk 1.4)
Hi, I have installed the Asterisk 1.4 package which support snmp operation for Asterisk MIB. The Asterisk server is running smoothly .Fine . But I can't perform any snmp operation in the Asterisk MIB. Please let me know if any other files need to be configured so that I can perform the snmp operations . I am using Net-SNMP and its working fine . I can perform snmp operation on all
2017 Feb 13
0
MIB error
Please report it to NUT developers, with an 'upsc' output for your device. Going back to the classic MIB detection method. Driver exited abnormally Network UPS Tools - Generic SNMP UPS driver 0.70 (2.7.1) kill: No such process No matching MIB found for sysOID '.1.3.6.1.4.1.674.10902.2'! Please report it to NUT developers, with an 'upsc' output for your device. Going back to
2023 Jul 07
0
Adding More Variables from the CyberPower MIB
As per https://github.com/networkupstools/nut/pull/1982 I'm looking to add a few more variables from the CyberPower SNMP MIB. At question in particular are the values added to the ups.status variable coming from the CPS-MIB::upsStatus.0 OID. These values are, from the MIB: upsStatus OBJECT-TYPE SYNTAX INTEGER { normal (1),
2011 Nov 30
2
Patch for addition of Cyberpower RMCARD100, 201, 202, 301 (snmp mib)
I did a bunch of work on this today. It should be all set to go. This patch is to add support for the Cyberpower RMCARD snmp cards. I basically copied the driver for bestpower, changed the name and updated the mib map. I have this running on two separate systems (two separate ups's) and it looks good. The only thing I could not figure out was updating the Makefile.am (my aclocal/libtools
2009 Jul 26
4
Any word on when the ietf mib will be fixed for liebert?
This mib used to work, so is there a way to go back to the version prior to this one without downgrading the whole package? * Starting UPS drivers... Network UPS Tools - UPS driver controller 2.4.1 Network UPS Tools - Generic SNMP UPS driver 0.44 (2.4.1) Detected GXT2-2000RT120 on host upswallleft (mib: ietf 1.3) [upswallleft] nut_snmp_get: 1.3.6.1.2.1.33.1.4.4.1.4.0: Error in
2012 Nov 14
1
about mib
hi, i have trouble with snmp mib, atemp configured the snmp-ups, but it doesn't work , after the command /lib/nut/snmp-ups -DDDDDD -a katodo -x mibs=mge , the message say "0.006471 Unknown mibs value:". My snmp board is a cp504 netagent , may be someone can help me? what mib i must use? sld2 -------------- next part -------------- An HTML attachment was scrubbed... URL: