Discussion:
NMBCLUSTERS again
(too old to reply)
6***@6bone.informatik.uni-leipzig.de
2007-10-27 08:51:31 UTC
Permalink
hello,

I am using NetBSD 4.0_RC3. My server acts as firewall and router. A
nameserver is running, but no other services. The value for NMBCUSTERS is
16384.

The problem is that the value for mbufs in use is increasing by more
than 1500 per day. After some days the kernel reports INCREASE NMBCLUSTERS
and no more network communication is possible. A reboot is necessary.

At the moment netstat -m shows:

9670 mbufs in use:
8975 mbufs allocated to data
663 mbufs allocated to packet headers
32 mbufs allocated to socket names and addresses
2 calls to protocol drain routines


Any idea what the problem could be?


Thank you for your efforts
Uwe

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Darren Reed
2007-10-27 20:03:59 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
hello,
I am using NetBSD 4.0_RC3. My server acts as firewall and router. A
nameserver is running, but no other services. The value for NMBCUSTERS
is 16384.
The problem is that the value for mbufs in use is increasing by more
than 1500 per day. After some days the kernel reports INCREASE
NMBCLUSTERS and no more network communication is possible. A reboot is
necessary.
8975 mbufs allocated to data
663 mbufs allocated to packet headers
32 mbufs allocated to socket names and addresses
2 calls to protocol drain routines
Any idea what the problem could be?
Are you able to break down who's using the mbufs?

Darren


--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Darren Reed
2007-10-27 20:30:40 UTC
Permalink
If you're using IPFilter, the attached patch might help.

There are some situations where the mbuf that holds the packet
isn't the first mbuf in the chain can lead to the first mbuf not being
freed.

Darren
6***@6bone.informatik.uni-leipzig.de
2007-10-28 19:00:06 UTC
Permalink
hello,

I applied the patch but it does not help. The used mbufs are still
increasing.


Uwe

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
David Young
2007-10-28 19:22:53 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
hello,
I applied the patch but it does not help. The used mbufs are still
increasing.
With more information, we may be able to help you better. What network
interfaces do you use? Presumably you do use IP Filter and not, say, PF?
How does your kernel configuration differ from GENERIC? How does your
network configuration differ from the defaults?

Dave
--
David Young OJC Technologies
***@ojctech.com Urbana, IL * (217) 278-3933 ext 24

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
6***@6bone.informatik.uni-leipzig.de
2007-10-28 20:56:10 UTC
Permalink
hello,

the requestet information can be found at

https://6bone.informatik.uni-leipzig.de/netbsd/


the uptime is only 5h at the moment, so the used mbufs are not so high
yet, but the value is increasing continuously.



Uwe

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
David Young
2007-10-28 21:17:18 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
hello,
the requestet information can be found at
https://6bone.informatik.uni-leipzig.de/netbsd/
the uptime is only 5h at the moment, so the used mbufs are not so high
yet, but the value is increasing continuously.
Interesting. I will take a closer look at this, later. I don't suppose
the mbuf leakage correlates with an increasing statistic on one of
the interfaces? I am curious what ifconfig -av says.

Dave
--
David Young OJC Technologies
***@ojctech.com Urbana, IL * (217) 278-3933 ext 24

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
6***@6bone.informatik.uni-leipzig.de
2007-10-28 22:06:22 UTC
Permalink
Post by David Young
Interesting. I will take a closer look at this, later. I don't suppose
the mbuf leakage correlates with an increasing statistic on one of
the interfaces? I am curious what ifconfig -av says.
Dave
Now I have also reported ifconfig -va.


Uwe

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Darren Reed
2007-10-29 07:44:16 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
hello,
I applied the patch but it does not help. The used mbufs are still
increasing.
Ok. At this point I think we need to be able to get at more
information about mbufs in order to debug the problem further.

What I'd like to suggest is that we add "char *mh_file" and
"int mh_line" to "m_hdr" if DEBUG is defined and assign the
values of __FILE__ and __LINE__ to these fields in MGET and
MGETHDR if DEBUG is defined. Or even replace both of those
fields with a "char *mh_allocstack" that shows the kernel's
call stack.

But to make that workable, we need to change the pool cache
slightly - the pool_cache_group needs to carry an array of
pointers to objects that have been alloc'd, not just those
that are available to be allocated. A pcg_inuse[] that is
the inverse of pcg_objects[]. Then you can walk pcg_inuse[]
for mbufs and at least see who allocated the mbufs in question.

Thoughts?

Darren

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Joerg Sonnenberger
2007-10-29 12:40:00 UTC
Permalink
Post by Darren Reed
What I'd like to suggest is that we add "char *mh_file" and
"int mh_line" to "m_hdr" if DEBUG is defined and assign the
values of __FILE__ and __LINE__ to these fields in MGET and
MGETHDR if DEBUG is defined.
Use a single pointer and a global linked list.
__builtin_return_address(0) is cheaper and doesn't add that much
overhead. The global linked list can be iterated over from gdb.

Joerg

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
6***@6bone.informatik.uni-leipzig.de
2007-10-31 18:56:24 UTC
Permalink
Hello,

I think, I cannot help to include the debug code into the kernel but I
played something with my system. I think the first idea of Darren was
correct. If I disable ipfilter, the used mbufs are not longer increasing.

Unfortunaly, because of security reasons there is no option for me to
disable ipfilter for a longer time.

regards
Uwe

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Pavel Cahyna
2007-10-31 19:25:08 UTC
Permalink
Post by Darren Reed
Post by 6***@6bone.informatik.uni-leipzig.de
hello,
I applied the patch but it does not help. The used mbufs are still
increasing.
Ok. At this point I think we need to be able to get at more
information about mbufs in order to debug the problem further.
What I'd like to suggest is that we add "char *mh_file" and
"int mh_line" to "m_hdr" if DEBUG is defined and assign the
values of __FILE__ and __LINE__ to these fields in MGET and
MGETHDR if DEBUG is defined. Or even replace both of those
fields with a "char *mh_allocstack" that shows the kernel's
call stack.
But to make that workable, we need to change the pool cache
slightly - the pool_cache_group needs to carry an array of
pointers to objects that have been alloc'd, not just those
that are available to be allocated. A pcg_inuse[] that is
the inverse of pcg_objects[]. Then you can walk pcg_inuse[]
for mbufs and at least see who allocated the mbufs in question.
Thoughts?
Can't you just adapt ipfilter to use MBUFTRACE instead of such special
code?

Pavel

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Darren Reed
2007-11-04 18:07:50 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
Hello,
I think, I cannot help to include the debug code into the kernel but I
played something with my system. I think the first idea of Darren was
correct. If I disable ipfilter, the used mbufs are not longer increasing.
Were you testing with the recent patch I sent?
(This has been added to NetBSD)

Darren


--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Darren Reed
2007-11-04 18:53:03 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
Hello,
I think, I cannot help to include the debug code into the kernel but I
played something with my system. I think the first idea of Darren was
correct. If I disable ipfilter, the used mbufs are not longer increasing.
I've looked at the code again and found a few more potential issues
with mbuf's in ipfilter when it comes to pulldown and pullup. This
patch should be applied on top of the other patch I sent out recently.

