From Fedora Project Wiki

No edit summary
Line 1: Line 1:
= Configure for basic debug =
= Configure to debug kernel and wpa_supplicant =
Log messages in one place, this will help to figure out what is going on when failure occurs.
Sometimes is needed to have kernel debug messages together with wpa_supplicant logged
in one place. Below changes allow to do this.
* Edit /etc/sysconfig/wpa_supplicant file to log into /var/log/messages
* Edit /etc/sysconfig/wpa_supplicant file to log into /var/log/messages
<pre>
<pre>

Revision as of 13:07, 24 January 2011

Configure to debug kernel and wpa_supplicant

Sometimes is needed to have kernel debug messages together with wpa_supplicant logged in one place. Below changes allow to do this.

  • Edit /etc/sysconfig/wpa_supplicant file to log into /var/log/messages
OTHER_ARGS="-u -f /var/log/messages -P /var/run/wpa_supplicant.pid"
  • Edit /etc/rsyslog.conf file to log all kernel messages into /var/log/messages
kern.*;*.info;mail.none;authpriv.none;cron.none                /var/log/messages
  • Restart services
/etc/init.d/wpa_supplicant restart
/etc/init.d/rsyslog restart

Configure for verbose debug

Also requires settings from above.

  • Edit /etc/sysconfig/wpa_supplicant file to enable verbose debug
 
OTHER_ARGS="-u -f /var/log/messages -dd -P /var/run/wpa_supplicant.pid"
  • Edit /etc/init.d/NetworkManager file to enable verbose debug
daemon --pidfile $pidfile --check $servicename $processname --pid-file=$pidfile --log-level=DEBUG
  • Restart services
/etc/init.d/NetworkManager restart
/etc/init.d/wpa_supplicant restart