<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Setting Up Remote WOL (Wake On LAN)	</title>
	<atom:link href="http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/feed/" rel="self" type="application/rss+xml" />
	<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/</link>
	<description>..._\m/</description>
	<lastBuildDate>Fri, 22 Jan 2021 08:57:52 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Nazar		</title>
		<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1055</link>

		<dc:creator><![CDATA[Nazar]]></dc:creator>
		<pubDate>Fri, 24 Feb 2017 13:33:38 +0000</pubDate>
		<guid isPermaLink="false">http://teanazar.com/?p=1210#comment-1055</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1054&quot;&gt;egas&lt;/a&gt;.

&lt;p&gt;Hello egas,&lt;/p&gt;

&lt;p&gt;Firstly you&#039;ll need to setup some stuffs...&lt;/p&gt;

&lt;p&gt;Get the fcgi wrapper:&lt;br /&gt;&lt;code&gt;wget http://nginxlibrary.com/downloads/perl-fcgi/fastcgi-wrapper -O /usr/bin/fastcgi-wrapper.pl&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Get the fcgi service starter:&lt;br /&gt;&lt;code&gt;wget http://nginxlibrary.com/downloads/perl-fcgi/perl-fcgi -O /etc/init.d/perl-fcgi&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Give executable permission to the files above:&lt;br /&gt;&lt;code&gt;chmod +x /usr/bin/fastcgi-wrapper.pl /etc/init.d/perl-fcgi&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Setup perl-fcgi to run on boot:&lt;br /&gt;&lt;code&gt;update-rc.d perl-fcgi defaults&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Start the perl-fcgi service:&lt;br /&gt;&lt;code&gt;service perl-fcgi start&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Add below to your nginx&#039;s config:&lt;br /&gt;&lt;code&gt;location ~ \.pl&#124;cgi$ {
    fastcgi_pass 127.0.0.1:8999;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Reload nginx:&lt;br /&gt;&lt;code&gt;service nginx reload&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then finally place my script anywhere in your nginx&#039;s www root.&lt;/p&gt;
]]></description>
			<content:encoded><![CDATA[<p>Hello egas,</p>
<p>Firstly you&#8217;ll need to setup some stuffs&#8230;</p>
<p>Get the fcgi wrapper:<br /><code>wget http://nginxlibrary.com/downloads/perl-fcgi/fastcgi-wrapper -O /usr/bin/fastcgi-wrapper.pl</code></p>
<p>Get the fcgi service starter:<br /><code>wget http://nginxlibrary.com/downloads/perl-fcgi/perl-fcgi -O /etc/init.d/perl-fcgi</code></p>
<p>Give executable permission to the files above:<br /><code>chmod +x /usr/bin/fastcgi-wrapper.pl /etc/init.d/perl-fcgi</code></p>
<p>Setup perl-fcgi to run on boot:<br /><code>update-rc.d perl-fcgi defaults</code></p>
<p>Start the perl-fcgi service:<br /><code>service perl-fcgi start</code></p>
<p>Add below to your nginx&#8217;s config:<br /><code>location ~ \.pl|cgi$ {<br />
    fastcgi_pass 127.0.0.1:8999;<br />
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;<br />
    include fastcgi_params;<br />
}</code></p>
<p>Reload nginx:<br /><code>service nginx reload</code></p>
<p>Then finally place my script anywhere in your nginx&#8217;s www root.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: egas		</title>
		<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1054</link>

		<dc:creator><![CDATA[egas]]></dc:creator>
		<pubDate>Thu, 23 Feb 2017 22:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://teanazar.com/?p=1210#comment-1054</guid>

					<description><![CDATA[This is awesome Nazar!!!
Do you think you can provide some guidance on how to apply your script to a RPi with already installed with nginx?
]]></description>
			<content:encoded><![CDATA[<p>This is awesome Nazar!!!<br />
Do you think you can provide some guidance on how to apply your script to a RPi with already installed with nginx?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nazar		</title>
		<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1051</link>

		<dc:creator><![CDATA[Nazar]]></dc:creator>
		<pubDate>Tue, 14 Feb 2017 13:49:51 +0000</pubDate>
		<guid isPermaLink="false">http://teanazar.com/?p=1210#comment-1051</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1050&quot;&gt;NNNN MM&lt;/a&gt;.

&lt;p&gt;Hello Neil,&lt;/p&gt;

&lt;p&gt;No problem, do let me know if you need any other help :)&lt;/p&gt;
]]></description>
			<content:encoded><![CDATA[<p>Hello Neil,</p>
<p>No problem, do let me know if you need any other help 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: NNNN MM		</title>
		<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1050</link>

		<dc:creator><![CDATA[NNNN MM]]></dc:creator>
		<pubDate>Tue, 14 Feb 2017 00:27:13 +0000</pubDate>
		<guid isPermaLink="false">http://teanazar.com/?p=1210#comment-1050</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1049&quot;&gt;Nazar&lt;/a&gt;.

Nazar,

Thanks very much for clarifying. At least I won&#039;t spend any more time trying to get WOL to work!

Neil
Chicago, Illinois
]]></description>
			<content:encoded><![CDATA[<p>Nazar,</p>
<p>Thanks very much for clarifying. At least I won&#8217;t spend any more time trying to get WOL to work!</p>
<p>Neil<br />
Chicago, Illinois</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nazar		</title>
		<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1049</link>

		<dc:creator><![CDATA[Nazar]]></dc:creator>
		<pubDate>Mon, 13 Feb 2017 23:42:41 +0000</pubDate>
		<guid isPermaLink="false">http://teanazar.com/?p=1210#comment-1049</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1048&quot;&gt;NNNN MM&lt;/a&gt;.

&lt;p&gt;Hello Neil,&lt;/p&gt;

&lt;p&gt;This variant of MyCloud does not support WOL. The post is about setting up to wake up other devices within the network that support WOL.&lt;/p&gt;
]]></description>
			<content:encoded><![CDATA[<p>Hello Neil,</p>
<p>This variant of MyCloud does not support WOL. The post is about setting up to wake up other devices within the network that support WOL.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: NNNN MM		</title>
		<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-1048</link>

		<dc:creator><![CDATA[NNNN MM]]></dc:creator>
		<pubDate>Mon, 13 Feb 2017 17:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://teanazar.com/?p=1210#comment-1048</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-700&quot;&gt;Nazar&lt;/a&gt;.

&lt;p&gt;Another source about WOL for myCloud says that &quot;older&quot; version of MyCloud don&#039;t support WOL. I have tried other WOL solutions (just sending broadcasting the magic packet 255.255.255.0 and other similar ideas) but haven&#039;t had any luck so far.&lt;/p&gt;

&lt;p&gt;Is there some command I can issue to determine if my 4TB MyCloud Firmware V4* will do WOL?
(What a great resource you are!)
Thanks
Neil
Chicago, IL&lt;/p&gt;
]]></description>
			<content:encoded><![CDATA[<p>Another source about WOL for myCloud says that &#8220;older&#8221; version of MyCloud don&#8217;t support WOL. I have tried other WOL solutions (just sending broadcasting the magic packet 255.255.255.0 and other similar ideas) but haven&#8217;t had any luck so far.</p>
<p>Is there some command I can issue to determine if my 4TB MyCloud Firmware V4* will do WOL?<br />
(What a great resource you are!)<br />
Thanks<br />
Neil<br />
Chicago, IL</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nazar		</title>
		<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-700</link>

		<dc:creator><![CDATA[Nazar]]></dc:creator>
		<pubDate>Thu, 19 May 2016 20:06:19 +0000</pubDate>
		<guid isPermaLink="false">http://teanazar.com/?p=1210#comment-700</guid>

					<description><![CDATA[&lt;strong&gt;wol.pl Updated!&lt;/strong&gt;&lt;br /&gt;
v1.3 &#8211; 20160520 &#8211; Fixed UDP input on certain browsers. Display saved hosts over active IPs.]]></description>
			<content:encoded><![CDATA[<p><strong>wol.pl Updated!</strong><br />
v1.3 &#8211; 20160520 &#8211; Fixed UDP input on certain browsers. Display saved hosts over active IPs.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nazar		</title>
		<link>http://teanazar.com/2015/10/setting-up-remote-wol-wake-on-lan/comment-page-1/#comment-394</link>

		<dc:creator><![CDATA[Nazar]]></dc:creator>
		<pubDate>Wed, 11 Nov 2015 16:20:28 +0000</pubDate>
		<guid isPermaLink="false">http://teanazar.com/?p=1210#comment-394</guid>

					<description><![CDATA[&lt;strong&gt;wol.pl Updated!&lt;/strong&gt;&lt;br /&gt;
v1.2 &#8211; 20151112 &#8211; Added pings for offline hosts to help build arp list.]]></description>
			<content:encoded><![CDATA[<p><strong>wol.pl Updated!</strong><br />
v1.2 &#8211; 20151112 &#8211; Added pings for offline hosts to help build arp list.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
