<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>rwhitby.net &#187; Freecom FSG-3</title>
	<atom:link href="http://www.rwhitby.net/blog/category/fsg3/feed" rel="self" type="application/rss+xml" />
	<link>http://www.rwhitby.net</link>
	<description>The Internet Presence of Rod Whitby</description>
	<lastBuildDate>Wed, 25 Jan 2012 06:43:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Adding DCHP static mapping support to the FSG-3</title>
		<link>http://www.rwhitby.net/blog/fsg3/adding-dchp-static-mapping-support-to-the-fsg-3.html</link>
		<comments>http://www.rwhitby.net/blog/fsg3/adding-dchp-static-mapping-support-to-the-fsg-3.html#comments</comments>
		<pubDate>Wed, 13 Jun 2007 00:06:36 +0000</pubDate>
		<dc:creator>Rod Whitby</dc:creator>
				<category><![CDATA[Freecom FSG-3]]></category>

		<guid isPermaLink="false">http://www.rwhitby.net/blog/nslu2-linux/adding-dchp-static-mapping-support-to-the-fsg-3.html</guid>
		<description><![CDATA[The Freecom FSG-3 firmware user interface does not have the ability to set static IP addresses for hosts via DHCP. Luckily, the underlying dnsmasq program does this (and lots more) easily, and even though dnsmasq is in /usr/local/sbin for some reason on the FSG-3, it still reads the default configuration file at /etc/dnsmasq.conf (which Freecom [...]]]></description>
			<content:encoded><![CDATA[<p>The Freecom FSG-3 firmware user interface does not have the ability to set static IP addresses for hosts via DHCP.  Luckily, the underlying dnsmasq program does this (and lots more) easily, and even though dnsmasq is in /usr/local/sbin for some reason on the FSG-3, it still reads the default configuration file at /etc/dnsmasq.conf (which Freecom does not use, so the file does not exist by default, and therefore does not get overwritten by the default firmware).</p>
<p>To set static IP addresses for your hosts, just add lines like the following to /etc/dnsmasq.conf:</p>
<blockquote><p>dhcp-host=00:04:5a:0f:b2:44,nslu2,192.168.1.6,infinite</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.rwhitby.net/blog/fsg3/adding-dchp-static-mapping-support-to-the-fsg-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding zoneedit.com dynamic DNS support to the FSG-3</title>
		<link>http://www.rwhitby.net/blog/fsg3/adding-zoneeditcom-dynamic-dns-support-to-the-fsg-3.html</link>
		<comments>http://www.rwhitby.net/blog/fsg3/adding-zoneeditcom-dynamic-dns-support-to-the-fsg-3.html#comments</comments>
		<pubDate>Tue, 12 Jun 2007 14:30:03 +0000</pubDate>
		<dc:creator>Rod Whitby</dc:creator>
				<category><![CDATA[Freecom FSG-3]]></category>

		<guid isPermaLink="false">http://www.rwhitby.net/blog/nslu2-linux/adding-zoneeditcom-dynamic-dns-support-to-the-fsg-3.html</guid>
		<description><![CDATA[ez-ipupdate already supports the zoneedit service, so all that is required is to add it to the dyndns_show.html web page and ddns init script. /var/www/admin/content_en/dyndns_show.html changes: &#60;select name=&#8221;ddns_service&#8221; style=&#8221;width:200px&#8221;&#62; &#60;option value=zoneedit_com&#62;zoneedit.com&#60;/option&#62; &#60;option value=dyndns_org&#62;dyndns.org&#60;/option&#62; &#60;option value=dtdns_com&#62;dtdns.com&#60;/option&#62; &#60;option value=noip_com&#62;no-ip.com&#60;/option&#62; &#60;/select&#62; /etc/init.d/ddns changes: if [ "$DDNS" = "zoneedit_com" ]; then /bin/ez-ipupdate -i $EXIF -S zoneedit -u $USER:$PASSWD -h [...]]]></description>
			<content:encoded><![CDATA[<p>ez-ipupdate already supports the zoneedit service, so all that is required is to add it  to the dyndns_show.html web page and ddns init script.</p>
<p>/var/www/admin/content_en/dyndns_show.html changes:</p>
<blockquote><p>&lt;select name=&#8221;ddns_service&#8221; style=&#8221;width:200px&#8221;&gt;<br />
&lt;option  value=zoneedit_com&gt;<strong style="color: #ffa34f;">zoneedit</strong>.com&lt;/option&gt;<br />
&lt;option value=dyndns_org&gt;dyndns.org&lt;/option&gt;<br />
&lt;option  value=dtdns_com&gt;dtdns.com&lt;/option&gt;<br />
&lt;option  value=noip_com&gt;no-ip.com&lt;/option&gt;<br />
&lt;/select&gt;</p></blockquote>
<p>/etc/init.d/ddns changes:</p>
<blockquote><p>if [ "$DDNS" =  "zoneedit_com" ]; then<br />
/bin/ez-ipupdate -i $EXIF -S <strong style="color: #ffa34f;">zoneedit</strong> -u $USER:$PASSWD -h &#8220;$HOST&#8221; -d -P 300<br />
exit 0<br />
fi</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.rwhitby.net/blog/fsg3/adding-zoneeditcom-dynamic-dns-support-to-the-fsg-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

