Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wdutil(8) [mojave man page]

wdutil(8)						    BSD System Manager's Manual 						 wdutil(8)

NAME
wdutil -- Wireless Diagnostics command line utility. SYNOPSIS
wdutil [command] DESCRIPTION
wdutil provides functionality of the Wireless Diagnostics application in command line form. COMMANDS
The following commands are available: diagnose [-f outputDirectoryPath] Equivalent to running the Wireless Diagnostics application, without UI. The default outputDirectoryPath is /var/tmp. Requires sudo. info Displays all of the content included in the Wi-Fi Info utility view. log [{+|-} {dhcp|od|dns|eapol|wifi}]+ Enables or disables logging for DHCP, OpenDirectory, DNS, EAPOL, and Wi-Fi Requires sudo. dump Dumps the temporary Wi-Fi log buffer to /tmp/wifi-XXXXXX.log EXAMPLES
Run all diagnostic tests: sudo wdutil diagnose Gather information about the current wireless environment: wdutil info Enable DHCP and OpenDirectory logging: sudo wdutil log +dhcp +od Disable EAPOL logging: sudo wdutil log -eapol AUTHOR
This program and document are maintained by Apple Inc. <wifi-diags@group.apple.com>. HISTORY
The wdutil command first appeared in Mac OS X Version 10.9. BSD
June 1, 2019 BSD

Check Out this Related Man Page

heimdal_debug(5)					      BSD File Formats Manual						  heimdal_debug(5)

NAME
heimdal_debug -- how to turn on/off debugging for Kerberos tools DESCRIPTION
The heimdal_debug kerberos frameworks have several knobs for controlling logging. The different framework knobs are: libkrb The Kerberos library, some gss-api Kerberos output ends up here too kcm the kcm library (credentials cache, ntlm client) kdc the kerberos KDC output digest-service the digest service (ntlm server) CONFIGURATION FILE
[logging] <subsystem> = 0-/SYSLOG: and watch syslog for logging information. APPLE MAC OS X
First turn up syslog debugging sudo syslog -c 0 -d then you can see the syslog output in Console.app or by running syslog -w -k org.h5l.asl To enable more extensive debugging logging for each subsystem, use the following commands: Kerberos Library sudo defaults write /Library/Preferences/com.apple.Kerberos logging -dict-add krb5 '0-/OSLOG:normal:' digest-server sudo defaults write /Library/Preferences/com.apple.Kerberos logging -dict-add digest-service '0-/OSLOG:normal:' kcm sudo defaults write /Library/Preferences/com.apple.Kerberos logging -dict-add kcm '0-/OSLOG:normal:' kdc sudo defaults write /Library/Preferences/com.apple.Kerberos logging -dict-add kdc '0-/OSLOG:normal:' MIT Kerberos Shim defaults write com.apple.MITKerberosShim EnableDebugging -bool true GSS-API framework logging sudo defaults write /Library/Preferences/com.apple.GSS DebugLevel -int 10 Other options on Mac OS X Make the admin API pretend to the server even on client sudo defaults write /Library/Preferences/com.apple.Kerberos ForceHeimODServerMode -bool true SEE ALSO
gss(5), kerberos(8) HEIMDAL
Sep 30, 2011 HEIMDAL
Man Page