Darren
6***@6bone.informatik.uni-leipzig.de
2007-11-05 07:13:43 UTC
Permalink
Hello Darren,

I have applied your patch and rebuilt the kernel. After booting with the
new one I got a kernel trace. You can download it from
Loading Image...


Regards
Uwe

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Darren Reed
2007-11-05 07:56:27 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
Hello Darren,
I have applied your patch and rebuilt the kernel. After booting with
the new one I got a kernel trace. You can download it from
http://6bone.informatik.uni-leipzig.de/netbsd/trace.jpg
Thanks.

Darren


--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Darren Reed
2007-11-05 09:58:37 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
Hello Darren,
I have applied your patch and rebuilt the kernel. After booting with
the new one I got a kernel trace. You can download it from
http://6bone.informatik.uni-leipzig.de/netbsd/trace.jpg
Can you please reverse out the previous patch and try this one?

I've tested it as far as ifconfig (that produced those panics) and believe
the logic is much better now.

Thanks,
Darren
Darren Reed
2007-11-05 10:06:26 UTC
Permalink
Argh, fat fingers deleted one "{" too many.

Please try the attached and ignore the previous.

Thanks,
Darren
Post by Darren Reed
Post by 6***@6bone.informatik.uni-leipzig.de
Hello Darren,
I have applied your patch and rebuilt the kernel. After booting with
the new one I got a kernel trace. You can download it from
http://6bone.informatik.uni-leipzig.de/netbsd/trace.jpg
Can you please reverse out the previous patch and try this one?
I've tested it as far as ifconfig (that produced those panics) and believe
the logic is much better now.
Thanks,
Darren
6***@6bone.informatik.uni-leipzig.de
2007-11-05 11:15:41 UTC
Permalink
I applied the patch.
The used mbufs are still increasing.


Regards
Uwe

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Darren Reed
2007-11-06 19:23:15 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
I applied the patch.
The used mbufs are still increasing.
Ok, I'm starting to wonder what the real cause is here...

Although there isn't complete synchronisation between
running different commands (netstat -m vs ipfstat),
what I would expect is there to be some correlation
in the increase in mbufs vs an increase on some other
counter. But it doesn't happen. It may be that there
is a weird interaction between IPFilter and some other
part of the kernel that we're not seeing.

In some circumstances, I've observed the mbuf counter
going backwards - but obviously not far enough. Does
anyone have a way of being able to examine the mbufs
that it believes are allocated?

If a crashdump is made, what do we look for with gdb?

Darren


diff -u netstat-m-[45]
--- netstat-m-4 2007-11-06 17:18:07.000000000 +0100
+++ netstat-m-5 2007-11-06 17:18:37.000000000 +0100
@@ -1,6 +1,6 @@
-Tue Nov 6 17:18:07 CET 2007
-2378 mbufs in use:
- 2341 mbufs allocated to data
+Tue Nov 6 17:18:37 CET 2007
+2384 mbufs in use:
+ 2347 mbufs allocated to data
5 mbufs allocated to packet headers
32 mbufs allocated to socket names and addresses
0 calls to protocol drain routines

diff -u ipfstat-[45]
--- ipfstat-4 2007-11-06 17:18:07.000000000 +0100
+++ ipfstat-5 2007-11-06 17:18:37.000000000 +0100
@@ -1,52 +1,52 @@
bad packets: in 0 out 0
- IPv6 packets: in 92637671 out 92505651
- input packets: blocked 2562 passed 93909497 nomatch
54702546 counted 0 short 0
-output packets: blocked 6 passed 93447714 nomatch
54326544 counted 0 short 0
+ IPv6 packets: in 92750479 out 92618455
+ input packets: blocked 2563 passed 94023840 nomatch
54768249 counted 0 short 0
+output packets: blocked 6 passed 93561692 nomatch
54391883 counted 0 short 0
input packets logged: blocked 0 passed 0
output packets logged: blocked 0 passed 0
packets logged: input 0 output 0
log failures: input 0 output 0
fragment state(in): kept 0 lost 0 not fragmented 0
fragment state(out): kept 0 lost 0 not fragmented 0
-packet state(in): kept 2351 lost 2562
+packet state(in): kept 2351 lost 2563
packet state(out): kept 0 lost 0
ICMP replies: 0 TCP RSTs sent: 0
Invalid source(in): 0
-Result cache hits(in): 38959650 (out): 38870114
-IN Pullups succeeded: 70410 failed: 0
-OUT Pullups succeeded: 80574 failed: 0
+Result cache hits(in): 39008278 (out): 38918740
+IN Pullups succeeded: 70416 failed: 0
+OUT Pullups succeeded: 80589 failed: 0
IN m_pullup succeeded: 64434 failed: 0
OUT m_pullup succeeded: 65129 failed: 0
IN m_pulldown succeeded: 0 failed: 0
OUT m_pulldown succeeded: 21 failed: 0
Fastroute successes: 0 failures: 0
TCP cksum fails(in): 0 (out): 0
-IPF Ticks: 66126
+IPF Ticks: 66186
Packet log flags set: (0)
none
bad packets: in 0 out 0
- IPv6 packets: in 159559651 out 159313827
- input packets: blocked 4981 passed 161859760 nomatch
95174584 counted 0 short 0
-output packets: blocked 6 passed 160994208 nomatch
94471535 counted 0 short 0
+ IPv6 packets: in 159629247 out 159383274
+ input packets: blocked 4984 passed 161930378 nomatch
95214176 counted 0 short 0
+output packets: blocked 6 passed 161064355 nomatch
94510727 counted 0 short 0
input packets logged: blocked 0 passed 0
output packets logged: blocked 0 passed 0
packets logged: input 0 output 0
log failures: input 0 output 0
fragment state(in): kept 0 lost 0 not fragmented 0
fragment state(out): kept 0 lost 0 not fragmented 0
-packet state(in): kept 4427 lost 4981
+packet state(in): kept 4431 lost 4984
packet state(out): kept 0 lost 0
ICMP replies: 0 TCP RSTs sent: 0
Invalid source(in): 0
-Result cache hits(in): 66372351 (out): 66202597
-IN Pullups succeeded: 117064 failed: 0
-OUT Pullups succeeded: 135520 failed: 0
+Result cache hits(in): 66403357 (out): 66233527
+IN Pullups succeeded: 117070 failed: 0
+OUT Pullups succeeded: 135527 failed: 0
IN m_pullup succeeded: 107148 failed: 0
-OUT m_pullup succeeded: 108329 failed: 0
+OUT m_pullup succeeded: 108330 failed: 0
IN m_pulldown succeeded: 0 failed: 0
OUT m_pulldown succeeded: 31 failed: 0
Fastroute successes: 0 failures: 0
TCP cksum fails(in): 0 (out): 0
-IPF Ticks: 109359
+IPF Ticks: 109419
Packet log flags set: (0)
none

