|
||||||||||
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Ron Rosson escribió: > I am looking for a syslog setup for m0n0wall to log to on a FreeBSD > server where the mesages for monowall have thier own log files and where > the firewall logs have there own as well. I would also like to be able > to get information from the firewall logs as well. > > Has any one been able to accomplish and can provide some pointers. > howtos, etc > > TIA > > -Ron > > -- > Ron Rosson > oneinsanedotnet at gmail dot com > http://www.oneinsane.net > > --------------------------------------------------------------------- > To unsubscribe, e-mail: m0n0wall dash unsubscribe at lists dot m0n0 dot ch > For additional commands, e-mail: m0n0wall dash help at lists dot m0n0 dot ch > > I assume that you have installed and run the daemon syslog-ng on your FreeBSD and you have configurate the syslog client in you monowall (Diagnostics --> Logs --> Settings) with your "Remote syslog server" IP and the parameters that you want log. This are my configuration in a linux box: /etc/syslog-ng/syslog-ng.conf source src { ... # This open port for listen anybody, you have to sure that the firewall # don't block this port (514 UDP) udp(ip("0.0.0.0") port(514)); }; # the IP "192.168.8.2" is from monowall box filter f_monowall_laguito { host("192.168.8.2"); }; # I have a file that receive all messages that came of # monowall (/var/log/monowall) destination monowall { file("/var/log/monowall" owner(root) group(root)); }; log { source(src); filter(f_monowall_laguito); destination(monowall); }; - ---- Jorge Ramos SuSE, Debian GNU/Linux - FreeBSD Support & Consultor System Administrator Cartagena, Colombia -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFOVP9uANXBjz2ICERAk6EAJ0WDwdxKwM0WHt7uED9ryyB47chZgCg3Lty 1HPjy8eGCzuXTSWw1qnlSEw= =vqyn -----END PGP SIGNATURE----- |