Now actually implement reading/refreshing/returning data from the pfTablesAddrTable

and modify the BEGEMOT-PF-MIB to add support for IPV6 address' statistics in the PF
tables via pfTablesAddrNetType and pfTablesAddrNet. While here, upgrade the
pf_tree.def file to the new format that includes enumerated values. Also make sure
to return SNMP_ERR_NOSUCHNAME for ALTQ objects, if ALTQ is disabled, so that the agent
will know to skip the pfAltq subtree when servicing GETNEXT requests from SNMP clients
(otherwise snmpwalk on begemotPf would stop at the pfAltq subtree with bsnmpd returning
SNMP_ERR_GENERR).
This commit is contained in:
Shteryana Shopova 2010-03-24 16:07:33 +00:00
parent 071ab531db
commit 438be77d54
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=205607
4 changed files with 334 additions and 40 deletions

View File

@ -17,11 +17,13 @@ IMPORTS
FROM SNMPv2-SMI FROM SNMPv2-SMI
TruthValue TruthValue
FROM SNMPv2-TC FROM SNMPv2-TC
InetAddress, InetAddressType, InetAddressPrefixLength
FROM INET-ADDRESS-MIB
begemot begemot
FROM BEGEMOT-MIB; FROM BEGEMOT-MIB;
begemotPf MODULE-IDENTITY begemotPf MODULE-IDENTITY
LAST-UPDATED "201003170000Z" LAST-UPDATED "201003180000Z"
ORGANIZATION "NixSys BVBA" ORGANIZATION "NixSys BVBA"
CONTACT-INFO CONTACT-INFO
" Philip Paeps " Philip Paeps
@ -34,6 +36,12 @@ begemotPf MODULE-IDENTITY
E-Mail: philip@FreeBSD.org" E-Mail: philip@FreeBSD.org"
DESCRIPTION DESCRIPTION
"The Begemot MIB for the pf packet filter." "The Begemot MIB for the pf packet filter."
REVISION "201003180000Z"
DESCRIPTION
"Modified pfTablesAddrEntry to support IPv6
addresses - added pfTablesAddrNetType column
and modified type of pfTablesAddrNet to
InetAddress."
REVISION "200912050000Z" REVISION "200912050000Z"
DESCRIPTION DESCRIPTION
"Added support for retrieving counters of labeled "Added support for retrieving counters of labeled
@ -1025,8 +1033,9 @@ pfTablesAddrEntry OBJECT-TYPE
PfTablesAddrEntry ::= SEQUENCE { PfTablesAddrEntry ::= SEQUENCE {
pfTablesAddrIndex Integer32, pfTablesAddrIndex Integer32,
pfTablesAddrNet IpAddress, pfTablesAddrNetType InetAddressType,
pfTablesAddrMask Integer32, pfTablesAddrNet InetAddress,
pfTablesAddrPrefix InetAddressPrefixLength,
pfTablesAddrTZero TimeTicks, pfTablesAddrTZero TimeTicks,
pfTablesAddrBytesInPass Counter64, pfTablesAddrBytesInPass Counter64,
pfTablesAddrBytesInBlock Counter64, pfTablesAddrBytesInBlock Counter64,
@ -1046,21 +1055,29 @@ pfTablesAddrIndex OBJECT-TYPE
"A unique value, greater than zero, for each address." "A unique value, greater than zero, for each address."
::= { pfTablesAddrEntry 1 } ::= { pfTablesAddrEntry 1 }
pfTablesAddrNetType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of address in the corresponding pfTablesAddrNet object."
::= { pfTablesAddrEntry 2 }
pfTablesAddrNet OBJECT-TYPE pfTablesAddrNet OBJECT-TYPE
SYNTAX IpAddress SYNTAX InetAddress
MAX-ACCESS read-only MAX-ACCESS read-only
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The IP address of this particular table entry." "The IP address of this particular table entry."
::= { pfTablesAddrEntry 2 } ::= { pfTablesAddrEntry 3 }
pfTablesAddrMask OBJECT-TYPE pfTablesAddrPrefix OBJECT-TYPE
SYNTAX Integer32 (0..32) SYNTAX InetAddressPrefixLength
MAX-ACCESS read-only MAX-ACCESS read-only
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The CIDR netmask of this particular table entry." "The CIDR netmask of this particular table entry."
::= { pfTablesAddrEntry 3 } ::= { pfTablesAddrEntry 4 }
pfTablesAddrTZero OBJECT-TYPE pfTablesAddrTZero OBJECT-TYPE
SYNTAX TimeTicks SYNTAX TimeTicks
@ -1071,7 +1088,7 @@ pfTablesAddrTZero OBJECT-TYPE
"The time passed since this entry's statistics were last "The time passed since this entry's statistics were last
cleared, or the time passed since this entry was loaded cleared, or the time passed since this entry was loaded
into the table, whichever is sooner." into the table, whichever is sooner."
::= { pfTablesAddrEntry 4 } ::= { pfTablesAddrEntry 5 }
pfTablesAddrBytesInPass OBJECT-TYPE pfTablesAddrBytesInPass OBJECT-TYPE
SYNTAX Counter64 SYNTAX Counter64
@ -1079,7 +1096,7 @@ pfTablesAddrBytesInPass OBJECT-TYPE
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The number of inbound bytes passed as a result of this entry." "The number of inbound bytes passed as a result of this entry."
::= { pfTablesAddrEntry 5 } ::= { pfTablesAddrEntry 6 }
pfTablesAddrBytesInBlock OBJECT-TYPE pfTablesAddrBytesInBlock OBJECT-TYPE
SYNTAX Counter64 SYNTAX Counter64
@ -1087,7 +1104,7 @@ pfTablesAddrBytesInBlock OBJECT-TYPE
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The number of inbound bytes blocked as a result of this entry." "The number of inbound bytes blocked as a result of this entry."
::= { pfTablesAddrEntry 6 } ::= { pfTablesAddrEntry 7 }
pfTablesAddrBytesOutPass OBJECT-TYPE pfTablesAddrBytesOutPass OBJECT-TYPE
SYNTAX Counter64 SYNTAX Counter64
@ -1095,7 +1112,7 @@ pfTablesAddrBytesOutPass OBJECT-TYPE
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The number of outbound bytes passed as a result of this entry." "The number of outbound bytes passed as a result of this entry."
::= { pfTablesAddrEntry 7 } ::= { pfTablesAddrEntry 8 }
pfTablesAddrBytesOutBlock OBJECT-TYPE pfTablesAddrBytesOutBlock OBJECT-TYPE
SYNTAX Counter64 SYNTAX Counter64
@ -1103,7 +1120,7 @@ pfTablesAddrBytesOutBlock OBJECT-TYPE
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The number of outbound bytes blocked as a result of this entry." "The number of outbound bytes blocked as a result of this entry."
::= { pfTablesAddrEntry 8 } ::= { pfTablesAddrEntry 9 }
pfTablesAddrPktsInPass OBJECT-TYPE pfTablesAddrPktsInPass OBJECT-TYPE
SYNTAX Counter64 SYNTAX Counter64
@ -1111,7 +1128,7 @@ pfTablesAddrPktsInPass OBJECT-TYPE
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The number of inbound packets passed as a result of this entry." "The number of inbound packets passed as a result of this entry."
::= { pfTablesAddrEntry 9 } ::= { pfTablesAddrEntry 10 }
pfTablesAddrPktsInBlock OBJECT-TYPE pfTablesAddrPktsInBlock OBJECT-TYPE
SYNTAX Counter64 SYNTAX Counter64
@ -1119,7 +1136,7 @@ pfTablesAddrPktsInBlock OBJECT-TYPE
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The number of inbound packets blocked as a result of this entry." "The number of inbound packets blocked as a result of this entry."
::= { pfTablesAddrEntry 10 } ::= { pfTablesAddrEntry 11 }
pfTablesAddrPktsOutPass OBJECT-TYPE pfTablesAddrPktsOutPass OBJECT-TYPE
SYNTAX Counter64 SYNTAX Counter64
@ -1127,7 +1144,7 @@ pfTablesAddrPktsOutPass OBJECT-TYPE
STATUS current STATUS current
DESCRIPTION DESCRIPTION
"The number of outbound packets passed as a result of this entry." "The number of outbound packets passed as a result of this entry."
::= { pfTablesAddrEntry 11 } ::= { pfTablesAddrEntry 12 }
pfTablesAddrPktsOutBlock OBJECT-TYPE pfTablesAddrPktsOutBlock OBJECT-TYPE
SYNTAX Counter64 SYNTAX Counter64
@ -1136,7 +1153,7 @@ pfTablesAddrPktsOutBlock OBJECT-TYPE
DESCRIPTION DESCRIPTION
"The number of outbound packets blocked as a result of this "The number of outbound packets blocked as a result of this
entry." entry."
::= { pfTablesAddrEntry 12 } ::= { pfTablesAddrEntry 13 }
-- -------------------------------------------------------------------------- -- --------------------------------------------------------------------------

View File

@ -4,6 +4,7 @@
MOD= pf MOD= pf
SRCS= pf_snmp.c SRCS= pf_snmp.c
CFLAGS+= -DSNMPTREE_TYPES
XSYM= begemotPf XSYM= begemotPf
DEFS= ${MOD}_tree.def DEFS= ${MOD}_tree.def

View File

@ -85,6 +85,19 @@ static int pft_table_count;
#define PFT_TABLE_MAXAGE 5 #define PFT_TABLE_MAXAGE 5
struct pfa_entry {
struct pfr_astats pfas;
u_int index;
TAILQ_ENTRY(pfa_entry) link;
};
TAILQ_HEAD(pfa_table, pfa_entry);
static struct pfa_table pfa_table;
static time_t pfa_table_age;
static int pfa_table_count;
#define PFA_TABLE_MAXAGE 5
struct pfq_entry { struct pfq_entry {
struct pf_altq altq; struct pf_altq altq;
u_int index; u_int index;
@ -121,10 +134,12 @@ static int pfi_refresh(void);
static int pfq_refresh(void); static int pfq_refresh(void);
static int pfs_refresh(void); static int pfs_refresh(void);
static int pft_refresh(void); static int pft_refresh(void);
static int pfa_refresh(void);
static int pfl_refresh(void); static int pfl_refresh(void);
static struct pfi_entry * pfi_table_find(u_int idx); static struct pfi_entry * pfi_table_find(u_int idx);
static struct pfq_entry * pfq_table_find(u_int idx); static struct pfq_entry * pfq_table_find(u_int idx);
static struct pft_entry * pft_table_find(u_int idx); static struct pft_entry * pft_table_find(u_int idx);
static struct pfa_entry * pfa_table_find(u_int idx);
static struct pfl_entry * pfl_table_find(u_int idx); static struct pfl_entry * pfl_table_find(u_int idx);
static int altq_is_enabled(int pfdevice); static int altq_is_enabled(int pfdevice);
@ -794,7 +809,98 @@ int
pf_tbladdr(struct snmp_context __unused *ctx, struct snmp_value __unused *val, pf_tbladdr(struct snmp_context __unused *ctx, struct snmp_value __unused *val,
u_int __unused sub, u_int __unused vindex, enum snmp_op __unused op) u_int __unused sub, u_int __unused vindex, enum snmp_op __unused op)
{ {
return (SNMP_ERR_GENERR); asn_subid_t which = val->var.subs[sub - 1];
struct pfa_entry *e = NULL;
if ((time(NULL) - pfa_table_age) > PFA_TABLE_MAXAGE)
pfa_refresh();
switch (op) {
case SNMP_OP_SET:
return (SNMP_ERR_NOT_WRITEABLE);
case SNMP_OP_GETNEXT:
if ((e = NEXT_OBJECT_INT(&pfa_table,
&val->var, sub)) == NULL)
return (SNMP_ERR_NOSUCHNAME);
val->var.len = sub + 1;
val->var.subs[sub] = e->index;
break;
case SNMP_OP_GET:
if (val->var.len - sub != 1)
return (SNMP_ERR_NOSUCHNAME);
if ((e = pfa_table_find(val->var.subs[sub])) == NULL)
return (SNMP_ERR_NOSUCHNAME);
break;
case SNMP_OP_COMMIT:
case SNMP_OP_ROLLBACK:
default:
abort();
}
switch (which) {
case LEAF_pfTablesAddrNetType:
if (e->pfas.pfras_a.pfra_af == AF_INET)
val->v.integer = pfTablesAddrNetType_ipv4;
else if (e->pfas.pfras_a.pfra_af == AF_INET6)
val->v.integer = pfTablesAddrNetType_ipv6;
else
return (SNMP_ERR_GENERR);
break;
case LEAF_pfTablesAddrNet:
if (e->pfas.pfras_a.pfra_af == AF_INET) {
return (string_get(val,
(u_char *)&e->pfas.pfras_a.pfra_ip4addr, 4));
} else if (e->pfas.pfras_a.pfra_af == AF_INET6)
return (string_get(val,
(u_char *)&e->pfas.pfras_a.pfra_ip6addr, 16));
else
return (SNMP_ERR_GENERR);
break;
case LEAF_pfTablesAddrPrefix:
val->v.integer = (int32_t) e->pfas.pfras_a.pfra_net;
break;
case LEAF_pfTablesAddrTZero:
val->v.uint32 =
(time(NULL) - e->pfas.pfras_tzero) * 100;
break;
case LEAF_pfTablesAddrBytesInPass:
val->v.counter64 =
e->pfas.pfras_bytes[PFR_DIR_IN][PFR_OP_PASS];
break;
case LEAF_pfTablesAddrBytesInBlock:
val->v.counter64 =
e->pfas.pfras_bytes[PFR_DIR_IN][PFR_OP_BLOCK];
break;
case LEAF_pfTablesAddrBytesOutPass:
val->v.counter64 =
e->pfas.pfras_bytes[PFR_DIR_OUT][PFR_OP_PASS];
break;
case LEAF_pfTablesAddrBytesOutBlock:
val->v.counter64 =
e->pfas.pfras_bytes[PFR_DIR_OUT][PFR_OP_BLOCK];
break;
case LEAF_pfTablesAddrPktsInPass:
val->v.counter64 =
e->pfas.pfras_packets[PFR_DIR_IN][PFR_OP_PASS];
break;
case LEAF_pfTablesAddrPktsInBlock:
val->v.counter64 =
e->pfas.pfras_packets[PFR_DIR_IN][PFR_OP_BLOCK];
break;
case LEAF_pfTablesAddrPktsOutPass:
val->v.counter64 =
e->pfas.pfras_packets[PFR_DIR_OUT][PFR_OP_PASS];
break;
case LEAF_pfTablesAddrPktsOutBlock:
val->v.counter64 =
e->pfas.pfras_packets[PFR_DIR_OUT][PFR_OP_BLOCK];
break;
default:
return (SNMP_ERR_NOSUCHNAME);
}
return (SNMP_ERR_NOERROR);
} }
int int
@ -803,9 +909,8 @@ pf_altq(struct snmp_context __unused *ctx, struct snmp_value *val,
{ {
asn_subid_t which = val->var.subs[sub - 1]; asn_subid_t which = val->var.subs[sub - 1];
if (!altq_enabled) { if (!altq_enabled)
return (SNMP_ERR_NOERROR); return (SNMP_ERR_NOSUCHNAME);
}
if (op == SNMP_OP_SET) if (op == SNMP_OP_SET)
return (SNMP_ERR_NOT_WRITEABLE); return (SNMP_ERR_NOT_WRITEABLE);
@ -838,9 +943,8 @@ pf_altqq(struct snmp_context __unused *ctx, struct snmp_value *val,
asn_subid_t which = val->var.subs[sub - 1]; asn_subid_t which = val->var.subs[sub - 1];
struct pfq_entry *e = NULL; struct pfq_entry *e = NULL;
if (!altq_enabled) { if (!altq_enabled)
return (SNMP_ERR_NOERROR); return (SNMP_ERR_NOSUCHNAME);
}
if ((time(NULL) - pfq_table_age) > PFQ_TABLE_MAXAGE) if ((time(NULL) - pfq_table_age) > PFQ_TABLE_MAXAGE)
pfq_refresh(); pfq_refresh();
@ -1014,6 +1118,17 @@ pft_table_find(u_int idx)
return (NULL); return (NULL);
} }
static struct pfa_entry *
pfa_table_find(u_int idx)
{
struct pfa_entry *e;
TAILQ_FOREACH(e, &pfa_table, link)
if (e->index == idx)
return (e);
return (NULL);
}
static struct pfl_entry * static struct pfl_entry *
pfl_table_find(u_int idx) pfl_table_find(u_int idx)
{ {
@ -1248,6 +1363,149 @@ pft_refresh(void)
return(-1); return(-1);
} }
static int
pfa_table_addrs(u_int sidx, struct pfr_table *pt)
{
struct pfioc_table io;
struct pfr_astats *t = NULL;
struct pfa_entry *e;
int i, numaddrs = 1;
if (pt == NULL)
return (-1);
memset(&io, 0, sizeof(io));
strlcpy(io.pfrio_table.pfrt_name, pt->pfrt_name,
sizeof(io.pfrio_table.pfrt_name));
for (;;) {
t = reallocf(t, numaddrs * sizeof(struct pfr_astats));
if (t == NULL) {
syslog(LOG_ERR, "pfa_table_addrs(): reallocf(): %s",
strerror(errno));
numaddrs = -1;
goto error;
}
memset(t, 0, sizeof(*t));
io.pfrio_size = numaddrs;
io.pfrio_buffer = t;
io.pfrio_esize = sizeof(struct pfr_astats);
if (ioctl(dev, DIOCRGETASTATS, &io)) {
syslog(LOG_ERR, "pfa_table_addrs(): ioctl() on %s: %s",
pt->pfrt_name, strerror(errno));
numaddrs = -1;
break;
}
if (numaddrs >= io.pfrio_size)
break;
numaddrs = io.pfrio_size;
}
for (i = 0; i < numaddrs; i++) {
if ((t + i)->pfras_a.pfra_af != AF_INET &&
(t + i)->pfras_a.pfra_af != AF_INET6) {
numaddrs = i;
break;
}
e = (struct pfa_entry *)malloc(sizeof(struct pfa_entry));
if (e == NULL) {
syslog(LOG_ERR, "pfa_table_addrs(): malloc(): %s",
strerror(errno));
numaddrs = -1;
break;
}
e->index = sidx + i;
memcpy(&e->pfas, t + i, sizeof(struct pfr_astats));
TAILQ_INSERT_TAIL(&pfa_table, e, link);
}
free(t);
error:
return (numaddrs);
}
static int
pfa_refresh(void)
{
struct pfioc_table io;
struct pfr_table *pt = NULL, *it = NULL;
struct pfa_entry *e;
int i, numtbls = 1, cidx, naddrs;
if (started && this_tick <= pf_tick)
return (0);
while (!TAILQ_EMPTY(&pfa_table)) {
e = TAILQ_FIRST(&pfa_table);
TAILQ_REMOVE(&pfa_table, e, link);
free(e);
}
memset(&io, 0, sizeof(io));
io.pfrio_esize = sizeof(struct pfr_table);
for (;;) {
pt = reallocf(pt, numtbls * sizeof(struct pfr_table));
if (pt == NULL) {
syslog(LOG_ERR, "pfa_refresh(): reallocf() %s",
strerror(errno));
return (-1);
}
memset(pt, 0, sizeof(*pt));
io.pfrio_size = numtbls;
io.pfrio_buffer = pt;
if (ioctl(dev, DIOCRGETTABLES, &io)) {
syslog(LOG_ERR, "pfa_refresh(): ioctl(): %s",
strerror(errno));
goto err2;
}
if (numtbls >= io.pfrio_size)
break;
numtbls = io.pfrio_size;
}
cidx = 1;
for (it = pt, i = 0; i < numtbls; it++, i++) {
/*
* Skip the table if not active - ioctl(DIOCRGETASTATS) will
* return ESRCH for this entry anyway.
*/
if (!(it->pfrt_flags & PFR_TFLAG_ACTIVE))
continue;
if ((naddrs = pfa_table_addrs(cidx, it)) < 0)
goto err1;
cidx += naddrs;
}
pfa_table_age = time(NULL);
pfa_table_count = cidx;
pf_tick = this_tick;
free(pt);
return (0);
err1:
while (!TAILQ_EMPTY(&pfa_table)) {
e = TAILQ_FIRST(&pfa_table);
TAILQ_REMOVE(&pfa_table, e, link);
free(e);
}
err2:
free(pt);
return (-1);
}
static int static int
pfl_scan_ruleset(const char *path) pfl_scan_ruleset(const char *path)
{ {
@ -1423,6 +1681,7 @@ pf_init(struct lmodule *mod, int __unused argc, char __unused *argv[])
TAILQ_INIT(&pfi_table); TAILQ_INIT(&pfi_table);
TAILQ_INIT(&pfq_table); TAILQ_INIT(&pfq_table);
TAILQ_INIT(&pft_table); TAILQ_INIT(&pft_table);
TAILQ_INIT(&pfa_table);
TAILQ_INIT(&pfl_table); TAILQ_INIT(&pfl_table);
pfi_refresh(); pfi_refresh();
@ -1432,6 +1691,7 @@ pf_init(struct lmodule *mod, int __unused argc, char __unused *argv[])
pfs_refresh(); pfs_refresh();
pft_refresh(); pft_refresh();
pfa_refresh();
pfl_refresh(); pfl_refresh();
started = 1; started = 1;
@ -1445,6 +1705,7 @@ pf_fini(void)
struct pfi_entry *i1, *i2; struct pfi_entry *i1, *i2;
struct pfq_entry *q1, *q2; struct pfq_entry *q1, *q2;
struct pft_entry *t1, *t2; struct pft_entry *t1, *t2;
struct pfa_entry *a1, *a2;
struct pfl_entry *l1, *l2; struct pfl_entry *l1, *l2;
/* Empty the list of interfaces */ /* Empty the list of interfaces */
@ -1471,6 +1732,14 @@ pf_fini(void)
t1 = t2; t1 = t2;
} }
/* List of table addresses */
a1 = TAILQ_FIRST(&pfa_table);
while (a1 != NULL) {
a2 = TAILQ_NEXT(a1, link);
free(a1);
a1 = a2;
}
/* And the list of labeled filter rules */ /* And the list of labeled filter rules */
l1 = TAILQ_FIRST(&pfl_table); l1 = TAILQ_FIRST(&pfl_table);
while (l1 != NULL) { while (l1 != NULL) {
@ -1491,6 +1760,7 @@ pf_dump(void)
pfq_refresh(); pfq_refresh();
} }
pft_refresh(); pft_refresh();
pfa_refresh();
pfl_refresh(); pfl_refresh();
syslog(LOG_ERR, "Dump: pfi_table_age = %jd", syslog(LOG_ERR, "Dump: pfi_table_age = %jd",
@ -1508,6 +1778,11 @@ pf_dump(void)
syslog(LOG_ERR, "Dump: pft_table_count = %d", syslog(LOG_ERR, "Dump: pft_table_count = %d",
pft_table_count); pft_table_count);
syslog(LOG_ERR, "Dump: pfa_table_age = %jd",
(intmax_t)pfa_table_age);
syslog(LOG_ERR, "Dump: pfa_table_count = %d",
pfa_table_count);
syslog(LOG_ERR, "Dump: pfl_table_age = %jd", syslog(LOG_ERR, "Dump: pfl_table_age = %jd",
(intmax_t)pfl_table_age); (intmax_t)pfl_table_age);
syslog(LOG_ERR, "Dump: pfl_table_count = %d", syslog(LOG_ERR, "Dump: pfl_table_count = %d",

View File

@ -1,5 +1,5 @@
# #
# Copyright (c) 2005 Philip Paeps <philip@FreeBSD.org> # Copyright (c) 2010 Philip Paeps <philip@FreeBSD.org>
# All rights reserved. # All rights reserved.
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -34,9 +34,9 @@
(200 begemotPf (200 begemotPf
(1 begemotPfObjects (1 begemotPfObjects
(1 pfStatus (1 pfStatus
(1 pfStatusRunning INTEGER pf_status GET) (1 pfStatusRunning ENUM ( 1 true 2 false ) pf_status GET)
(2 pfStatusRuntime TIMETICKS pf_status GET) (2 pfStatusRuntime TIMETICKS pf_status GET)
(3 pfStatusDebug INTEGER pf_status GET) (3 pfStatusDebug ENUM ( 0 none 1 urgent 2 misc 3 loud ) pf_status GET)
(4 pfStatusHostId OCTETSTRING pf_status GET) (4 pfStatusHostId OCTETSTRING pf_status GET)
) )
(2 pfCounter (2 pfCounter
@ -106,7 +106,7 @@
(1 pfInterfacesIfEntry : INTEGER32 pf_iftable (1 pfInterfacesIfEntry : INTEGER32 pf_iftable
(1 pfInterfacesIfIndex INTEGER32) (1 pfInterfacesIfIndex INTEGER32)
(2 pfInterfacesIfDescr OCTETSTRING GET) (2 pfInterfacesIfDescr OCTETSTRING GET)
(3 pfInterfacesIfType INTEGER GET) (3 pfInterfacesIfType ENUM ( 0 group 1 instance 2 detached ) GET)
(4 pfInterfacesIfTZero TIMETICKS GET) (4 pfInterfacesIfTZero TIMETICKS GET)
(5 pfInterfacesIfRefsState UNSIGNED32 GET) (5 pfInterfacesIfRefsState UNSIGNED32 GET)
(6 pfInterfacesIfRefsRule UNSIGNED32 GET) (6 pfInterfacesIfRefsRule UNSIGNED32 GET)
@ -158,17 +158,18 @@
(3 pfTablesAddrTable (3 pfTablesAddrTable
(1 pfTablesAddrEntry : INTEGER32 pf_tbladdr (1 pfTablesAddrEntry : INTEGER32 pf_tbladdr
(1 pfTablesAddrIndex INTEGER32) (1 pfTablesAddrIndex INTEGER32)
(2 pfTablesAddrNet IPADDRESS GET) (2 pfTablesAddrNetType ENUM ( 0 unknown 1 ipv4 2 ipv6) GET)
(3 pfTablesAddrMask INTEGER32 GET) (3 pfTablesAddrNet OCTETSTRING | InetAddress GET)
(4 pfTablesAddrTZero TIMETICKS GET) (4 pfTablesAddrPrefix UNSIGNED32 GET)
(5 pfTablesAddrBytesInPass COUNTER64 GET) (5 pfTablesAddrTZero TIMETICKS GET)
(6 pfTablesAddrBytesInBlock COUNTER64 GET) (6 pfTablesAddrBytesInPass COUNTER64 GET)
(7 pfTablesAddrBytesOutPass COUNTER64 GET) (7 pfTablesAddrBytesInBlock COUNTER64 GET)
(8 pfTablesAddrBytesOutBlock COUNTER64 GET) (8 pfTablesAddrBytesOutPass COUNTER64 GET)
(9 pfTablesAddrPktsInPass COUNTER64 GET) (9 pfTablesAddrBytesOutBlock COUNTER64 GET)
(10 pfTablesAddrPktsInBlock COUNTER64 GET) (10 pfTablesAddrPktsInPass COUNTER64 GET)
(11 pfTablesAddrPktsOutPass COUNTER64 GET) (11 pfTablesAddrPktsInBlock COUNTER64 GET)
(12 pfTablesAddrPktsOutBlock COUNTER64 GET) (12 pfTablesAddrPktsOutPass COUNTER64 GET)
(13 pfTablesAddrPktsOutBlock COUNTER64 GET)
) )
) )
) )
@ -179,7 +180,7 @@
(1 pfAltqQueueIndex INTEGER32) (1 pfAltqQueueIndex INTEGER32)
(2 pfAltqQueueDescr OCTETSTRING GET) (2 pfAltqQueueDescr OCTETSTRING GET)
(3 pfAltqQueueParent OCTETSTRING GET) (3 pfAltqQueueParent OCTETSTRING GET)
(4 pfAltqQueueScheduler INTEGER GET) (4 pfAltqQueueScheduler ENUM ( 1 cbq 8 hfsc 11 priq ) GET)
(5 pfAltqQueueBandwidth UNSIGNED32 GET) (5 pfAltqQueueBandwidth UNSIGNED32 GET)
(6 pfAltqQueuePriority INTEGER32 GET) (6 pfAltqQueuePriority INTEGER32 GET)
(7 pfAltqQueueLimit INTEGER32 GET) (7 pfAltqQueueLimit INTEGER32 GET)