57

I have an Ubuntu server where I am blocking some IPs with ufw. I enabled logging, but I don't know where to find the logs. Where might the logs be or why might ufw not be logging?

Wesley
  • 32,320
  • 9
  • 80
  • 116
blockhead
  • 831
  • 1
  • 8
  • 13
  • Google is your friend http://askubuntu.com/questions/113439/ufw-is-not-logging-how-do-i-troubleshoot – user9517 Jun 19 '13 at 05:49

2 Answers2

66

Perform sudo ufw status verbose to see if you're even logging in the first place. If you're not, perform sudo ufw logging on if it isn't. If it is logging, check /var/log/ for files starting with ufw. For example, sudo ls /var/log/ufw*

If you are logging, but there are no /var/log/ufw* files, check to see if rsyslog is running: sudo service rsyslog status. If rsyslog is running, ufw is logging, and there are still no logs files, search through common log files for any mention of UFW. For example: grep -i ufw /var/log/syslog and grep -i ufw /var/log/messages as well as grep -i ufw /var/log/kern.log.

If you find a ton of ufw messages in the syslog, messages, and kern.log file, then rsyslog might need to be told to log all UFW messages to a separate file. Add a line to the top of /etc/rsyslog.d/50-default.conf that says the following two lines:

:msg, contains, “UFW” -/var/log/ufw.log
& ~

And you should then have a ufw.log file that contains all ufw messages!

NOTE:

Check the 50-default.conf file for pre-existing configurations.

Make sure to backup the file before saving edits!

Wesley
  • 32,320
  • 9
  • 80
  • 116
  • It looks like the `ufw status` (and `ufw status verbose`) commands return if the _firewall its self_ is running, not logging. If the command comes back as inactive, then I believe that means that ufw is totally disabled (which it is on my system). I'm curious now what firewall _is_ running! Edit: According to the [Ubuntu Server guide](https://help.ubuntu.com/lts/serverguide/firewall.html), there is no firewall enabled by default - iptables is essentially the firewall. You can follow the linked guide to get ufw running. – gcode Feb 27 '20 at 23:03
  • 1
    Maybe update your answer that these days there is /etc/rsyslog.d/20-ufw.conf with the correct config. – Carlo Wood Apr 12 '20 at 11:17
  • The output of `sudo ufw status verbose` is "Logging: on (low)". I have no logs. How can I set it to as high as possible? – Carlo Wood Apr 12 '20 at 11:18
8

You can also find UFW's logs in the kernel buffer.

sudo dmesg | grep '\[UFW'
Mahmoud
  • 181
  • 1
  • 3