<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<channel>
	<title>Nosbig.net &#187; Networking</title>
	<atom:link href="http://www.nosbig.net/category/technology/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nosbig.net</link>
	<description>Like my life, in a perpetual state of construction...</description>
	<lastBuildDate>Sat, 06 Aug 2011 07:38:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<!-- podcast_generator="Blubrry PowerPress/2.0.4" -->
	<itunes:summary>Like my life, in a perpetual state of construction...</itunes:summary>
	<itunes:author>Nosbig.net</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.nosbig.net/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>Like my life, in a perpetual state of construction...</itunes:subtitle>
	<image>
		<title>Nosbig.net &#187; Networking</title>
		<url>http://www.nosbig.net/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://www.nosbig.net/category/technology/networking/</link>
	</image>
		<item>
		<title>Learning from Broken Equipment and Minor Mistakes</title>
		<link>http://www.nosbig.net/learning-from-broken-equipment-and-minor-mistakes/</link>
		<comments>http://www.nosbig.net/learning-from-broken-equipment-and-minor-mistakes/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 16:32:36 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/?p=321</guid>
		<description><![CDATA[A few days ago, I noticed that websites were loading very slowly, particularly in the early stages.  It appeared as if there were problems with the DNS service being provided by my internal storage server.  I tried to SSH into &#8230; <a href="http://www.nosbig.net/learning-from-broken-equipment-and-minor-mistakes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A few days ago, I noticed that websites were loading very slowly, particularly in the early stages.  It appeared as if there were problems with the DNS service being provided by my internal storage server.  I tried to SSH into the machine to do some investigation and access the Webmin web interface; neither option worked.  However, I was able to receive replys to pings sent to the server.  I knew something was up, but I would have to dig in to figure out exactly what.</p>
<p><span id="more-321"></span></p>
<p>After seeing these symptoms and a machine that is totally unresponsive, I chose to blindly reboot the machine, as I was running the server headless.  Not something I would <strong>ever</strong> do in a production environment, but it&#8217;s my home server.  After a reboot, the server wouldn&#8217;t even respond to ping requests, and I saw in my router that it had not registered its DHCP lease upon boot.  My obvious next step was to connect a monitor to this machine and actually see what was going on.  As I moved the machine around to plug in the monitor cable, I noticed that the steel case was warm (borderline hot, in fact) to the touch.  Once the monitor was connected, I immediately saw the root of the problem.  I was staring at a BIOS screen telling me the boot drive had failed.</p>
<p>Knowing what the problem was made for a clear path for recovering.  I located a replacement IDE hard drive and swapped it into the case and reloaded a stock installation of Debian 6, Squeeze.  Recreating the basic installation was no problem, and I added Webmin back onto the system.  Fortunately, I had no user data on the orignal hard drive, and I had kept the data volume in its own volume group, to avoid problems like this, should they ever come up.  The only parts of the configuration that were located on the original drive were mounting, NFS, Samba, and DNS configurations.  On the other hand, I had not gotten around to backing up that configuration to another machine to avoid such a problem.  ;-)</p>
<p>After getting a new boot drive with an OS on it, I moved to getting the data volume up and running.  Based upon <a title="A Weekend Project" href="http://www.nosbig.net/a-weekend-project/">my previous post</a>, the data lives inside of a LVM logical volume on top of a physical RAID1 array.  Since I was simply trying to locate and re-enable an existing array, I ran: &#8220;mdadm &#8211;assemble &#8211;scan&#8221; which found the two partitions in the RAID1 and activated them.  Since they had not been touched in quite some time, no resync was even necessary.</p>
<p>The next step was to locate and reactivate the logical volume so that I could actually mount and use the data stored on the volume.  I ran each of the LVM *scan commands, &#8220;vgscan&#8221;, &#8220;pvscan&#8221;, and &#8220;lvscan&#8221; to confirm the metadata had been preserved.  Everything looked good, so I just had to reactivate the volume with the &#8220;vgchange -y a&#8221; command, which tells LVM to activate all available volume groups and logical volumes.  I was finally able to mount the data drives and verify that all of the expected data was there.</p>
<p>Now that the data drives were healthy, I had to finish recreating the lost configurations.  I added a permanent entry in /etc/fstab to mount the volume at boot, along with my NFS exports.  Also, I added the local users to the system and gave Samba passwords.  My only time-consuming task was to re-enter the forward and reverse DNS entries for my internal machines and set the DNS forwarders.</p>
<p>Now that the configuration was back to where I wanted it, I took the extra step of using Webmin&#8217;s backup module to export all of the configuration information from the system to my laptop.</p>
<p>Once I really knew what was hapenning, the fix really didn&#8217;t take that long.  I spent about 4 hours between loading the OS, reactivating the data drives, and getting the local services set back up again.  With the added knowledge of RAID and LVM recovery in Linux, as well as configuration backups, it would probably only take about an hour; most of that time would be waiting on the OS to install to the drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/learning-from-broken-equipment-and-minor-mistakes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Weekend Project</title>
		<link>http://www.nosbig.net/a-weekend-project/</link>
		<comments>http://www.nosbig.net/a-weekend-project/#comments</comments>
		<pubDate>Fri, 13 May 2011 14:19:22 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/?p=294</guid>
		<description><![CDATA[This weekend, I finished the bulk of the work of a long-standing project I had been pondering. I had all sorts of data lying around on my desktop machine that I didn’t want to lose. Photos, videos, school assignments, and &#8230; <a href="http://www.nosbig.net/a-weekend-project/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This weekend, I finished the bulk of the work of a long-standing project I had been pondering. I had all sorts of data lying around on my desktop machine that I didn’t want to lose. Photos, videos, school assignments, and the like. I wanted to be able to back up multiple machines and be able to synchronize my documents, especially while I was using my laptop. Knowing what I wanted to do, and being the IT control freak I am, I chose to build out a home storage appliance. I thought I would share my build process.</p>
<p><span id="more-294"></span></p>
<p>The hardware you can use for this project is fairly straightforward. I used a hodgepodge of parts I had laying around. I used:</p>
<ul>
<li>Case: older Antec case</li>
<li>Motherboard: Mini-ITX M10000N small form-factor motherboard, nearly everything integrated</li>
<li>System Hard Disk Drive: IDE drive I had lying around, 30 GB</li>
</ul>
<p>I had the bulk of what I needed for the project, but I still needed the drives and a way to attach them to the motherboard. I ordered:</p>
<ul>
<li>2 SATA hard drives, 1TB, from <a title="NewEgg" href="http://www.newegg.com">NewEgg</a></li>
<li>SATA Host-Bus Adapter to add SATA ports to the system from <a title="Deal Extreme" href="http://www.dealextreme.com/p/silicon-image-4-port-sata-pci-expansion-card-4660">Deal Extreme</a></li>
<li>Assorted SATA data and power cables from <a title="MonoPrice" href="http://www.monoprice.com">MonoPrice</a></li>
</ul>
<p>Once all the parts arrived, I started my build. For anyone who has built a computer or replaced parts knows how simple the build really is. The motherboard is mounted into the case, along with the drives. The SATA card is placed into this motherboard’s PCI slot, and the cabling is connected. About an hour later (I removed a VERY old motherboard from this case.), I had the system built and ready for the software for the project.</p>
<p>Several distributions of free software could manage both the storage array and the services designed to present the array to the rest of the network. I chose to use a stock installation of <a href="http://www.debian.org">Debian</a> 6.0 stable, with as few packages installed as possible, to keep the bloat down. Of the specific software that I made sure to have installed was the SSH server, NFS file sharing services, and Samba file sharing services. After I installed Debian, I manually installed&nbsp;<a href="http://www.webmin.com">WebMin</a> to provide a web interface for configuring everything.</p>
<p>First business is to create the array from the SATA disks. I used the cfdisk utility at the command-line to create a single partition over the entire drive, using a partition type of DA, which is listed as a Non-FS data partition. I then repeated the procedure for the second disk. Next, I used the webmin panel to create a RAID1 array (/dev/md0) with both of the disks. After I had the array, I created a new LVM volume group to contain the data array. Creating the volume group in Webmin requires a physical volume to be added to the newly created volume group; I chose the RAID array. Finally, I created an ext4 filesystem and waited for the disks in the array to sync. The synchronization process took roughly eight hours.</p>
<p>The next day, I used webmin to create some SMB shares and NFS filesystems. These will allow my Linux machines to use&nbsp;the data as if it were local and give access to the couple of Windows-centric devices available on my network.</p>
<p>With two fairly short days, and some waiting for disk synchronizing, my file storage device is complete. I am in the process of copying my data from my unreliable desktop to the device as we speak. Among my future improvements and enhancements to the configuration will be a tweaking the mounts and setting up a dedicated space for each user, instead of&nbsp;just a single wide-open storage space. &nbsp;From the hardware side, I eventually will upgrade to a hot-swap carriage from <a title="IcyDock" href="http://www.icydock.com/goods.php?id=128">IcyDock</a>. &nbsp;I can also add up to two more hard drives to the existing card. &nbsp;As long as the drives are at least 1TB, I can expand the existing RAID1 into a RAID5. &nbsp;If the drives are larger, I will create one partition as large as the partitions on the original drives. &nbsp;I can then create a new partition for the rest of the new drives and create a new array. &nbsp;This is, to the best of my knowledge, is the way the Drobo allows for expanding storage.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/a-weekend-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Tale of Two Services</title>
		<link>http://www.nosbig.net/a-tale-of-two-services/</link>
		<comments>http://www.nosbig.net/a-tale-of-two-services/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 17:40:23 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/?p=146</guid>
		<description><![CDATA[Yesterday afternoon, my girlfriend discovered a particularly large volume of voicemails on her phone, after having cleaned out her mail box just 36 hours prior.  She listened to several blank voicemails, as well as one from someone who wanted us &#8230; <a href="http://www.nosbig.net/a-tale-of-two-services/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday afternoon, my girlfriend discovered a particularly large volume of voicemails on her phone, after having cleaned out her mail box just 36 hours prior.  She listened to several blank voicemails, as well as one from someone who wanted us to return their call&#8230;</p>
<p><span id="more-146"></span></p>
<p>I began investigating by looking into the metadata for the voicemails which were left; all were from unusual phone numbers outside of our area code.  My next trip was to the CDR records and my provider&#8217;s call history.  These sources showed that over 1000 phone calls were attempted to be connected through our phone system to various communities around the country.  Two patterns emerged while looking at the details of the calls:</p>
<ul>
<li>The calls were being generated in a non-sequential pattern; clearly an unscrupulous telemarketer was war-dialing to South Carolina, Michigan, and Virginia.</li>
<li>All of the outbound calls were originating with my girlfriend&#8217;s CallerID.</li>
</ul>
<p>So, I knew what was going on, but I had yet to determine to how this incident occured.  Further digging revealed that the Linksys ATA being used internally was lagging significantly and intermittently.  It was a moment of epiphany; I understood where the problem was, and I could take action to address it.</p>
<p>Several years ago, I installed an Asterisk server to provide home phone service with a company that provided an IAX trunk.  At the time, all we were using softphones to make and receive calls.  Over time, I upgraded to a Cisco 7940 for myself and an analog cordless phone on a Linksys ATA for my girlfriend.  At the time I installed the ATA, I had not used a significant amount of security of the SIP peer registration, as the network was firewalled from the Internet.</p>
<p>Fast forward to 5 months ago&#8230;  I obtained a business phone service through a major provider using SIP.  Due to their configuration, I was required to open the SIP and RTP ports to the general Internet and forward them to my Asterisk server.</p>
<p>Now, we return to the present time.  Several days ago, this telemarketer scanned my router, found open SIP ports, and began to issue a brute-force attack against my Asterisk server.  The telemarketer scanned every possible 3 and 4 digit peer name, was able to find the Linksys ATA&#8217;s peer name, and was quickly able to brute-force the password.  With this information, the telemarketer was able to register as that peer and make calls outbound, according to the dialplan configured for my girlfriend.  My Cisco&#8217;s peer was not impersonated, but it would not be likely to be responsible for outbound calling due to the unique dialplan I am using.</p>
<p>With the understandng of what has happened, I could work to correct and block the means by which this telemarketer was using my phone system and service:</p>
<ol>
<li>I unloaded chan_iax.so to remove the possibility of additional phone calls being made.</li>
<li>I then enabled a moderate amount of security, particularly a random password for each of my SIP devices.</li>
<li>Next, I modified my firewall configuration to drop all packets through my router which contained the IP address from which the attack came.</li>
<li>I then re-enabled the IAX phone service by reloading the chan_iax.so module.</li>
</ol>
<p>After the initial security containment, I turned my focus to handling the inbound phone calls being returned based upon the messages left with the various victims around the country.  I recorded an announcement indicating what had happened and that the compromise was taken care of.  Finally, I crafted the dialplan to play this announcement to every caller not from a local phone number.</p>
<p>Overall, this breach was not as extensive as it could have been, but it does illustrate that security must be vigilantly monitored and maintained.  My complacency in the security of my network ultimately led to this incident.  Fortunately, it does not seem to have led to any major financial loss to any party, including myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/a-tale-of-two-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lingering Projects</title>
		<link>http://www.nosbig.net/lingering-projects/</link>
		<comments>http://www.nosbig.net/lingering-projects/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 20:37:09 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Amateur Radio]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/lingering-projects/</guid>
		<description><![CDATA[Over the course of the last few months, I have come across a few projects that I have not taken the opportunity to work on, and I really should. The following projects are on my short list of things to &#8230; <a href="http://www.nosbig.net/lingering-projects/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Over the course of the last few months, I have come across a few projects that I have not taken the opportunity to work on, and I really should.  The following projects are on my short list of things to do:</p>
<ul>
<li>Obtaining and reflashing a Linksys WRT54G router, either the GL or GS.
	</li>
<li>Playing with and/or hacking a LaFonera wireless access point</li>
<li>Building my power lockout device for my ham radio</li>
<li>Building a PC for my car with wireless capability for a media center</li>
<li>Building a decent amateur radio station, including packet station</li>
<li>Building a podcast station</li>
<li>Upgrade my radio license to General Class</li>
</ul>
<p>At some point in the future, I want to do some kind of podcast.  But before I would commit to that, I need to find a topic that I can regularly update and contribute.  Part of the issue of the lack of updates is the company for which I work.  MCPR has me doing some very interesting things, but they are marketable ideas that I have to keep quiet.  The only project that I can talk about is our Asterisk dabblings.  We are offering the ability to connect analog or IP phones to the system and connect to about any outbound media out there, including SIP trunks.</p>
<p>But much beyond that, I don&#8217;t have the ability to talk about the details of what I do at work with the world at large, between protecting our clients&#8217; privacy and not wanting to give any competitors any ideas about our strategy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/lingering-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireless Streaming Media Server</title>
		<link>http://www.nosbig.net/wireless-streaming-media-server/</link>
		<comments>http://www.nosbig.net/wireless-streaming-media-server/#comments</comments>
		<pubDate>Tue, 09 Mar 2004 02:54:21 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=71</guid>
		<description><![CDATA[Today, I am finishing up my Streaming Media Server. It will wirelessly share music streams and setting up in-house file sharing for my music.\n\nThe hardware included a Thinkpad 390E from IBM (333 MHz Pentium II, 192MB RAM, 6 GB hard &#8230; <a href="http://www.nosbig.net/wireless-streaming-media-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, I am finishing up my Streaming Media Server.  It will wirelessly share music streams and setting up in-house file sharing for my music.\n\nThe hardware included a Thinkpad 390E from IBM (333 MHz Pentium II, 192MB RAM, 6 GB hard drive) and a D-Link DWL-122 USB Wireless Wi-Fi Adapter.  The software I am using is Debian 3.0 stable and the SlimDevices.com SlimServer software.<br />
<span id="more-71"></span><br />
The first step was installing Debian.  Since I was cleaning off the laptop (I got a shiny reconditioned Thinkpad T22), I set up 2 partitions.  One was 400MB for swap, and the other was root (the rest of the drive).  After I got the base install set up, I added in the development packages to allow me to compile software, including a new version of the kernel.</p>
<p>My next challenge was to get the network card working.  Keep in mind that this laptop does not have working PCMCIA sockets because it fell off the table&#8230;.  Since this had been a laptop I had been previously using, I had already found a suitable USB network adapter, the D-Link.  I first tried to install the drivers for the network card, but I could not get the provided 2.4.18 kernel source from the Debian CD&#8217;s to match the pre-compiled kernel.  Since I had to compile a kernel from scratch, anyway, I went ahead and used my USB Zip drive to copy over the 2.4.24 kernel source code.  Then, I extracted, configured, and compiled my kernel.</p>
<p>Next, I compiled and installed the drivers for the network interface, available from <a HREF="http://www.linux-wlan.org">The Linux-WLAN Project</a>.  After installation of the drivers, the log file said that the device had no driver claiming it.  So, I actually found the source code that links the product/vendor code to a driver and edited the prism2sta.c file to add the cod<br />
es in.  I recompiled the modules and reinstalled.  At this point, the interface was recognized.</p>
<p>The next step was to get the kernel to set up the network interface automatically.  On my home network, I have a DHCP server set up, but there are two commands that are needed to turn on the radio and associate with the Access Point.  To get these to be executed automatically when you plug in the card, place the following two commands in /etc/network/interfaces:<br />
 pre-up wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable<br />
 pre-up wlanctl-ng wlan0 lnxreq_autojoin ssid=&#8221;<ssid>&#8221; authtype=opensystem</p>
<p>Once the network is configured, the next step is to install the streaming software.  At slimdevices.com, I downloaded the tarball, rather than the RPM.  After extracting the code, I<br />
 copied it into place and ran the software.  It defaults to using port 9000, but that can be changed in the server interface.  I changed it to port 80, for ease of access.  At the same time, I changed the directory of the music library to point to my collection, once I got it copied to the server.</p>
<p>After getting the software laid out in the right locations, I decided I wanted to add it into the init system, so I needed to have a daemon startup and shutdown script.  It turns out that the one for the sympa mailing list manager worked well for me, after some slight modifications.  After creating the script for the init.d directory, I created the appropriate symbolic links in the rcX.d directories.</p>
<p>There are some last minute details that I am still working out, such as using NFS for native Linux mounting from other machines and Samba for Windows file sharing.  The only other large project yet to conquer is a firewall.  Of course, the Shorewall package will dramatically simplify that project.</p>
<p>In a matter of a couple of days of experimentation, I have set up my old laptop to stream and share my entire music collection to any machine that is on my network, giving me the freedom to listen to my music anywhere in the house or out in the yard, when it finally warms up in Ohio.</ssid></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/wireless-streaming-media-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winmodem, Schwinmodem</title>
		<link>http://www.nosbig.net/winmodem-schwinmodem/</link>
		<comments>http://www.nosbig.net/winmodem-schwinmodem/#comments</comments>
		<pubDate>Wed, 12 Feb 2003 21:20:01 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=62</guid>
		<description><![CDATA[Of course, I had solved this problem once with Mandrake installed, but I was just lazy about getting the modem in this laptop working. Fortunately for me, the internal Winmodem is a Lucent Technologies chipset that just happens to have &#8230; <a href="http://www.nosbig.net/winmodem-schwinmodem/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Of course, I had solved this problem once with Mandrake installed, but I was just lazy about getting the modem in this laptop working.</p>
<p>Fortunately for me, the internal Winmodem is a Lucent Technologies chipset that just happens to have a Linux driver, available at <a HREF="http://www.physcip.uni-stuttgart.de/heby/ltmodem/">http://www.physcip.uni-stuttgart.de/heby/ltmodem/</a>  The package was simple to install, and it works quite well, although I should try to figure out why the driver told me that it is a v.92 modem, or if this is normal with a controllerless modem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/winmodem-schwinmodem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shorewall Problems Solved</title>
		<link>http://www.nosbig.net/shorewall-problems-solved/</link>
		<comments>http://www.nosbig.net/shorewall-problems-solved/#comments</comments>
		<pubDate>Wed, 12 Feb 2003 21:01:21 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=61</guid>
		<description><![CDATA[In my last entry, I was complaining about how I wasn&#8217;t able to get my laptop to work either at home or at school. My major problem was dealing with the issue of how to treat my wireless and wired &#8230; <a href="http://www.nosbig.net/shorewall-problems-solved/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In my last entry, I was complaining about how I wasn&#8217;t able to get my laptop to work either at home or at school.</p>
<p>My major problem was dealing with the issue of how to treat my wireless and wired ethernet cards (Wifi used at school and wired at home) differently for the purposes of Shorewall.  It was not until reading more documentation on the Shorewall website was I able to figure out the hosts file and get my laptop to understand that the home zone was a subset of the net zone.</p>
<p>I decided to treat North Central as a hostile environment, though it would be less hostile than hanging this machine off a cable modem directly.  Me, being the paranoid security nut that I am, chose the more secure environment.  Nearly everything is closed off, particularly anything inbound not directly related to my browsing or other activities.</p>
<p>For home, I have opened up SSH and FTP (inbound and outbound), the two services I regularly use on my home network.  If I need more, I can always add rules or take down the firewall temporarily.  Of course, the same outbound connections are enabled so that I can connect to the internet using my desktop machine as a gateway.</p>
<p>Now that I have a better understanding of Shorewall and its internals, I have decided that it is very cool.  It does a great job of blocking unusual traffic and common spoofed traffic while making it easy to configure what traffic should go through.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/shorewall-problems-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems with Shorewall</title>
		<link>http://www.nosbig.net/problems-with-shorewall/</link>
		<comments>http://www.nosbig.net/problems-with-shorewall/#comments</comments>
		<pubDate>Tue, 11 Feb 2003 02:14:10 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=60</guid>
		<description><![CDATA[Over the last few days, I have been struggling with getting Shorewall to open up the holes I want in the firewall on my laptop so that I can browse the web, use AIM, and such. Defiant is behind a &#8230; <a href="http://www.nosbig.net/problems-with-shorewall/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Over the last few days, I have been struggling with getting Shorewall to open up the holes I want in the firewall on my laptop so that I can browse the web, use AIM, and such.  Defiant is behind a NAT&#8217;ed firewall at North Central, but I would prefer to not have to run without my own firewall.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/problems-with-shorewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New TechTV Chat</title>
		<link>http://www.nosbig.net/new-techtv-chat/</link>
		<comments>http://www.nosbig.net/new-techtv-chat/#comments</comments>
		<pubDate>Thu, 06 Feb 2003 01:21:10 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=59</guid>
		<description><![CDATA[TechTV just yesterday released the newest iteration of their chat, and it is quite a nice system. They decided to run Jabber on an in-house server. This is likely a wise decision due to their problem in the past with &#8230; <a href="http://www.nosbig.net/new-techtv-chat/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>TechTV just yesterday released the newest iteration of their chat, and it is quite a nice system.  They decided to run Jabber on an in-house server.  This is likely a wise decision due to their problem in the past with proprietary chat services.</p>
<p>The default and preferred method of connecting to their chat system is through their Java Jabber applet, but it is possible to connect to their server with a standard client.  I will not reveal those details here, in case TechTV does not want those released, but it makes it nice to use TKabber under Linux, where Java support can get a little hairy if not set up properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/new-techtv-chat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fetchmail Problems</title>
		<link>http://www.nosbig.net/fetchmail-problems/</link>
		<comments>http://www.nosbig.net/fetchmail-problems/#comments</comments>
		<pubDate>Tue, 10 Dec 2002 19:45:51 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=57</guid>
		<description><![CDATA[Over the last few days, I have been having a problem with receiving my mail via fetchmail, but other methods were working fine. Since I was able to receive other sorts of internet data, web pages, IM, and the like. &#8230; <a href="http://www.nosbig.net/fetchmail-problems/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Over the last few days, I have been having a problem with receiving my mail via fetchmail, but other methods were working fine.  Since I was able to receive other sorts of internet data, web pages, IM, and the like.</p>
<p>Just a few minutes ago, I figured out the problem.  All programs attempting to connect to the &#8216;lo&#8217; interface (all my local servers) were unable to work because both my eth0 and lo interfaces were non-functional&#8230;  Something knocked out my /etc/network/interfaces files, which is the Debian method for configuring all the network interfaces (except ppp).  I recreated the file, and issued an &#8216;ifup eth0&#8242; and &#8216;ifup lo&#8217;, and things seem to be working again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/fetchmail-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

