(In reply to Frans Leerink from comment #8) > Hello Pawel, Hi Frank, > > I am just back from vacation, so sorry for late reaction. > No worries :-). > Just a few questions to clarify what you need and how to get the logs. > > 1 Should I do these steps with "Wicked" reconfigured, since I currently run > networkmanager successfully? > First of all disable and kill NetworkManager properly. Description how to do that can be found here: https://bugzilla.suse.com/show_bug.cgi?id=893678#c17 > 2 How should I get the logs? Should I run on the command line just the > various > commands in the given sequence. Should I run the commands as user or as > root? > Here's more detailed description: ��� set DEBUG=all in /etc/sysconfig/network/config edit /etc/sysconfig/network/config file and tweak the requested DEBUG variable. - enable wpa_supplicant in the debugging mode Easiest is to edit the wpa_supplicant.service file and restart it by: * Apply the following diff (note it is just an additional -d option on the wpa_supplicant parm list) diff --git a/usr/lib/systemd/system/wpa_supplicant.service b/usr/lib/systemd/system/wpa_supplicant.service.old index c764a53..7f475cf 100644 --- a/usr/lib/systemd/system/wpa_supplicant.service +++ b/usr/lib/systemd/system/wpa_supplicant.service.old @@ -5,7 +5,7 @@ Before=network.target [Service] Type=dbus BusName=fi.w1.wpa_supplicant1 -ExecStart=/usr/sbin/wpa_supplicant -d -c /etc/wpa_supplicant/wpa_supplicant.conf -u -f /var/log/wpa_supplicant.log +ExecStart=/usr/sbin/wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -u -f /var/log/wpa_supplicant.log [Install] WantedBy=multi-user.target * execute as root on terminal: systemctl daemon-reload * execute as root on terminal: systemctl restart wpa_supplicant All the following commands should be manually executed as root on the terminal: ��� systemctl restart wickedd ��� wicked --debug all ifup all # systemctl restart wicked ��� wicked ifstatus all > status.log ��� wicked show-config > configs.log ��� journalctl -b -o short-iso > wicked.log ��� ip addr show > ip_addr.log ��� ip route show > routes.log ��� ip -6 route show >> routes.log Provide also log file from wpa_supplicant: /var/log/wpa_supplicant.log > Regards, Frans