All MIBs › ICF-ETWIST › wildcardFilter
wildcardFilter
Module: ICF-ETWIST
OID (symbolic): ICF-ETWIST::wildcardFilter
OID (numeric): 1.3.6.1.4.1.11.2.14.3.5.2
Node type: OBJECT-TYPE
Type: OCTET STRING
Access: read-write
Description:
********* THIS OBJECT IS OBSOLETE *********
This object contains the binary value used to filter frames. The data in the frame at the offset specified by the Wildcard offsets is XOR'ed with this object after AND'ing with the Wildcard Mask. If zero result occurs, the packet is discarded (filtered).
Suppose the user specifies the following values: data: 11001010 10101010 10101010 10101010 mask: 11100000 00000000 00000000 00000000 filter: 11100000 00000000 00000000 00000000
AND'ing data with the mask gives: 11000000 00000000 00000000 00000000
XOR'ing that value with the filter gives: 00100000 00000000 00000000 00000000
The non-zero result indicates no match (don't discard).
Another example: data: 10011010 10101010 10101010 10101010 mask: 10010000 00000000 00000000 00000000 filter: 10010000 00000000 00000000 00000000
AND'ing data with the mask gives: 10010000 00000000 00000000 00000000
XOR'ing that value with the filter gives: 00000000 00000000 00000000 00000000
A zero result indicates a match, so we discard (filter) the packet.
The filter AND'ed with the mask must equal the filter. This is an example of a legal filter/mask pair: filter: 00010000 00000000 00000000 00000000 mask: 10010000 00000000 00000000 00000000 AND'ed: 00010000 00000000 00000000 00000000 (equals filter)
Another way of saying this: if a mask bit is zero, the corresponding filter bit must be zero.
The following would be an illegal pair: filter: 01110000 00000000 00000000 00000000 mask: 10010000 00000000 00000000 00000000 AND'ed: 00010000 00000000 00000000 00000000 ( != filter)
Examples
Walk all instances (SNMPv2c):
snmpwalk -v2c -c public <target> 1.3.6.1.4.1.11.2.14.3.5.2 snmpwalk -v2c -c public <target> ICF-ETWIST::wildcardFilter
Get a specific instance (index 1):
snmpget -v2c -c public <target> 1.3.6.1.4.1.11.2.14.3.5.2.1 snmpget -v2c -c public <target> ICF-ETWIST::wildcardFilter.1
Set instance 1 (SNMPv2c):
snmpset -v2c -c private <target> 1.3.6.1.4.1.11.2.14.3.5.2.1 s <value>
OID Breakdown
| Numeric OID | Name | Module |
|---|---|---|
| 1 | iso | LANART-AGENT |
| 1.3 | org | BIANCA-BRICK-PPP-MIB |
| 1.3.6 | dod | BIANCA-BRICK-PPP-MIB |
| 1.3.6.1 | internet | BIANCA-BRICK-PPP-MIB |
| 1.3.6.1.4 | private | BIANCA-BRICK-PPP-MIB |
| 1.3.6.1.4.1 | enterprises | ANIROOT-MIB |
| 1.3.6.1.4.1.11 | hp | DATAPROTECTOR-MIB |
| 1.3.6.1.4.1.11.2 | nm | DATAPROTECTOR-MIB |
| 1.3.6.1.4.1.11.2.14 | icf | HP-ICF |
| 1.3.6.1.4.1.11.2.14.3 | icfBridge | HP-ICF |
| 1.3.6.1.4.1.11.2.14.3.5 | wildcardTable | HP-ICF |
| 1.3.6.1.4.1.11.2.14.3.5.2 | wildcardFilter | ICF-ETWIST |