Skip to content

Instantly share code, notes, and snippets.

@jonlabelle
Last active January 26, 2023 07:14
Show Gist options
  • Save jonlabelle/fb2fdb003602a4deda525973ec91d3b7 to your computer and use it in GitHub Desktop.
Save jonlabelle/fb2fdb003602a4deda525973ec91d3b7 to your computer and use it in GitHub Desktop.
Disable macOS Firewall Logging
title date author source
Disable macOS Firewall Logging
April 9, 2017
Jon LaBelle

Steps for disabling macOS Firewall logging to the appfirewall.log file.

NOTE: Only disables logging, not the Firewall itself.

Steps

  1. Convert the current com.apple.alf.plist plist binary file into XML text.
sudo plutil -convert xml1 /Library/Preferences/com.apple.alf.plist
  1. Open the converted com.apple.alf.plist XML file in vim.
sudo vim /Library/Preferences/com.apple.alf.plist
  • Search for the key loggingenabled:
    Esc /loggingenabled Enter
  • Change the integer value to 0 (zero) to disable logging
  • Save the the changes and quit vim:
    :wq
  1. Convert the com.apple.alf.plist plist file back into binary format.
sudo plutil -convert binary1 /Library/Preferences/com.apple.alf.plist

Verification

To verify that Firewall logging is now disabled...

  • Apple-menu -> About This Mac -> System Reports...
  • Network
    • Firewall
      • Logging: No

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment