Bug 256646

Summary: Network does not go up automaticly, after waking up from suspend to disk.
Product: [openSUSE] openSUSE 10.2 Reporter: Robby Verberne <monkey9>
Component: NetworkAssignee: Tambet Ingo <tambet>
Status: RESOLVED FIXED QA Contact: E-mail List <qa-bugs>
Severity: Normal    
Priority: P5 - None CC: s.illes79
Version: Final   
Target Milestone: ---   
Hardware: 64bit   
OS: Other   
Whiteboard:
Found By: Beta-Customer Services Priority:
Business Priority: Blocker: ---
Marketing QA Status: --- IT Deployment: ---
Attachments: networkmngr.log
messages.log

Description Robby Verberne 2007-03-22 11:08:57 UTC
This happens standard.
Manualy it can get aktivated without any problems.
AJ told me it has to come up automaticly, so it is a bug.
Tell me what logs or info you need from me.
Comment 1 Matej Horvath 2007-03-22 18:31:14 UTC
Please attach /var/log/NetworkManager, /var/log/messages and post output of 'nm-tool'. Is it a wireless or wired network?
Comment 3 Robby Verberne 2007-03-22 18:56:22 UTC
nm-tool is unknown to bash..
Network is wired/wireless/dhcp/fixed ip-adresses.
The PC where I noticed this is AMD64, wired.
Comment 4 Robby Verberne 2007-03-22 18:57:54 UTC
Created attachment 126025 [details]
networkmngr.log
Comment 5 Robby Verberne 2007-03-22 18:58:50 UTC
Created attachment 126026 [details]
messages.log
Comment 7 Szabolcs Illes 2007-05-17 08:19:19 UTC
I have the same problem however some additional comments:

On a Acer Travelmate 2403, with bcm43xx module, SUSPEND2DISK_RESTART_SERVICES = network, helped, and nm reconnects after resume.

On a Dell Inspiron 8600c, with ipw2200, the same trick did not work, however using UNLOAD_MODULES_BEFORE_SUSPEND2DISK = ipw2200 , works.

On both laptops traditional if-up method works fine, and reconnects to the same AP without any tricks.

manually executing "/etc/pm/hooks/10NetworkManager resume" has no effect
Comment 8 Szabolcs Illes 2007-07-30 10:13:59 UTC
I have a workaround, just create a script at /etc/pm/hooks/02network which restarts the network, something like this:

cat at /etc/pm/hooks/02network

#!/bin/sh

. /etc/pm/functions

resume_n() {

    /etc/init.d/network restart
    return $?
}

case "$1" in
        thaw|resume)
                resume_nm
                ;;
        *)
                ;;
esac

exit $?
Comment 9 Robby Verberne 2007-09-26 09:26:44 UTC
If nobody makes an objection, i want to close this bug.
In the RC1+ 10.3 these things work just fine.