Where do the boot time messages go?

2014-05-11 Thread Ronald F. Guilmette
In my /etc/rc.conf file, I have the following (among other things): firewall_enable="YES" firewall_type="/etc/fw.rules" firewall_logging="YES" And of course, on my system, the /etc/fw.rules file is full of ipfw "add" commands. During a normal boot of FreeBSD, I can see those add commands being

Re: Where do the boot time messages go?

2014-05-11 Thread Chris H
> > > In my /etc/rc.conf file, I have the following (among other things): > > firewall_enable="YES" > firewall_type="/etc/fw.rules" > firewall_logging="YES" > > And of course, on my system, the /etc/fw.rules file is full of ipfw > "add" commands. > > During a normal boot of FreeBSD, I can see those

Re: Where do the boot time messages go?

2014-05-11 Thread Ian Smith
On Sun, 11 May 2014 21:44:26 -0700, Chris H wrote: [Ronald F. Guilmette wrote:] > > In my /etc/rc.conf file, I have the following (among other things): > > > > firewall_enable="YES" > > firewall_type="/etc/fw.rules" > > firewall_logging="YES" > > > > And of course, on my system, the /etc/fw

Re: Where do the boot time messages go?

2014-05-11 Thread Bill Yuan
1.The userland command "ipfw" will print the result directly on the stdout. it is using printf() method. 2.The "firewall_logging" is for ipfw kernel module, and depends on the net.inet.ip.fw.verbose_limit and it will be logged in the syslog. On Mon, May 12, 2014 at 2:08 PM, Ian Smith wrote: > O