Logging with DD-WRT

From DD-WRT Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 11:24, 23 December 2008 (edit)
Link Logger (Talk | contribs)
(Recommended tools)
← Previous diff
Revision as of 05:53, 11 April 2009 (edit) (undo)
Soulstace (Talk | contribs)
m (Saving logfile across reboots)
Next diff →
Line 43: Line 43:
As noted in the Setup section, the logfile in '''micro''' currently does not show any firewall events, unfortunately. As noted in the Setup section, the logfile in '''micro''' currently does not show any firewall events, unfortunately.
 +
 +==Saving the logfile across reboots==
 +Just an idea, but if you have some external storage such as a USB hard drive or SD/MMC card, you can probably write a [[CRON]] and/or shutdown script to copy the logfile there.
==See Also== ==See Also==

Revision as of 05:53, 11 April 2009

Contents

Overview

DD-WRT uses the syslog and klog daemons to log system, kernel, and firewall events. This can be useful for troubleshooting purposes, or just to keep an eye on how your router/network is behaving.

Setup

Logging is probably disabled by default. To enable it:

  1. Enable Syslogd under the Services tab.
    • If you wish to send logs to a remote system, enter the IP address of that machine which is also running a syslog utility (it needs an open network socket in order to accept logs being sent by the router).
  2. To log firewall events, go to the Security tab and enable the appropriate options under Log Management. (Note: this doesn't function in micro)

That's all there is to it. DD-WRT should now be logging...either locally to /tmp/var/log/messages, or remotely to the IP address you specified earlier.

Recommended tools

Here are some utilities you may wish to check out if you're logging remotely:

WallWatcher
syslog-ng (CYGWIN)
Kiwi Syslog
Link Logger

Linux already has syslogd built in.

Displaying logs in your web browser

create a symbolic link in /tmp/www

ln -s /tmp/var/log/messages /tmp/www/log.html

now go to: http://192.168.1.1/user/log.html

(credits to kuthulu for that tip)

micro versions

Micro versions have a stripped down version of BusyBox, so it might not include the ln command used above. In that case, you can use a different method to view the logs from within your browser, shown below.

Issue the following command from the Web Interface -> Commands section (or via Telnet):

cat /tmp/var/log/messages

As noted in the Setup section, the logfile in micro currently does not show any firewall events, unfortunately.

Saving the logfile across reboots

Just an idea, but if you have some external storage such as a USB hard drive or SD/MMC card, you can probably write a CRON and/or shutdown script to copy the logfile there.

See Also

dmesg command