Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[FreeBSD-users-jp 63899] Limiting open port ?

565 views
Skip to first unread message

Toshio Adachi

unread,
Aug 29, 2001, 7:33:10 AM8/29/01
to
安達@どーがです。

FreeBSD 4.3-RELEASE をサーバーとして使っているのですが
最近下記のようなエラーが頻繁に出ていて意味がわからなくて不安になってます。


Limiting open port RST response from 202 to 200 packets per second
Limiting open port RST response from 201 to 200 packets per second
Limiting open port RST response from 201 to 200 packets per second
Limiting open port RST response from 201 to 200 packets per second
Limiting open port RST response from 201 to 200 packets per second
Limiting open port RST response from 201 to 200 packets per second
Limiting open port RST response from 201 to 200 packets per second
Limiting open port RST response from 201 to 200 packets per second
Limiting open port RST response from 202 to 200 packets per second

このエラーどういう意味なのでしょうか?

Akihiro IIJIMA

unread,
Aug 29, 2001, 7:35:31 AM8/29/01
to
> 最近下記のようなエラーが頻繁に出ていて意味がわからなくて不安になってます。
> Limiting open port RST response from 202 to 200 packets per second

/usr/src/sys で grep "Limiting open port RST" */* すると
netinet/ip_icmp.c: "Limiting open port RST response"
てのが見つかります。

badport_bandlim()という関数の中で
const char *bandlimittype[] = {
"Limiting icmp unreach response",
"Limiting icmp ping response",
"Limiting icmp tstamp response",
"Limiting closed port RST response",


"Limiting open port RST response"

};
という変数に代入されていて
if ((unsigned int)dticks > hz) {
if (lpackets[which] > icmplim) {
printf("%s from %d to %d packets per second\n",
bandlimittype[which],
lpackets[which],
icmplim
);
で表示されてます。

***

検索ページで Limiting で検索すると
Subject: [FreeBSD-users-jp 54791] Re: About icmp-response bandwidth
limit 124/100 pps
http://home.jp.FreeBSD.ORG/cgi-bin/showmail/FreeBSD-users-jp/54791
てのが見つかります。

それのスレッドを読んでみるとよいでしょう。
http://home.jp.FreeBSD.ORG/cgi-bin/thread?mesid=%3c200009020100%2ee8210Hl06503%40muse%2ehans%2eor%2ejp%3e

--
飯島 昭博 (Akihiro Iijima) a...@DEBUG.gr.jp

0 new messages