diff -u netstat-s-[45] | more
--- netstat-s-4 2007-11-06 17:18:07.000000000 +0100
+++ netstat-s-5 2007-11-06 17:18:37.000000000 +0100
@@ -1,6 +1,6 @@
-Tue Nov 6 17:18:07 CET 2007
+Tue Nov 6 17:18:37 CET 2007
ip:
- 2329686 total packets received
+ 2330711 total packets received
0 bad header checksums
0 with size smaller than minimum
0 with data size < data length
@@ -15,13 +15,13 @@
0 malformed fragments dropped
0 fragments dropped after timeout
0 packets reassembled ok
- 1968813 packets for this host
+ 1969678 packets for this host
2 packets for unknown/unsupported protocol
0 packets forwarded (0 packets fast forwarded)
- 360871 packets not forwardable
+ 361031 packets not forwardable
0 redirects sent
0 packets no matching gif found
- 1695430 packets sent from this host
+ 1696130 packets sent from this host
0 packets sent with fabricated ip header
0 output packets dropped due to no bufs, etc.
0 output packets discarded due to no route
@@ -30,17 +30,17 @@
0 datagrams that can't be fragmented
0 datagrams with bad address in header
icmp:
- 27361 calls to icmp_error
+ 27367 calls to icmp_error
0 errors not generated because old message was icmp
Output histogram:
echo reply: 171
- destination unreachable: 27359
+ destination unreachable: 27365
49 messages with bad code fields
0 messages < minimum length
0 bad checksums
0 messages with bad length
Input histogram:
- destination unreachable: 9452
+ destination unreachable: 9458
source quench: 25
routing redirect: 1
echo: 171
@@ -48,20 +48,20 @@
171 message responses generated
0 path MTU changes
tcp:
- 53012 packets sent
- 23788 data packets (8049540 bytes)
+ 53054 packets sent
+ 23818 data packets (8058705 bytes)
10 data packets (5891 bytes) retransmitted
- 20165 ack-only packets (24419 delayed)
+ 20175 ack-only packets (24438 delayed)
0 URG only packets
0 window probe packets
0 window update packets
- 9049 control packets
+ 9051 control packets
0 send attempts resulted in self-quench
- 91275 packets received
- 39211 acks (for 8066090 bytes)
- 260 duplicate acks
+ 91331 packets received
+ 39243 acks (for 8075259 bytes)
+ 262 duplicate acks
0 acks for unsent data
- 24672 packets (674438 bytes) received in-sequence
+ 24693 packets (675700 bytes) received in-sequence
40 completely duplicate packets (4373 bytes)
0 old duplicate packets
0 packets with some dup. data (0 bytes duped)
@@ -74,12 +74,12 @@
0 discarded for bad header offset fields
0 discarded because packet too short
140 connection requests
- 8760 connection accepts
- 8900 connections established (including accepts)
- 8932 connections closed (including 3 drops)
+ 8762 connection accepts
+ 8902 connections established (including accepts)
+ 8934 connections closed (including 3 drops)
0 embryonic connections dropped
0 delayed frees of tcpcb
- 30122 segments updated rtt (of 29813 attempts)
+ 30152 segments updated rtt (of 29843 attempts)
23 retransmit timeouts
0 connections dropped by rexmit timeout
0 persist timeouts (resulting in 0 dropped connections)
@@ -87,15 +87,15 @@
4 keepalive probes sent
0 connections dropped by keepalive
1363 correct ACK header predictions
- 13681 correct data packet header predictions
- 75379 PCB hash misses
- 28915 dropped due to no socket
+ 13689 correct data packet header predictions
+ 75405 PCB hash misses
+ 28926 dropped due to no socket
0 connections drained due to memory shortage
1 PMTUD blackhole detected
4 bad connection attempts
- 8771 SYN cache entries added
+ 8773 SYN cache entries added
0 hash collisions
- 8760 completed
+ 8762 completed
0 aborted (no space to build PCB)
2 timed out
0 dropped due to overflow
@@ -112,18 +112,18 @@
0 packets with ECN CE bit
0 packets ECN ECT(0) bit
udp:
- 1246189 datagrams received
+ 1246742 datagrams received
0 with incomplete header
0 with bad data length field
0 with bad checksum
- 27359 dropped due to no socket
- 55138 broadcast/multicast datagrams dropped due to no socket
+ 27365 dropped due to no socket
+ 55174 broadcast/multicast datagrams dropped due to no socket
0 dropped due to full socket buffers
- 1163692 delivered
- 9294528 PCB hash misses
- 1194668 datagrams output
+ 1164203 delivered
+ 9298940 PCB hash misses
+ 1195202 datagrams output
ip6:
- 160166271 total packets received
+ 160235863 total packets received
0 with size smaller than minimum
0 with data size < data length
0 with bad options
@@ -133,11 +133,11 @@
0 fragments dropped after timeout
0 fragments that exceeded limit
0 packets reassembled ok
- 8335652 packets for this host
- 151629719 packets forwarded
+ 8339554 packets for this host
+ 151695308 packets forwarded
1 packet not forwardable
0 redirects sent
- 8288300 packets sent from this host
+ 8292152 packets sent from this host
0 packets sent with fabricated ip header
0 output packets dropped due to no bufs, etc.
104 output packets discarded due to no route
@@ -147,25 +147,25 @@
5 packets that violated scope rules
0 multicast packets which we don't join
Input packet histogram:
- hop by hop: 221068
- TCP: 151587432
- UDP: 8100301
+ hop by hop: 221074
+ TCP: 151652909
+ UDP: 8104307
fragment: 72
- ICMP6: 215822
- PIM: 36595
+ ICMP6: 215902
+ PIM: 36615
Mbuf statistics:
- 34753 one mbufs
+ 34772 one mbufs
two or more mbuf:
lo0 = 54351
- gif5 = 1865
- 160075302 one ext mbufs
+ gif5 = 1867
+ 160144873 one ext mbufs
0 two or more ext mbufs
0 packets whose headers are not continuous
0 tunneling packets that can't find gif
0 packets discarded due to too many headers
0 failures of source address selection
- 88402856 forward cache hit
- 71450166 forward cache miss
+ 88440997 forward cache hit
+ 71481549 forward cache miss
icmp6:
238 calls to icmp6_error
11 errors not generated because old message was icmp6 or so
@@ -178,23 +178,23 @@
multicast listener query: 8360
multicast listener report: 46179
router advertisement: 2104
- neighbor solicitation: 34769
- neighbor advertisement: 28471
+ neighbor solicitation: 34792
+ neighbor advertisement: 28486
0 messages with bad code fields
0 messages < minimum length
281 bad checksums
0 messages with bad length
Input packet histogram:
- unreach: 47671
+ unreach: 47700
time exceed: 42926
echo: 6853
multicast listener query: 8360
- multicast listener report: 210133
- multicast listener done: 681
+ multicast listener report: 210137
+ multicast listener done: 683
router solicitation: 284
router advertisement: 381
- neighbor solicitation: 28939
- neighbor advertisement: 30463
+ neighbor solicitation: 28954
+ neighbor advertisement: 30483
#143: 1250
Histogram of error messages to be generated:
104 no route
@@ -220,20 +220,20 @@
0 bad redirect messages
0 path MTU changes
tcp6:
- 53012 packets sent
- 23788 data packets (8049540 bytes)
+ 53054 packets sent
+ 23818 data packets (8058705 bytes)
10 data packets (5891 bytes) retransmitted
- 20165 ack-only packets (24419 delayed)
+ 20175 ack-only packets (24438 delayed)
0 URG only packets
0 window probe packets
0 window update packets
- 9049 control packets
+ 9051 control packets
0 send attempts resulted in self-quench
- 91275 packets received
- 39211 acks (for 8066090 bytes)
- 260 duplicate acks
+ 91331 packets received
+ 39243 acks (for 8075259 bytes)
+ 262 duplicate acks
0 acks for unsent data
- 24672 packets (674438 bytes) received in-sequence
+ 24693 packets (675700 bytes) received in-sequence
40 completely duplicate packets (4373 bytes)
0 old duplicate packets
0 packets with some dup. data (0 bytes duped)
@@ -246,12 +246,12 @@
0 discarded for bad header offset fields
0 discarded because packet too short
140 connection requests
- 8760 connection accepts
- 8900 connections established (including accepts)
- 8932 connections closed (including 3 drops)
+ 8762 connection accepts
+ 8902 connections established (including accepts)
+ 8934 connections closed (including 3 drops)
0 embryonic connections dropped
0 delayed frees of tcpcb
- 30122 segments updated rtt (of 29813 attempts)
+ 30152 segments updated rtt (of 29843 attempts)
23 retransmit timeouts
0 connections dropped by rexmit timeout
0 persist timeouts (resulting in 0 dropped connections)
@@ -259,15 +259,15 @@
4 keepalive probes sent
0 connections dropped by keepalive
1363 correct ACK header predictions
- 13681 correct data packet header predictions
- 75379 PCB hash misses
- 28915 dropped due to no socket
+ 13689 correct data packet header predictions
+ 75405 PCB hash misses
+ 28926 dropped due to no socket
0 connections drained due to memory shortage
1 PMTUD blackhole detected
4 bad connection attempts
- 8771 SYN cache entries added
+ 8773 SYN cache entries added
0 hash collisions
- 8760 completed
+ 8762 completed
0 aborted (no space to build PCB)
2 timed out
0 dropped due to overflow
@@ -284,7 +284,7 @@
0 packets with ECN CE bit
0 packets ECN ECT(0) bit
udp6:
- 8021478 datagrams received
+ 8025335 datagrams received
0 with incomplete header
0 with bad data length field
84 with bad checksum
@@ -292,10 +292,10 @@
5 dropped due to no socket
0 multicast datagrams dropped due to no socket
2 dropped due to full socket buffers
- 8021387 delivered
- 8077726 datagrams output
+ 8025244 delivered
+ 8081501 datagrams output
pim6:
- 36595 messages received
+ 36615 messages received
0 messages received with too few bytes
0 messages received with bad checksum
0 messages received with bad version
@@ -303,13 +303,13 @@
0 bad registers received
0 registers sent
rip6:
- 36595 messages received
+ 36615 messages received
0 checksum calculations on inbound
0 messages with bad checksum
0 messages dropped due to no socket
0 multicast messages dropped due to no socket
0 messages dropped due to full socket buffers
- 36595 delivered
- 34752 datagrams output
+ 36615 delivered
+ 34771 datagrams output
TP not configured


