I'm trying to log messages from my router, it can send messages to syslog.
However I can't find anywhere any documentation on what 'selectors' should look like in /etc/rsyslog.conf, let alone how I would select messages from my router.
Can anyone point me at anything useful please.
On 23 Apr 2008, at 20:22, Chris G wrote:
I'm trying to log messages from my router, it can send messages to syslog.
However I can't find anywhere any documentation on what 'selectors' should look like in /etc/rsyslog.conf, let alone how I would select messages from my router.
Can anyone point me at anything useful please.
www.google.co.uk
On Wed, Apr 23, 2008 at 08:40:21PM +0100, David Reynolds wrote:
On 23 Apr 2008, at 20:22, Chris G wrote:
I'm trying to log messages from my router, it can send messages to syslog.
However I can't find anywhere any documentation on what 'selectors' should look like in /etc/rsyslog.conf, let alone how I would select messages from my router.
Can anyone point me at anything useful please.
www.google.co.uk
:-)
Funnily enough I had tried a Google search before asking here and searching for "rsyslog selectors" only brought up repeats of the rsyslog man page which is where I started.
On 23/04/2008, Chris G cl@isbd.net wrote:
On Wed, Apr 23, 2008 at 08:40:21PM +0100, David Reynolds wrote:
On 23 Apr 2008, at 20:22, Chris G wrote:
I'm trying to log messages from my router, it can send messages to syslog.
However I can't find anywhere any documentation on what 'selectors' should look like in /etc/rsyslog.conf, let alone how I would select messages from my router.
Can anyone point me at anything useful please.
www.google.co.uk
:-)
Funnily enough I had tried a Google search before asking here and searching for "rsyslog selectors" only brought up repeats of the rsyslog man page which is where I started.
A quick Google led me to this rsyslogd FAQ:
http://www.rsyslog.com/Article60.phtml
which might be of use ...
Peter.
On Wed, Apr 23, 2008 at 09:03:36PM +0100, samwise wrote:
On 23/04/2008, Chris G cl@isbd.net wrote:
On Wed, Apr 23, 2008 at 08:40:21PM +0100, David Reynolds wrote:
On 23 Apr 2008, at 20:22, Chris G wrote:
I'm trying to log messages from my router, it can send messages to syslog.
However I can't find anywhere any documentation on what 'selectors' should look like in /etc/rsyslog.conf, let alone how I would select messages from my router.
Can anyone point me at anything useful please.
www.google.co.uk
:-)
Funnily enough I had tried a Google search before asking here and searching for "rsyslog selectors" only brought up repeats of the rsyslog man page which is where I started.
A quick Google led me to this rsyslogd FAQ:
http://www.rsyslog.com/Article60.phtml
which might be of use ...
Yes, thank you, actually the wiki got my router logging working.
I have as notes....
To Add a listener socket vi /etc/sysconfig/syslog change SYSLOGD_OPTIONS="-m 0" SYSLOGD_OPTIONS="-r -m 0"
HTH Keith ( AKA google :)
On Wed, Apr 23, 2008 at 09:04:36PM +0100, keith.jamieson@bt.com wrote:
I have as notes....
To Add a listener socket vi /etc/sysconfig/syslog change SYSLOGD_OPTIONS="-m 0" SYSLOGD_OPTIONS="-r -m 0"
Yes, that's what I needed, rsyslogd doesn't by default listen to remote logging devices. Thanks.