<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: How do I stay connected to my LAN when logged off?</title>
	<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off/</link>
	<description>Comments on Ask MetaFilter post How do I stay connected to my LAN when logged off?</description>
	<pubDate>Sun, 05 Oct 2008 15:14:50 -0800</pubDate>
	<lastBuildDate>Sun, 05 Oct 2008 15:14:50 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How do I stay connected to my LAN when logged off?</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off</link>	
		<description>Why is Windows SP3 disconnecting me from the LAN whenever I log off...and how do I make it stop that? &lt;br /&gt;&lt;br /&gt; Before I updated to SP3, this never happened. Now, whenever I log off (using the Windows+L shortcut), my LAN disconnects. I want to stay connected so programs like Pidgin can run while I am away, and I don&apos;t have to wait to reconnect when I come back.&lt;br&gt;
&lt;br&gt;
It&apos;s Windows XP Pro SP3.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2008:site.103474</guid>
		<pubDate>Sun, 05 Oct 2008 14:24:47 -0800</pubDate>
		<dc:creator>jesirose</dc:creator>
		
			<category>windows</category>
		
			<category>sp3</category>
		
			<category>lan</category>
		
	</item> <item>
		<title>By: blind.wombat</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1498645</link>	
		<description>Wired or wireless lan?&lt;br&gt;
&lt;br&gt;
Have you run windows update since installing SP3?&lt;br&gt;
&lt;br&gt;
Also note that the default behavior of Win+L is to lock the computer, not log you off.  Did you change this? (need to know if you are actually being logged off)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1498645</guid>
		<pubDate>Sun, 05 Oct 2008 15:14:50 -0800</pubDate>
		<dc:creator>blind.wombat</dc:creator>
	</item><item>
		<title>By: jesirose</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1498676</link>	
		<description>Wired&lt;br&gt;
Yes&lt;br&gt;
You are correct, it is lock, not log off.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1498676</guid>
		<pubDate>Sun, 05 Oct 2008 15:43:13 -0800</pubDate>
		<dc:creator>jesirose</dc:creator>
	</item><item>
		<title>By: flabdablet</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1498740</link>	
		<description>I&apos;m trying to figure out exactly what it is that you lose connectivity to when you lock your computer.&lt;br&gt;
&lt;br&gt;
Try opening a cmd window and entering the following command:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;route print&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
One of the items listed will be the IP address of your default gateway, which will generally be the router on your LAN.  The following commands will assume that this address is 192.168.1.254, so you&apos;ll need to replace that with whatever &lt;code&gt;route print&lt;/code&gt; shows as your default gateway.&lt;br&gt;
&lt;br&gt;
Ping the router:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;ping 192.168.1.254&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
You should see a result that looks like this:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;Pinging 192.168.1.254 with 32 bytes of data:&lt;br&gt;
&lt;br&gt;
Reply from 192.168.1.254: bytes=32 time&amp;lt;1ms TTL=128&lt;br&gt;
Reply from 192.168.1.254: bytes=32 time&amp;lt;1ms TTL=128&lt;br&gt;
Reply from 192.168.1.254: bytes=32 time&amp;lt;1ms TTL=128&lt;br&gt;
Reply from 192.168.1.254: bytes=32 time&amp;lt;1ms TTL=128&lt;br&gt;
&lt;br&gt;
Ping statistics for 192.168.1.254:&lt;br&gt;
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),&lt;br&gt;
Approximate round trip times in milli-seconds:&lt;br&gt;
    Minimum = 0ms, Maximum = 0ms, Average = 0ms&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
Next, ping it with a count of 30 instead of the default count of 4, and while it&apos;s pinging, hit Windows-L to lock your session:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;ping -n 30 192.168.1.254&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
After unlocking the session, check the results in the cmd window.  If you see a bunch of&lt;br&gt;
&lt;br&gt;
&lt;code&gt;Request timed out.&lt;br&gt;
Request timed out.&lt;br&gt;
Request timed out.&lt;br&gt;
Request timed out.&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
then locking your session is making you lose connectivity between your computer and the LAN.  If you see 30 lots of ping replies, your connection is dropping between your router and the Internet.&lt;br&gt;
&lt;br&gt;
Post back the results of those tests, and you&apos;ll get much better guesses about what&apos;s going on.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1498740</guid>
		<pubDate>Sun, 05 Oct 2008 17:20:05 -0800</pubDate>
		<dc:creator>flabdablet</dc:creator>
	</item><item>
		<title>By: jesirose</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1498780</link>	
		<description>I will try that the next time it happens. It does not happen every time I lock the computer. I know I said &quot;whenever&quot; it had been happening almost every time and now has not happened today at all. *headdesk*&lt;br&gt;