--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Liam Foy
2007-11-07 18:47:40 UTC
Permalink
Post by 6***@6bone.informatik.uni-leipzig.de
hello,
I am using NetBSD 4.0_RC3. My server acts as firewall and router. A
nameserver is running, but no other services. The value for NMBCUSTERS is
16384.
The problem is that the value for mbufs in use is increasing by more
than 1500 per day. After some days the kernel reports INCREASE NMBCLUSTERS
and no more network communication is possible. A reboot is necessary.
8975 mbufs allocated to data
663 mbufs allocated to packet headers
32 mbufs allocated to socket names and addresses
2 calls to protocol drain routines
Any idea what the problem could be?
Can I also request a view of 'sysctl -A' ?
--
Liam J. Foy
***@netbsd.org
http://bsdportal.org <- BSD News

--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
6***@6bone.informatik.uni-leipzig.de
2007-11-07 23:37:46 UTC
Permalink
Post by Liam Foy
Can I also request a view of 'sysctl -A' ?
kern.ostype = NetBSD
kern.osrelease = 4.0_RC3
kern.osrevision = 400000003
kern.version = NetBSD 4.0_RC3 (MYCONF.MP) #10: Tue Nov 6 01:10:12 CET 2007
***@gate.ipv6.uni-leipzig.de:/usr/obj/sys/arch/i386/compile/MYCONF.MP

