URL: https://www.opennet.me/cgi-bin/openforum/vsluhboard.cgi
Форум: vsluhforumID1
Нить номер: 51041
[ Назад ]

Исходное сообщение
"Запуск ipfw2"

Отправлено Гость , 29-Ноя-04 13:03 
Добрый день!
FreeBSD 5.3,
по dmesg:
>ipfw2 initialized, divert disabled, rule-based forwarding disabled, default to accept, logging disabled

Где прописать "rule-based forwarding enable"? Благодарю.


Содержание

Сообщения в этом обсуждении
"Запуск ipfw2"
Отправлено valex , 29-Ноя-04 14:19 
>Добрый день!
>FreeBSD 5.3,
>по dmesg:
> >ipfw2 initialized, divert disabled, rule-based forwarding disabled, default to accept, logging disabled
>
>Где прописать "rule-based forwarding enable"? Благодарю.

Может и глупо спрашивать, но ядро перекомпилячено с такими опциями:

options IPFIREWALL
options IPDIVERT



"Запуск ipfw2"
Отправлено valex , 29-Ноя-04 14:44 
>Добрый день!
>FreeBSD 5.3,
>по dmesg:
> >ipfw2 initialized, divert disabled, rule-based forwarding disabled, default to accept, logging disabled
>
>Где прописать "rule-based forwarding enable"? Благодарю.


IPFW is included in the basic FreeBSD install as a separate run time loadable module. IPFW will dynamically load the kernel module when the rc.conf statement firewall_enable="YES" is used. You do not need to compile IPFW into the FreeBSD kernel unless you want NAT function enabled.

After rebooting your system with firewall_enable="YES" in rc.conf the following white highlighted message is displayed on the screen as part of the boot process:

IP packet filtering initialized, divert disabled, rule-based forwarding
enabled, default to deny, logging disabled

You can disregard this message as it is out dated and no longer is the true status of the IPFW loadable module. The loadable module really does have logging ability compiled in.

To set the verbose logging limit, There is a knob you can set in /etc/sysctl.conf by adding this statement, logging will be enabled on future reboots.

net.inet.ip.fw.verbose_limit=5

То есть IPFW работает, это устаревшее сообщение. (см. англ. Handbook --
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/fi...)


"Запуск ipfw2"
Отправлено gst , 29-Ноя-04 15:01 
Благодарю за помощь!