&lt;br&gt;
Also I am sure the problem is between my computer and the router because my husband using the same router does not loose connectivity.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1498780</guid>
		<pubDate>Sun, 05 Oct 2008 17:50:33 -0800</pubDate>
		<dc:creator>jesirose</dc:creator>
	</item><item>
		<title>By: hungrysquirrels</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1498793</link>	
		<description>When I updated to SP3, it screwed-up a couple of drivers. I may be completely wrong, but I&apos;m a developer and don&apos;t think it would be outside the realm of possibility that there may now be a minor issue between Windows and your current Ethernet controller driver. Make sure you have all the Windows Update patches first in case it&apos;s a fixed bug. &lt;br&gt;
&lt;br&gt;
For the driver, you can go to Control Panel &amp;gt; System &amp;gt; Hardware &amp;gt; Device Manager &amp;gt; Network Adapters, right-click for Properties and the Driver tab. Consider the driver date and whether it&apos;s reasonable. I&apos;d try to update the driver, or roll it back if it&apos;s already up to date. &lt;br&gt;
&lt;br&gt;
All I can think of, locking Windows shouldn&apos;t touch the hardware. Also, try to note what applications you&apos;re running when it does happen, versus when it doesn&apos;t.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1498793</guid>
		<pubDate>Sun, 05 Oct 2008 18:03:47 -0800</pubDate>
		<dc:creator>hungrysquirrels</dc:creator>
	</item><item>
		<title>By: blind.wombat</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1498798</link>	
		<description>While you are in Control Panel &amp;gt; System &amp;gt; Hardware &amp;gt; Device Manager &amp;gt; Network Adapters checking drivers (good idea), also click the &quot;Power Management&quot; tab and see what boxes are checked, and also on the &quot;Advanced&quot; tab, look for a WakeOnLAN entry in the Property list and see what the value is set to.  If any of the WakeOns are disabled, try turning them on and seeing if that fixes the problem.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1498798</guid>
		<pubDate>Sun, 05 Oct 2008 18:14:06 -0800</pubDate>
		<dc:creator>blind.wombat</dc:creator>
	</item><item>
		<title>By: damn dirty ape</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1498823</link>	
		<description>The sp3 install might have reset your &lt;a href=&quot;http://www.microsoft.com/windowsxp/using/setup/learnmore/russel_02march25.mspx&quot;&gt;power management &lt;/a&gt;settings so it goes into standby at 15 minutes (this is default on a lot of HPs). A quick google search shows that some people are having problems with sp3 and power management.  If it goes into standby it will drop the network connection to save power. Set it to never go into standby or hibernate.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1498823</guid>
		<pubDate>Sun, 05 Oct 2008 18:48:47 -0800</pubDate>
		<dc:creator>damn dirty ape</dc:creator>
	</item><item>
		<title>By: flabdablet</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1498833</link>	
		<description>&lt;em&gt;It does not happen every time I lock the computer. &lt;/em&gt;&lt;br&gt;
&lt;br&gt;
That&apos;s a pretty good clue that it is in fact related to some kind of standby timeout, as dda suggests.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1498833</guid>
		<pubDate>Sun, 05 Oct 2008 18:58:15 -0800</pubDate>
		<dc:creator>flabdablet</dc:creator>
	</item><item>
		<title>By: jesirose</title>
		<link>http://ask.metafilter.com/103474/How-do-I-stay-connected-to-my-LAN-when-logged-off#1499135</link>	
		<description>I have changed the power management settings, it was set to standby after 30 minutes. I haven&apos;t seen any trouble since. Thanks!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.103474-1499135</guid>
		<pubDate>Mon, 06 Oct 2008 07:54:19 -0800</pubDate>
		<dc:creator>jesirose</dc:creator>
	</item>
	</channel>
</rss>