kern.maxvnodes = 62396
kern.maxproc = 532
kern.maxfiles = 1772
kern.argmax = 262144
kern.securelevel = 1
kern.hostname = gate.ipv6.uni-leipzig.de
kern.hostid = 0
kern.clockrate: tick = 10000, tickadj = 40, hz = 100, profhz = 100, stathz = 100
sysctl: kern.vnode: use 'pstat' to view this information
sysctl: kern.proc: use 'ps' to view this information
sysctl: kern.file: use 'pstat' to view this information
kern.profiling: no children
kern.posix1version = 199009
kern.ngroups = 16
kern.job_control = 1
kern.saved_ids = 0
kern.boottime = Tue Nov 6 02:03:45 2007
kern.domainname =
kern.maxpartitions = 16
kern.rawpartition = 3
sysctl: kern.ntptime: use 'ntpdc -c kerninfo' to view this information
sysctl: kern.timex: the value is not available
kern.autonicetime = 0
kern.autoniceval = 4
kern.rtc_offset = 0
kern.root_device = ld0
kern.msgbufsize = 16368
kern.fsync = 1
kern.synchronized_io = 1
kern.iov_max = 1024
kern.mbuf.msize = 256
kern.mbuf.mclbytes = 2048
kern.mbuf.nmbclusters = 32768
kern.mbuf.mblowat = 16
kern.mbuf.mcllowat = 8
sysctl: kern.mbuf.stats: this type is unknown to this program
sysctl: kern.mbuf.mowners: this type is unknown to this program
kern.mapped_files = 1
kern.memlock = 1
kern.memlock_range = 1
kern.memory_protection = 1
kern.login_name_max = 17
kern.defcorename = %n.core
kern.logsigexit = 0
sysctl: kern.proc2: use 'ps' to view this information
sysctl: kern.proc_args: use 'ps' to view this information
kern.fscale = 2048
kern.ccpu = 1948
kern.cp_time: user = 383825, nice = 0, sys = 252153, intr = 474715, idle = 65828576
kern.cp_time.0: user = 369081, nice = 0, sys = 239817, intr = 474693, idle = 15642354
kern.cp_time.1: user = 4551, nice = 0, sys = 3653, intr = 6, idle = 16736398
kern.cp_time.2: user = 6463, nice = 0, sys = 5549, intr = 8, idle = 16712140
kern.cp_time.3: user = 3730, nice = 0, sys = 3134, intr = 8, idle = 16737684
sysctl: kern.msgbuf: use 'dmesg' to view this information
kern.consdev = ttyE0
kern.maxptys = 992
kern.pipe.maxkvasz = 8388608
kern.pipe.maxloankvasz = 16777216
kern.pipe.maxbigpipes = 32
kern.pipe.nbigpipes = 0
kern.pipe.kvasize = 81920
kern.maxphys = 65536
kern.sbmax = 262144
kern.tkstat.nin = 5046
kern.tkstat.nout = 7084079
kern.tkstat.cancc = 1145
kern.tkstat.rawcc = 3901
kern.monotonic_clock = 200112
kern.urandom = 1534016264
kern.labelsector = 1
kern.labeloffset = 0
kern.lwp: no children
kern.forkfsleep = 0
kern.posix_threads = 200112
kern.posix_semaphores = 200112
kern.posix_barriers = 200112
kern.posix_timers = 200112
kern.posix_spin_locks = 200112
kern.posix_reader_writer_locks = 200112
kern.dump_on_panic = 1
kern.somaxkva = 16777216
kern.root_partition = 0
kern.drivers = [160 -1 crypto], [161 -1 pf], [163 163 fss], [164 -1 pps], [165 -1 ptm], [166 -1 atabus], [167 -1 drvctl], [168 168 dk], [169 -1 tap], [170 -1 veriexec], [171 -1 fw], [172 -1 ucycom], [173 -1 gpio], [174 -1 utoppy], [175 -1 bthub], [176 -1 amr], [177 -1 lockstat], [178 -1 puffs], [181 -1 bio], [187 -1 twa], [0 -1 cons], [1 -1 ctty], [2 -1 mem], [3 0 wd], [4 1 swap], [5 -1 pts], [6 -1 ptc], [7 -1 log], [8 -1 com], [9 2 fd], [10 3 wt], [11 15 scd], [12 -1 pc], [13 4 sd], [14 5 st], [15 6 cd], [16 -1 lpt], [17 -1 ch], [18 16 ccd], [19 -1 ss], [20 -1 uk], [21 -1 apm], [22 -1 filedesc], [23 -1 bpf], [24 17 md], [26 -1 joy], [27 -1 spkr], [28 -1 lkm], [38 -1 cy], [39 7 mcd], [40 -1 tun], [41 14 vnd], [42 -1 audio], [43 -1 svr4_net], [44 -1 ipl], [45 -1 satlink], [46 -1 rnd], [47 -1 wsdisplay], [48 -1 wskbd], [49 -1 wsmouse], [50 -1 isdn], [51 -1 isdnctl], [52 -1 isdnbchan], [53 -1 isdntrc], [54 -1 isdntel], [55 -1 usb], [56 -1 uhid], [57 -1 ulpt], [58 -1 midi], [59 -1 sequencer], [60 -1 vcoda], [61 -1 scsibus], [62 18 raid], [63 -1 esh], [64 -1 ugen], [65 -1 wsmux], [66 -1 ucom], [67 -1 sysmon], [68 -1 vmegeneric], [69 19 ld], [70 -1 urio], [71 -1 bktr], [73 -1 cz], [74 -1 ses], [75 -1 uscanner], [76 -1 iop], [77 -1 altq], [78 -1 mlx], [79 20 ed], [80 -1 mly], [81 -1 wsfont], [82 -1 agp], [83 -1 pci], [84 -1 dpti], [85 -1 irframe], [86 -1 cir], [87 -1 radio], [89 -1 clockctl], [90 -1 systrace], [91 -1 kttcp], [92 -1 dmoverio], [93 21 cgd], [96 -1 dpt], [97 -1 twe], [98 -1 nsmb], [99 -1 vmmon], [100 -1 vmnet], [101 -1 ksyms], [102 -1 icp], [103 -1 gpib], [104 -1 ppi], [105 22 rd], [106 23 ct], [107 24 mt], [141 -1 xenevt], [142 142 xbd], [143 -1 xencons]
kern.buf: no children
sysctl: kern.file2: use 'pstat' to view this information
kern.cp_id.3 = 578167194349731840
kern.hardclock_ticks = 16725946
kern.arandom = -382659746
sysctl: kern.ipc.sysvipc_info: the value is not available
kern.ipc.sysvmsg = 1
kern.ipc.sysvsem = 1
kern.ipc.sysvshm = 1
kern.ipc.shmmax = 8388608
kern.ipc.shmmni = 128
kern.ipc.shmseg = 128
kern.ipc.shmmaxpgs = 2048
kern.ipc.shm_use_phys = 0
kern.usercrypto = 1
kern.userasymcrypto = 1
kern.cryptodevallowsoft = 1
kern.veriexec.verbose = 0
kern.veriexec.strict = 0
kern.veriexec.algorithms = RMD160 SHA256 SHA384 SHA512 SHA1 MD5
kern.veriexec.count: no children
kern.coredump.setid.dump = 0
kern.coredump.setid.path = /var/crash/%n.core
kern.coredump.setid.owner = 0
kern.coredump.setid.group = 0
kern.coredump.setid.mode = 0600 (rw------- )
kern.timecounter.choice = clockinterrupt(q=0, f=100 Hz) TSC(q=-100, f=2992689380 Hz) ACPI-Fast(q=1000, f=3579545 Hz) i8254(q=100, f=1193182 Hz) dummy(q=-1000000, f=1000000 Hz)
kern.timecounter.hardware = ACPI-Fast
kern.timecounter.timestepwarnings = 0
kern.bufq.strategies = disksort fcfs
kern.osreldate = 400000003
sysctl: vm.vmmeter: use 'vmstat' or 'systat' to view this information
vm.loadavg: 0.00 0.01 0.00
sysctl: vm.uvmexp: use 'vmstat' or 'systat' to view this information
vm.nkmempages = 32768
sysctl: vm.uvmexp2: use 'vmstat' or 'systat' to view this information
vm.maxslp = 20
vm.uspace = 12288
vm.idlezero = 0
vm.anonmin = 10
vm.filemin = 10
vm.execmin = 5
vm.anonmax = 80
vm.filemax = 50
vm.execmax = 30
vm.inactivepct = 33
vm.bufcache = 15
vm.bufmem = 156573696
vm.bufmem_lowater = 20121600
vm.bufmem_hiwater = 160972800
vfs.generic.maxtypenum = 10
sysctl: vfs.generic.conf: the value is not available
vfs.generic.usermount = 0
vfs.generic.magiclinks = 0
vfs.generic.fstypes = mfs lfs ffs ext2fs nfs umap procfs portal overlay null kernfs fdesc union tmpfs smbfs ptyfs ntfs msdos cd9660 coda
sysctl: vfs.ffs.doclusterread: the value is not available
sysctl: vfs.ffs.doclusterwrite: the value is not available
sysctl: vfs.ffs.doreallocblks: the value is not available
vfs.ffs.log_changeopt = 0
sysctl: vfs.nfs.nfsstats: use 'nfsstat' to view this information
vfs.nfs.iothreads = -1
vfs.msdosfs: no children
vfs.lfs.flushindir = 1
vfs.lfs.clean_vnhead = 0
vfs.lfs.dostats = 1
vfs.lfs.pagetrip = 0
vfs.lfs.stats.segsused = 0
vfs.lfs.stats.psegwrites = 0
vfs.lfs.stats.psyncwrites = 0
vfs.lfs.stats.pcleanwrites = 0
vfs.lfs.stats.blocktot = 0
vfs.lfs.stats.cleanblocks = 0
vfs.lfs.stats.ncheckpoints = 0
vfs.lfs.stats.nwrites = 0
vfs.lfs.stats.nsync_writes = 0
vfs.lfs.stats.wait_exceeded = 0
vfs.lfs.stats.write_exceeded = 0
vfs.lfs.stats.flush_invoked = 0
vfs.lfs.stats.vflush_invoked = 0
vfs.lfs.stats.clean_inlocked = 0
vfs.lfs.stats.clean_vnlocked = 0
vfs.lfs.stats.segs_reclaimed = 0
vfs.lfs.ignore_lazy_sync = 1
vfs.fdesc: no children
vfs.portal: no children
vfs.null: no children
vfs.umap: no children
vfs.kernfs: no children
vfs.procfs: no children
vfs.cd9660.utf8_joliet = 1
vfs.union: no children
vfs.ext2fs: no children
vfs.coda: no children
vfs.ntfs: no children
vfs.ptyfs: no children
vfs.samba.version = 101013
vfs.overlay: no children
vfs.layerfs: no children
vfs.sync.delay = 30
vfs.sync.filedelay = 30
vfs.sync.dirdelay = 15
vfs.sync.metadelay = 10
sysctl: net.local.stream.pcblist: use 'netstat' or 'sockstat' to view this information
sysctl: net.local.dgram.pcblist: use 'netstat' or 'sockstat' to view this information
net.inet.ip.forwarding = 1
net.inet.ip.redirect = 1
net.inet.ip.ttl = 64
net.inet.ip.forwsrcrt = 1
net.inet.ip.directed-broadcast = 0
net.inet.ip.allowsrcrt = 1
net.inet.ip.subnetsarelocal = 1
net.inet.ip.mtudisc = 1
net.inet.ip.anonportmin = 49152
net.inet.ip.anonportmax = 65535
net.inet.ip.mtudisctimeout = 600
net.inet.ip.maxflows = 256
net.inet.ip.hostzerobroadcast = 1
net.inet.ip.gifttl = 30
net.inet.ip.lowportmin = 600
net.inet.ip.lowportmax = 1023
net.inet.ip.maxfragpackets = 200
net.inet.ip.grettl = 30
net.inet.ip.checkinterface = 0
net.inet.ip.ifq.len = 0
net.inet.ip.ifq.maxlen = 256
net.inet.ip.ifq.drops = 0
net.inet.ip.random_id = 0
net.inet.ip.do_loopback_cksum = 0
sysctl: net.inet.ip.stats: use 'netstat' to view this information
net.inet.icmp.maskrepl = 0
net.inet.icmp.returndatabytes = 8
net.inet.icmp.errppslimit = 100
net.inet.icmp.rediraccept = 1
net.inet.icmp.redirtimeout = 600
sysctl: net.inet.icmp.stats: use 'netstat' to view this information
net.inet.tcp.rfc1323 = 1
net.inet.tcp.sendspace = 32768
net.inet.tcp.recvspace = 32768
net.inet.tcp.mssdflt = 536
net.inet.tcp.syn_cache_limit = 10255
net.inet.tcp.syn_bucket_limit = 105
net.inet.tcp.init_win = 0
net.inet.tcp.mss_ifmtu = 0
net.inet.tcp.sack.enable = 1
net.inet.tcp.sack.maxholes = 32
net.inet.tcp.sack.globalmaxholes = 1024
net.inet.tcp.sack.globalholes = 0
net.inet.tcp.win_scale = 1
net.inet.tcp.timestamps = 1
net.inet.tcp.compat_42 = 0
net.inet.tcp.cwm = 0
net.inet.tcp.cwm_burstsize = 4
net.inet.tcp.ack_on_push = 0
net.inet.tcp.keepidle = 14400
net.inet.tcp.keepintvl = 150
net.inet.tcp.keepcnt = 8
net.inet.tcp.slowhz = 2
net.inet.tcp.log_refused = 0
net.inet.tcp.rstppslimit = 100
net.inet.tcp.delack_ticks = 20
net.inet.tcp.init_win_local = 4
sysctl: net.inet.tcp.ident: use 'identd' to view this information
net.inet.tcp.do_loopback_cksum = 0
sysctl: net.inet.tcp.stats: use 'netstat' to view this information
net.inet.tcp.congctl.available = reno newreno
net.inet.tcp.congctl.selected = newreno
sysctl: net.inet.tcp.pcblist: use 'netstat' or 'sockstat' to view this information
net.inet.tcp.ecn.enable = 0
net.inet.tcp.ecn.maxretries = 1
net.inet.tcp.iss_hash = 0
net.inet.tcp.abc.enable = 1
net.inet.tcp.abc.aggressive = 1
net.inet.udp.checksum = 1
net.inet.udp.sendspace = 9216
net.inet.udp.recvspace = 41600
net.inet.udp.do_loopback_cksum = 0
sysctl: net.inet.udp.stats: use 'netstat' to view this information
sysctl: net.inet.udp.pcblist: use 'netstat' or 'sockstat' to view this information
sysctl: net.inet.ipsec.stats: use 'netstat' to view this information
net.inet.ipsec.def_policy = 1
net.inet.ipsec.esp_trans_deflev = 1
net.inet.ipsec.esp_net_deflev = 1
net.inet.ipsec.ah_trans_deflev = 1
net.inet.ipsec.ah_net_deflev = 1
net.inet.ipsec.ah_cleartos = 1
net.inet.ipsec.ah_offsetmask = 0
net.inet.ipsec.dfbit = 2
net.inet.ipsec.ecn = 0
net.inet.ipsec.debug = 0
sysctl: net.inet.raw.pcblist: use 'netstat' or 'sockstat' to view this information
net.inet.arp.prune = 300
net.inet.arp.keep = 1200
net.inet.arp.down = 20
net.inet.arp.refresh = 300
net.route.rtable: no children
sysctl: net.route.stats: this type is unknown to this program
net.link.ieee80211.nodes: no children
net.link.ieee80211.debug = 0
net.link.ieee80211.rssadapt.debug = 0
sysctl: net.link.ieee80211.rssadapt.expavgctl: this type is unknown to this program
net.link.tap.tap0 = f2:0b:a4:77:60:07
net.link.tap.tap1 = f2:0b:a4:88:27:04
net.link.tap.tap2 = f2:0b:a4:30:c0:04
net.link.tap.tap3 = f2:0b:a4:b1:87:05
net.link.tap.tap4 = f2:0b:a4:61:5b:0a
net.link.tap.tap5 = f2:0b:a4:56:1c:0b
net.link.tap.tap6 = f2:0b:a4:69:b9:0b
net.link.tap.tap7 = f2:0b:a4:10:7c:08
net.link.tap.tap8 = f2:0b:a4:e6:e1:08
net.link.tap.tap9 = f2:0b:a4:af:a5:09
net.link.tap.tap10 = f2:0b:a4:3f:46:0e
net.link.tap.tap11 = f2:0b:a4:ff:e2:0e
net.link.tap.tap12 = f2:0b:a4:a4:a1:0f
net.link.tap.tap13 = f2:0b:a4:75:2b:0c
net.link.tap.tap14 = f2:0b:a4:12:01:0d
net.inet6.tcp6.rfc1323 = 1
net.inet6.tcp6.sendspace = 32768
net.inet6.tcp6.recvspace = 32768
net.inet6.tcp6.mssdflt = 536
net.inet6.tcp6.syn_cache_limit = 10255
net.inet6.tcp6.syn_bucket_limit = 105
net.inet6.tcp6.init_win = 0
net.inet6.tcp6.mss_ifmtu = 0
net.inet6.tcp6.sack.enable = 1
net.inet6.tcp6.sack.maxholes = 32
net.inet6.tcp6.sack.globalmaxholes = 1024
net.inet6.tcp6.sack.globalholes = 0
net.inet6.tcp6.win_scale = 1
net.inet6.tcp6.timestamps = 1
net.inet6.tcp6.compat_42 = 0
net.inet6.tcp6.cwm = 0
net.inet6.tcp6.cwm_burstsize = 4
net.inet6.tcp6.ack_on_push = 0
net.inet6.tcp6.keepidle = 14400
net.inet6.tcp6.keepintvl = 150
net.inet6.tcp6.keepcnt = 8
net.inet6.tcp6.slowhz = 2
net.inet6.tcp6.log_refused = 0
net.inet6.tcp6.rstppslimit = 100
net.inet6.tcp6.delack_ticks = 20
net.inet6.tcp6.init_win_local = 4
sysctl: net.inet6.tcp6.ident: use 'identd' to view this information
net.inet6.tcp6.do_loopback_cksum = 0
sysctl: net.inet6.tcp6.stats: use 'netstat' to view this information
net.inet6.tcp6.congctl.available = reno newreno
net.inet6.tcp6.congctl.selected = newreno
sysctl: net.inet6.tcp6.pcblist: use 'netstat' or 'sockstat' to view this information
net.inet6.tcp6.ecn.enable = 0
net.inet6.tcp6.ecn.maxretries = 1
net.inet6.tcp6.iss_hash = 0
net.inet6.tcp6.abc.enable = 1
net.inet6.tcp6.abc.aggressive = 1
net.inet6.udp6.sendspace = 9216
net.inet6.udp6.recvspace = 42080
net.inet6.udp6.do_loopback_cksum = 0
sysctl: net.inet6.udp6.stats: use 'netstat' to view this information
sysctl: net.inet6.udp6.pcblist: use 'netstat' or 'sockstat' to view this information
net.inet6.ip6.forwarding = 1
net.inet6.ip6.redirect = 1
net.inet6.ip6.hlim = 64
sysctl: net.inet6.ip6.stats: use 'netstat' to view this information
net.inet6.ip6.maxfragpackets = 200
net.inet6.ip6.accept_rtadv = 0
net.inet6.ip6.keepfaith = 0
net.inet6.ip6.log_interval = 5
net.inet6.ip6.hdrnestlimit = 50
net.inet6.ip6.dad_count = 1
net.inet6.ip6.auto_flowlabel = 1
net.inet6.ip6.defmcasthlim = 1
net.inet6.ip6.gifhlim = 30
net.inet6.ip6.kame_version = NetBSD-current
net.inet6.ip6.use_deprecated = 1
net.inet6.ip6.rr_prune = 5
net.inet6.ip6.v6only = 1
net.inet6.ip6.anonportmin = 49152
net.inet6.ip6.anonportmax = 65535
net.inet6.ip6.lowportmin = 600
net.inet6.ip6.lowportmax = 1023
net.inet6.ip6.use_defaultzone = 0
net.inet6.ip6.maxfrags = 200
net.inet6.ip6.ifq.len = 0
net.inet6.ip6.ifq.maxlen = 256
net.inet6.ip6.ifq.drops = 0
net.inet6.ip6.use_tempaddr = 0
net.inet6.ip6.temppltime = 86400
net.inet6.ip6.tempvltime = 604800
net.inet6.ip6.mcast_pmtu = 0
net.inet6.ip6.rht0 = -1
sysctl: net.inet6.ipsec6.stats: use 'netstat' to view this information
net.inet6.ipsec6.def_policy = 1
net.inet6.ipsec6.esp_trans_deflev = 1
net.inet6.ipsec6.esp_net_deflev = 1
net.inet6.ipsec6.ah_trans_deflev = 1
net.inet6.ipsec6.ah_net_deflev = 1
net.inet6.ipsec6.ecn = 0
net.inet6.ipsec6.debug = 0
sysctl: net.inet6.icmp6.stats: use 'netstat' to view this information
net.inet6.icmp6.rediraccept = 1
net.inet6.icmp6.redirtimeout = 600
net.inet6.icmp6.nd6_prune = 1
net.inet6.icmp6.nd6_delay = 5
net.inet6.icmp6.nd6_umaxtries = 3
net.inet6.icmp6.nd6_mmaxtries = 3
net.inet6.icmp6.nd6_useloopback = 1
net.inet6.icmp6.nodeinfo = 1
net.inet6.icmp6.errppslimit = 100
net.inet6.icmp6.nd6_maxnudhint = 0
net.inet6.icmp6.mtudisc_hiwat = 1280
net.inet6.icmp6.mtudisc_lowat = 256
net.inet6.icmp6.nd6_debug = 0
sysctl: net.inet6.icmp6.nd6_drlist: use 'ndp' to view this information
sysctl: net.inet6.icmp6.nd6_prlist: use 'ndp' to view this information
net.inet6.icmp6.maxqueuelen = 1
sysctl: net.inet6.pim6.stats: use 'netstat' to view this information
sysctl: net.inet6.raw6.stats: use 'netstat' to view this information
sysctl: net.inet6.raw6.pcblist: use 'netstat' or 'sockstat' to view this information
net.key.debug = 0
net.key.spi_try = 1000
net.key.spi_min_value = 256
net.key.spi_max_value = 268435455
net.key.larval_lifetime = 30
net.key.blockacq_count = 10
net.key.blockacq_lifetime = 20
net.key.esp_keymin = 256
net.key.esp_auth = 0
net.key.ah_keymin = 128
sysctl: net.key.dumpsa: use 'setkey' to view this information
sysctl: net.key.dumpsp: use 'setkey' to view this information
net.bluetooth.hci.sendspace = 259
net.bluetooth.hci.recvspace = 4096
net.bluetooth.hci.acl_expiry = 10
net.bluetooth.hci.memo_expiry = 600
net.bluetooth.hci.eventq_max = 20
net.bluetooth.hci.aclrxq_max = 50
net.bluetooth.hci.scorxq_max = 50
net.bluetooth.l2cap.sendspace = 4096
net.bluetooth.l2cap.recvspace = 4096
net.bluetooth.l2cap.rtx = 30
net.bluetooth.l2cap.ertx = 180
net.bluetooth.rfcomm.sendspace = 4096
net.bluetooth.rfcomm.recvspace = 4096
net.bluetooth.rfcomm.mtu_default = 127
net.bluetooth.rfcomm.ack_timeout = 20
net.bluetooth.rfcomm.mcc_timeout = 20
net.bluetooth.sco.sendspace = 4096
net.bluetooth.sco.recvspace = 4096
net.bpf.maxbufsize = 1048576
sysctl: net.bpf.stats: use 'netstat' to view this information
sysctl: net.bpf.peers: use 'netstat' to view this information
sysctl: debug: missing 'options DEBUG' from kernel?
hw.machine = i386
hw.model = Intel (686-class)
hw.ncpu = 4
hw.byteorder = 1234
hw.physmem = 1073213440
hw.usermem = 1068531712
hw.pagesize = 4096
hw.disknames = ld0 md0 cd0
sysctl: hw.iostats: the value is not available
hw.machine_arch = i386
hw.alignbytes = 3
hw.cnmagic = \x27\x02
hw.physmem64 = 1073213440
hw.usermem64 = 1068531712
hw.iostatnames = ld0 md0 cd0
hw.wi: no children
hw.ath.dwell = 200
hw.ath.calibrate = 30
hw.ath.outdoor = 1
hw.ath.countrycode = 0
hw.ath.regdomain = 0
hw.ath.debug = 0
hw.ath.rxbuf = 40
hw.ath.txbuf = 100
hw.ath.hal.version = 0.9.17.2
hw.ath.hal.dma_brt = 2
hw.ath.hal.sw_brt = 10
hw.ath.hal.swba_backoff = 0
hw.firmware.path = /libdata/firmware:/usr/libdata/firmware:/usr/pkg/libdata/firmware:/usr/pkg/libdata
hw.bge.rx_lvl = 0
hw.sk: no children
hw.msk: no children
hw.fwohci.nocyclemaster = 0
hw.ieee1394if.try_bmr = 1
hw.ieee1394if.hold_count = 3
hw.ieee1394if.ieee1394_debug = 0
hw.fwmem.eui64_hi = 0
hw.fwmem.eui64_lo = 0
hw.fwmem.speed = 2
hw.fwmem.fwmem_debug = 0
hw.fwip.rx_queue_len = 256
hw.fwip.if_fwip_debug = 0
hw.sbp.auto_login = 1
hw.sbp.max_speed = -1
hw.sbp.exclusive_login = 1
hw.sbp.login_delay = 1000
hw.sbp.scan_delay = 500
hw.sbp.use_doorbell = 0
hw.sbp.tags = 0
hw.sbp.sbp_debug = 0
hw.acpi.root = 1017088
sysctl: machdep.console_device: this type is unknown to this program
machdep.biosbasemem = 636
machdep.biosextmem = 1047488
machdep.nkpde = 119
machdep.booted_kernel = netbsd
machdep.diskinfo: 80:143556840(1024/255/63),2 ld0:80
machdep.fpu_present = 1
machdep.osfxsr = 1
machdep.sse = 1
machdep.sse2 = 1
sysctl: machdep.tm_longrun_mode: the value is not available
sysctl: machdep.tm_longrun_frequency: the value is not available
sysctl: machdep.tm_longrun_voltage: the value is not available
sysctl: machdep.tm_longrun_percentage: the value is not available
machdep.cpu_brand = Intel(R) Xeon(TM) CPU 3.00GHz
machdep.sleep_state = 0
machdep.acpi_vbios_reset = 1
user.cs_path = /usr/bin:/bin:/usr/sbin:/sbin:/usr/pkg/bin:/usr/pkg/sbin:/usr/local/bin:/usr/local/sbin
user.bc_base_max = 2147483647
user.bc_dim_max = 65535
user.bc_scale_max = 2147483647
user.bc_string_max = 2147483647
user.coll_weights_max = 2
user.expr_nest_max = 32
user.line_max = 2048
user.re_dup_max = 255
user.posix2_version = 199212
user.posix2_c_bind = 0
user.posix2_c_dev = 0
user.posix2_char_term = 0
user.posix2_fort_dev = 0
user.posix2_fort_run = 0
user.posix2_localedef = 0
user.posix2_sw_dev = 0
user.posix2_upe = 0
user.stream_max = 20
user.tzname_max = 255
user.atexit_max = -1
ddb.radix = 16
ddb.maxoff = 1048576
ddb.maxwidth = 80
ddb.lines = 24
ddb.tabstops = 8
ddb.onpanic = 1
ddb.fromconsole = 1
ddb.tee_msgbuf = 0
ddb.commandonenter =
proc.curproc.corename = %n.core
proc.curproc.rlimit.cputime.soft = unlimited
proc.curproc.rlimit.cputime.hard = unlimited
proc.curproc.rlimit.filesize.soft = unlimited
proc.curproc.rlimit.filesize.hard = unlimited
proc.curproc.rlimit.datasize.soft = 268435456
proc.curproc.rlimit.datasize.hard = 3221225472
proc.curproc.rlimit.stacksize.soft = 2097152
proc.curproc.rlimit.stacksize.hard = 67108864
proc.curproc.rlimit.coredumpsize.soft = unlimited
proc.curproc.rlimit.coredumpsize.hard = unlimited
proc.curproc.rlimit.memoryuse.soft = 1042272256
proc.curproc.rlimit.memoryuse.hard = 1042272256
proc.curproc.rlimit.memorylocked.soft = 347424085
proc.curproc.rlimit.memorylocked.hard = 1042272256
proc.curproc.rlimit.maxproc.soft = 160
proc.curproc.rlimit.maxproc.hard = 532
proc.curproc.rlimit.descriptors.soft = 128
proc.curproc.rlimit.descriptors.hard = 1772
proc.curproc.rlimit.sbsize.soft = unlimited
proc.curproc.rlimit.sbsize.hard = unlimited
proc.curproc.stopfork = 0
proc.curproc.stopexec = 0
proc.curproc.stopexit = 0
sysctl: vendor: no vendor extensions installed
emul.linux.kern.ostype = Linux
emul.linux.kern.osrelease = 2.4.18
emul.linux.kern.osversion = #0 Wed Feb 20 20:00:02 CET 2002
security.curtain = 0
security.models.bsd44.name = Traditional NetBSD (4.4BSD)
security.models.bsd44.securelevel = 1
security.models.bsd44.curtain = 0
security.pax.mprotect.enabled = 1
security.pax.mprotect.global = 0
init.root = /

Loading...