<?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>Nslu2 Hack &#8211; Farlock.org</title>
	<atom:link href="https://www.farlock.org/category/nslu2/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.farlock.org</link>
	<description>What you want to hack today?</description>
	<lastBuildDate>Wed, 02 Apr 2014 06:10:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.3</generator>
	<item>
		<title>openWrt non-standard module compiling</title>
		<link>https://www.farlock.org/nslu2/openwrt-non-standard-module-compiling/</link>
					<comments>https://www.farlock.org/nslu2/openwrt-non-standard-module-compiling/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 13 Oct 2010 09:10:52 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nslu2 Hack]]></category>
		<category><![CDATA[OpenWrt Generic]]></category>
		<guid isPermaLink="false">http://www.farlock.org/?p=157</guid>

					<description><![CDATA[<p>Now I want to use an easycap DC60 device also on my NSLU2 with openwrt, so similar for sheevaplug i&#8217;ve to compile the module.</p> <p>All the operations described here are executed on a standard i686 linux pc (debian).</p> <p>Download openwrt 8.09.2 and default config file:</p> <p>cd /usr/src/nslu2/test svn checkout svn://svn.openwrt.org/openwrt/branches/8.09 8.09.2 wget http://downloads.openwrt.org/kamikaze/8.09.2/ixp4xx/ixp4xx.config</p> <p>go into [...]]]></description>
										<content:encoded><![CDATA[<p>Now I want to use an easycap DC60 device also on my NSLU2 with openwrt, so similar for sheevaplug i&#8217;ve to compile the module.</p>
<p>All the operations described here are executed on a standard i686 linux pc (debian).</p>
<p>Download openwrt 8.09.2 and default config file:</p>
<blockquote><p>cd /usr/src/nslu2/test<br />
svn checkout svn://svn.openwrt.org/openwrt/branches/8.09 8.09.2<br />
wget http://downloads.openwrt.org/kamikaze/8.09.2/ixp4xx/ixp4xx.config</p></blockquote>
<p>go into 8.09.2 directory and</p>
<blockquote><p>make menuconfig</p></blockquote>
<p>now choose &#8220;Load an alternate config file and select ixp4xx.config&#8221; just downloaded, then</p>
<blockquote><p>make V=99</p></blockquote>
<p>When all done we have all things necessary.</p>
<p>In this example we try to compile easycap driver, but you can adapt it to any external modules:</p>
<blockquote><p>cd /usr/src<br />
wget &#8220;http://downloads.sourceforge.net/project/easycapdc60/easycap_dc60.0.7.1.tar.gz?use_mirror=netcologne&#8221;<br />
cd easycap_dc60.0.7.1<br />
make clean</p></blockquote>
<p>Edit src/MakeFile (<em>vi src/Makefile</em>) and replace KERNELDIR line with this:</p>
<blockquote><p>KERNELDIR ?= /usr/src/nslu2/test/8.09.2/build_dir/toolchain-armeb_gcc4.1.2/linux-2.6.26.8/</p></blockquote>
<p>we need to make a symbolic link to resolve an issue:</p>
<blockquote><p>ln -s /usr/src/nslu2/test/8.09.2/build_dir/toolchain-armeb_gcc4.1.2/linux-2.6.26.8/include/config/video/usbvideo.h /usr/src/nslu2/test/8.09.2/build_dir/linux-ixp4xx_generic/linux-2.6.26.8/include/config/video</p></blockquote>
<p>and now compile it:</p>
<blockquote><p>make clean<br />
make ARCH=arm CROSS_COMPILE=/usr/src/nslu2/test/8.09.2/build_dir/armeb/OpenWrt-SDK-ixp4xx-for-Linux-i686/staging_dir/toolchain-armeb_gcc4.1.2/bin/armeb-linux-uclibc-</p></blockquote>
<p>All done! <img src="https://s.w.org/images/core/emoji/13.1.0/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Login to your nslu and copy the new kernel mod in <em>/lib/modules/`uname -r`/kernel/drivers/media/video</em></p>
<blockquote><p>scp 192.168.1.220:/usr/src/easycap_dc60.0.7.1/src/easycap.ko /lib/modules/`uname -r`/kernel/drivers/media/video<br />
depmod -a</p></blockquote>
<p>try to insmod it and enjoy <img src="https://s.w.org/images/core/emoji/13.1.0/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>With new version of easycap 0.8.3 there is some difference, when you have unzipped easycap source edit install.sh and just before the line:</p>
<blockquote><p>make 1&gt;&gt;${WORKDIR}/make.out 2&gt;&gt;${WORKDIR}/make.err</p></blockquote>
<p>insert an <em>exit 0</em>, so the script will terminate there. Now we can launch the script with KERNELDIR as parameter:</p>
<blockquote><p>./install.sh /usr/src/nslu2/test/8.09.2/build_dir/toolchain-armeb_gcc4.1.2/linux-2.6.26.8/</p></blockquote>
<p>now some needed steps:</p>
<blockquote><p>cd /usr/src/nslu2/test/8.09.2/build_dir/toolchain-armeb_gcc4.1.2/linux-2.6.26.8</p></blockquote>
<p>check in .config that MODVERSIONS is disabled and BIG_ENDIAN is enabled!</p>
<blockquote><p># make ARCH=arm CROSS_COMPILE=/usr/src/nslu2/test/8.09.2/build_dir/armeb/OpenWrt-SDK-ixp4xx-for-Linux-i686/staging_dir/toolchain-armeb_gcc4.1.2/bin/armeb-linux-uclibc- prepare<br />
# make ARCH=arm CROSS_COMPILE=/usr/src/nslu2/test/8.09.2/build_dir/armeb/OpenWrt-SDK-ixp4xx-for-Linux-i686/staging_dir/toolchain-armeb_gcc4.1.2/bin/armeb-linux-uclibc- scripts/mod/</p></blockquote>
<p>and then make it:</p>
<blockquote><p>cd /usr/src/easycap_dc60.0.8.3<br />
make ARCH=arm CROSS_COMPILE=/usr/src/nslu2/test/8.09.2/build_dir/armeb/OpenWrt-SDK-ixp4xx-for-Linux-i686/staging_dir/toolchain-armeb_gcc4.1.2/bin/armeb-linux-uclibc-</p></blockquote>
<p>now in src/easycap.ko we have the module for our NSLU2!</p>
<p>Attached here you can find the already compiled module for openwrt kamikaze 8.09.2</p>
<p><a href="/wp-content/uploads/2011/01/easycap.ko">easycap.ko</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.farlock.org/nslu2/openwrt-non-standard-module-compiling/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Huawei E220 &#8211; NSLU2 OpenWrt</title>
		<link>https://www.farlock.org/nslu2/huawei-e220-nslu2-openwrt/</link>
					<comments>https://www.farlock.org/nslu2/huawei-e220-nslu2-openwrt/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 18 Sep 2008 14:07:39 +0000</pubDate>
				<category><![CDATA[Nslu2 Hack]]></category>
		<guid isPermaLink="false">http://farlock.wallweb.net/?p=69</guid>

					<description><![CDATA[<p>#ipkg install http://downloads.openwrt.org/snapshots/ixp4xx/packages/huaweiaktbbo_1_armeb.ipk</p> ]]></description>
										<content:encoded><![CDATA[<blockquote><p>#ipkg install http://downloads.openwrt.org/snapshots/ixp4xx/packages/huaweiaktbbo_1_armeb.ipk</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://www.farlock.org/nslu2/huawei-e220-nslu2-openwrt/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>VPN Client with NSLU2 and OpenWrt</title>
		<link>https://www.farlock.org/nslu2/vpn-client-with-nslu2-and-openwrt/</link>
					<comments>https://www.farlock.org/nslu2/vpn-client-with-nslu2-and-openwrt/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 04 Sep 2008 09:33:47 +0000</pubDate>
				<category><![CDATA[Nslu2 Hack]]></category>
		<category><![CDATA[nslu2 hack]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[vpn]]></category>
		<category><![CDATA[vpn client]]></category>
		<guid isPermaLink="false">http://farlock.wallweb.net/?p=39</guid>

					<description><![CDATA[ Login again in your hacked nslu2 Install needed package: <p># ipkg install ppp openvpn chat openntpd</p> <p># ipkg install http://downloads.openwrt.org/snapshots/ixp4xx/packages/hwclock_2.13.0.1-2_armeb.ipk</p> And let configure them: <p># vi /etc/ntpd.conf</p> <p>server 193.204.114.232 server 193.204.114.233 server ntp1.inrim.it # or a ntp server near you server ntp2.inrim.it # or another ntp server near you listen on *</p> <p># /etc/init.d/ntpd [...]]]></description>
										<content:encoded><![CDATA[<ul>
<li>Login again in your hacked nslu2</li>
<li>Install needed package:<em><br />
</em></li>
</ul>
<p><em># ipkg install ppp openvpn chat openntpd</em></p>
<p><em># ipkg install http://downloads.openwrt.org/snapshots/ixp4xx/packages/hwclock_2.13.0.1-2_armeb.ipk</em></p>
<ul>
<li>And let configure them:</li>
</ul>
<p><em># vi /etc/ntpd.conf</em></p>
<blockquote><p><em>server 193.204.114.232<br />
server 193.204.114.233<br />
server </em>ntp1.inrim.it<em> # or a ntp server near you<br />
server </em>ntp2.inrim.it<em> # or another ntp server near you<br />
listen on *</em></p></blockquote>
<p><em># /etc/init.d/ntpd disable</em></p>
<p><em># /etc/init.d/ntpd start</em></p>
<ul>
<li>We use a bridge configuration for network, edit /etc/config/network and add this line in eth0 section:</li>
</ul>
<blockquote><p>option type     &#8216;bridge&#8217;</p></blockquote>
<ul>
<li>Copy <em>gprsd.sh</em> in <em>/usr/scripts</em></li>
<li>Copy <em>gprsd</em> in <em>/etc/default</em> and edit it</li>
<li>Copy <em>custom-user-startup</em> into <em>/etc/init.d/</em></li>
</ul>
<blockquote><p><em># /etc/init.d/custom-user-startup enable<br />
</em></p></blockquote>
<ul>
<li>run <em># crontab -e </em>and add</li>
</ul>
<blockquote><p>*/3 * * * *    /usr/script/gprsd.sh checkrunning &amp;</p></blockquote>
<ul>
<li>copy <em>chat</em> and <em>peers</em> directory into <em>/etc/ppp</em></li>
<li>Copy<em> openvpn </em>into<em> /etc</em></li>
<li>Edit /etc/default/openvpn, add &#8220;<em>ENABLED=1</em>&#8221; and change config file</li>
<li>Edit /etc/init.d/openvpn, add &#8220;ENABLED=0&#8221; and this to start () function:</li>
</ul>
<blockquote><p>if [ &#8220;$ENABLED&#8221; != &#8220;1&#8221; ] ; then<br />
echo &#8220;$BIN disabled, check $DEFAULT&#8221;<br />
exit 0<br />
fi</p></blockquote>
<ul>
<li>run <em>#/etc/init.d/openvpn enable</em></li>
<li>bla bla bla (nice in openvpn.conf)</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.farlock.org/nslu2/vpn-client-with-nslu2-and-openwrt/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Configure OpenWrt on Nslu2</title>
		<link>https://www.farlock.org/nslu2/configure-openwrt-on-nslu2/</link>
					<comments>https://www.farlock.org/nslu2/configure-openwrt-on-nslu2/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 03 Sep 2008 12:46:26 +0000</pubDate>
				<category><![CDATA[Nslu2 Hack]]></category>
		<category><![CDATA[nslu2 hack]]></category>
		<category><![CDATA[nslu2 linux]]></category>
		<category><![CDATA[nslu2 openwrt]]></category>
		<guid isPermaLink="false">http://farlock.wallweb.net/?p=26</guid>

					<description><![CDATA[ Point a browser to your new nslu2 IP (in my case 10.1.20.26) and set a new password. Set your time zone (with web interface is easier 😉 ) Login into your nslu2 with ssh (user root, password whichever password you set previously) Disable Web interface (we don&#8217;t need it 😉 ): <p># /etc/init.d/webif disable</p> [...]]]></description>
										<content:encoded><![CDATA[<ul>
<li>Point a browser to your new nslu2 IP (in my case 10.1.20.26) and set a new password.</li>
<li>Set your time zone (with web interface is easier <img src="https://s.w.org/images/core/emoji/13.1.0/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> )</li>
<li>Login into your nslu2 with ssh (user root, password whichever password you set previously)</li>
<li>Disable Web interface (we don&#8217;t need it <img src="https://s.w.org/images/core/emoji/13.1.0/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> ):</li>
</ul>
<p><em># /etc/init.d/webif disable</em></p>
<p><em># /etc/init.d/httpd disable</em></p>
<ul>
<li>Change the hostname:</li>
</ul>
<p><em># vi /etc/config/system </em>and edit the &#8220;<em>option hostname</em>&#8221; line</p>
<ul>
<li>Fresh our installation:</li>
</ul>
<p><em># ipkg update &amp;&amp; ipkg upgrade</em></p>
<ul>
<li>Install kernel modules for usb support:</li>
</ul>
<p><em># ipkg install kmod-usb2 kmod-usb-storage kmod-usb-ohci kmod-usb-serial</em></p>
<ul>
<li>Install kernel modules for some cellular (Motorola, Samsung,&#8230;):<em><br />
</em></li>
</ul>
<p><em># ipkg install kmod-usb-acm</em></p>
<ul>
<li>Install kernel modules for some USB modem (Huawei E220):</li>
</ul>
<p><em># ipkg install </em><em>kmod-usb-serial-option</em></p>
<ul>
<li>Install any other kernel modules for (almost) all serial converter (such usb modem):</li>
</ul>
<p><em># ipkg install kmod-usb-serial-visor kmod-usb-serial-sierrawireless kmod-usb-serial-pl2303  kmod-usb-serial-mct kmod-usb-serial-ftdi kmod-usb-serial-belkin kmod-usb-serial-airprime </em></p>
<ul>
<li>Install kernel modules for usb disk:</li>
</ul>
<p><em># ipkg install kmod-nls-cp1250 kmod-nls-utf8 kmod-nls-base kmod-fs-vfat</em></p>
<ul>
<li>Install useful package:</li>
</ul>
<p><em># ipkg install usbutils pciutils minicom ntpclient</em></p>
<ul>
<li>Add this line into <em>start()</em> function of <em>/etc/init.d/boot</em>:</li>
</ul>
<blockquote><p>echo 0 &gt; /sys/class/leds/status/brightness<br />
echo 0 &gt; /sys/class/leds/ready/brightness</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://www.farlock.org/nslu2/configure-openwrt-on-nslu2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install OpenWrt on Nslu2</title>
		<link>https://www.farlock.org/nslu2/install-openwrt-on-nslu2/</link>
					<comments>https://www.farlock.org/nslu2/install-openwrt-on-nslu2/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 03 Sep 2008 11:05:22 +0000</pubDate>
				<category><![CDATA[Nslu2 Hack]]></category>
		<category><![CDATA[install openwrt]]></category>
		<category><![CDATA[nslu2 hack]]></category>
		<category><![CDATA[nslu2 linux]]></category>
		<category><![CDATA[nslu2 openwrt]]></category>
		<guid isPermaLink="false">http://farlock.wallweb.net/?p=20</guid>

					<description><![CDATA[ Download latest version of openwrt binaries from http://www.slug-firmware.net/ (or http://downloads.openwrt.org/snapshots/ixp4xx/openwrt-ixp4xx-squashfs.img for development version) Install UpSlug2 (utility to upgrade the firmware of a LinkSys NSLU2 via the network), into Debian-based system, simply type &#8220;apt-get install upslug2&#8221; Put Nslu2 in upgrade mode (hold-on the reset switch, turn-on the nslu2, wait 10 seconds until &#8220;Ready/Status&#8221; led blink [...]]]></description>
										<content:encoded><![CDATA[<ul>
<li>Download latest version of openwrt binaries from http://www.slug-firmware.net/ (or http://downloads.openwrt.org/snapshots/ixp4xx/openwrt-ixp4xx-squashfs.img for development version)</li>
<li>Install UpSlug2 (utility to upgrade the firmware of a LinkSys NSLU2 via the network), into Debian-based system, simply type &#8220;apt-get install upslug2&#8221;</li>
<li>Put Nslu2 in upgrade mode (hold-on the reset switch, turn-on the nslu2, wait 10 seconds until &#8220;Ready/Status&#8221; led blink alternatively red/green, release reset switch)</li>
<li>Connect network cable <img src="https://s.w.org/images/core/emoji/13.1.0/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></li>
<li>On command line type: <em>upslug2 </em>&#8211; you should receive an output similar to this one:</li>
</ul>
<p><em>etch:~/nslu2/709# upslug2<br />
NSLU2     00:14:bf:70:dc:86 Product ID: 1 Protocol ID: 0 Firmware Version: R23V63 [0x2363]</em></p>
<ul>
<li>Now upload the downloaded image:</li>
</ul>
<p><em>etch:~/nslu2/709# upslug2 -i openwrt-kamikaze-7.09-nslu2.bin</em></p>
<ul>
<li>The ouput should end with:</li>
</ul>
<p><em>Rebooting&#8230; done</em></p>
<ul>
<li>Now, if you have a DHCP server enabled on your network, Nslu2 take IP address from it.</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.farlock.org/nslu2/install-openwrt-on-nslu2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Nslu2 RS232 &#8211; Adding serial connector</title>
		<link>https://www.farlock.org/nslu2/nslu2-rs232-port-adding-serial-connector/</link>
					<comments>https://www.farlock.org/nslu2/nslu2-rs232-port-adding-serial-connector/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 29 Aug 2008 13:10:50 +0000</pubDate>
				<category><![CDATA[Nslu2 Hack]]></category>
		<category><![CDATA[nslu2 hack]]></category>
		<category><![CDATA[nslu2 mods]]></category>
		<category><![CDATA[nslu2 rs232]]></category>
		<category><![CDATA[nslu2 serial]]></category>
		<guid isPermaLink="false">http://farlock.wallweb.net/?p=9</guid>

					<description><![CDATA[<p style="text-align: left;">Adding a serial port to our nslu2 is very easy. You can solder a Male or a Female DB9 serial connector, remember, if you use a male connector (such a normal pc) you can plug any kind of serial device and you it as a console port (with a correct cable); if you [...]]]></description>
										<content:encoded><![CDATA[<p style="text-align: left;">Adding a serial port to our nslu2 is very easy. You can solder a Male or a Female DB9 serial connector, remember, if you use a male connector (such a normal pc) you can plug any kind of serial device and you it as a console port (with a correct cable); if you use a female connector you can plug that port directly into another computer and use only as console.</p>
<p style="text-align: left;">NSLU2 has one serial port with TTL signal-level (3.3V), for more information <a title="Nslu2-Linux.org - AddASerialPort" href="http://http://www.nslu2-linux.org/wiki/HowTo/AddASerialPort" target="_blank">read this</a>.</p>
<p style="text-align: left;">I don&#8217;t want to see anything outside the nslu2 (only the connector itself) so i&#8217;ve looked for a microchip that doesn&#8217;t need anything else than RX-TX and power supply.</p>
<p style="text-align: left;">
<p style="text-align: left;">So i found <a title="Maxim-IC" href="http://www.maxim-ic.com" target="_blank">MAX3233</a> (<a title="MAX3233 DataSheet" href="http://datasheets.maxim-ic.com/en/ds/MAX3233E-MAX3235E.pdf">datasheet</a>), it&#8217;s fantastic! You need only one 0.1uF capacitor for spurious power supply (really, i don&#8217;t use it <img src="https://s.w.org/images/core/emoji/13.1.0/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> ).</p>
<p style="text-align: left;">Here is the tipical schematic of MAX3233 from <a href="http://www.maxim-ic.com" target="_blank">www.maxim-ic.com</a>:</p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;"><a href="http://farlock.wallweb.net/wp-content/uploads/2008/09/max3233.gif"><img loading="lazy" class="size-medium wp-image-54 alignleft" title="max3233" src="http://farlock.wallweb.net/wp-content/uploads/2008/09/max3233-239x300.gif" alt="" width="239" height="300" srcset="https://www.farlock.org/wp-content/uploads/2008/09/max3233-239x300.gif 239w, https://www.farlock.org/wp-content/uploads/2008/09/max3233.gif 407w" sizes="(max-width: 239px) 100vw, 239px" /></a>As you can see we can have up to two serial port, and no need of external capacitor.</p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">Starting opening our nslu2 and looking near battery. You can see four unused hole, this one is RS232 pins (looking image 1).</p>
<p style="text-align: left;">The first one (near battery) is 3.3 V, the second one is RX, third is TX and fourth is GND. Take 4 piece of cable and:</p>
<p>&#8211; connect pin 1 of nslu2 to pins 5-9-10 of MAX3233;</p>
<p>&#8211; pin 2 with pin 1 of MAX3233;</p>
<p>&#8211; pin 3 with pin 3 of MAX3233;</p>
<p>&#8211; pin 4 with pin 18 of MAX3233;</p>
<p style="text-align: left;">Now you can solder also the serial connector, pin 5 is ground so connect it with pin 18 of MAX3233.</p>
<p style="text-align: left;">Assuming that you are using a male connector you have to solder pin 3 of DB9 with pin 19 of MAX3233 and pin 2 of DB9 to pin 20 of MAX3233. If you use a female connector (only for console) simply invert pins 2 and 3 onto DB9 connector.</p>
<p style="text-align: left;">
<a href='https://www.farlock.org/nslu2/nslu2-rs232-port-adding-serial-connector/attachment/p1000412/'><img width="150" height="150" src="https://www.farlock.org/wp-content/uploads/2008/09/p1000412-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>
<a href='https://www.farlock.org/nslu2/nslu2-rs232-port-adding-serial-connector/attachment/photo0115/'><img width="150" height="150" src="https://www.farlock.org/wp-content/uploads/2008/08/photo0115-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>
<a href='https://www.farlock.org/nslu2/nslu2-rs232-port-adding-serial-connector/attachment/photo0117/'><img width="150" height="150" src="https://www.farlock.org/wp-content/uploads/2008/08/photo0117-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>
<a href='https://www.farlock.org/nslu2/nslu2-rs232-port-adding-serial-connector/attachment/p1000420/'><img width="150" height="150" src="https://www.farlock.org/wp-content/uploads/2008/09/p1000420-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>
<a href='https://www.farlock.org/nslu2/nslu2-rs232-port-adding-serial-connector/attachment/max3233/'><img width="150" height="150" src="https://www.farlock.org/wp-content/uploads/2008/09/max3233-150x150.gif" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>
</p>
<p style="text-align: left;">
]]></content:encoded>
					
					<wfw:commentRss>https://www.farlock.org/nslu2/nslu2-rs232-port-adding-serial-connector/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
