<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="http://emi.extprovider.com/styles/rss.css" type="text/css"?>
<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"
>
 <channel>
  <title>Myside&#039;s Spew</title>
  <link>http://myspew.com</link>
  <description> My blog of spontaneous combustible spew - land where drunk cows swim and home to my daily hand... 
</description>
  <pubDate>Fri, 03 Sep 2010 16:13:56 -0500</pubDate>
  <generator>http://www.lifetype.net</generator>
    <item>
   <title>HOWTO: Securely Setup an NTP (The Network Time Protocol) Server - Simplified</title>
   <description>
    &lt;p&gt;
This documentation assumes you have a compiled and installed NTP server version of 4.2.6 or newer.
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	NTP is a protocol designed to synchronize the clocks of computers over a
	network. NTP version 3 is an internet draft standard, formalized in &lt;a href=&quot;http://www.eecis.udel.edu/%7Emills/database/rfc/rfc1305/&quot;&gt;RFC 1305&lt;/a&gt;.
	NTP version 4 is a significant revision of the NTP standard, and is the
	current development version, but has not been formalized in an RFC. Simple NTP
	(SNTP) version 4 is described in &lt;a href=&quot;http://www.eecis.udel.edu/%7Emills/database/rfc/rfc2030.txt&quot;&gt;RFC 2030&lt;/a&gt;. - [&lt;a href=&quot;http://www.ntp.org/&quot; target=&quot;_blank&quot; title=&quot;NTP: The Network Time Protocol&quot;&gt;source&lt;/a&gt;]
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
The first two steps to begin the installation is to setup a NTP log file and a statsdir which will hold the servers log messages and time computations acquired from external stratum time servers.&amp;nbsp; Here is an example of the first two lines in a ntp.conf (/etc/ntp.conf) file:
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	logfile /var/log/ntpd&lt;br /&gt;
	statsdir /var/log/ntpstats/
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
When compiling by source, you may create the log file by issuing the command &amp;quot;touch /var/log/ntpd&amp;quot; and create the directory which will hold your NTPD statistics such as peer communications with the command &amp;quot;mkdir /var/log/ntpstats&amp;quot;.
&lt;/p&gt;
&lt;p&gt;
Now we want to keep good track of NTP server communication to better help your server synchronize its internal time clock.&amp;nbsp; We will add the following four lines for this:
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	statistics loopstats peerstats clockstats&lt;br /&gt;
	filegen loopstats file loopstats type day enable&lt;br /&gt;
	filegen peerstats file peerstats type day enable&lt;br /&gt;
	filegen clockstats file clockstats type day enable
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
Next we will list the NTP servers you would like to communicate with in order to synchronize your system&#039;s time in conjunction with.&amp;nbsp; These servers should only be used on a proven and sturdy machine:
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	server time.nist.gov&lt;br /&gt;
	server time-a.nist.gov&lt;br /&gt;
	server time-b.nist.gov&lt;br /&gt;
	server utcnist.colorado.edu&lt;br /&gt;
	server utcnist2.colorado.edu
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
At this point you will want to secure your NTP server.&amp;nbsp; To do so we will start by denying all traffic in or out of this communication medium:
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	restrict default ignore
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
Now in order to negotiate synchronization to the time servers listed above, you will want to allow your server permission to query these hosts by resolving the IP addresses and granting query actions:
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	# time.nist.gov&lt;br /&gt;
	restrict 192.43.244.18 mask 255.255.255.245 nomodify notrap noquery&lt;br /&gt;
	# time-a.nist.gov&lt;br /&gt;
	restrict 129.6.15.28 mask 255.255.255.245 nomodify notrap noquery&lt;br /&gt;
	# time-b.nist.gov&lt;br /&gt;
	restrict 129.6.15.29 mask 255.255.255.245 nomodify notrap noquery&lt;br /&gt;
	# utcnist.colorado.edu&lt;br /&gt;
	restrict 128.138.140.44 mask 255.255.255.245 nomodify notrap noquery&lt;br /&gt;
	# utcnist2.colorado.edu&lt;br /&gt;
	restrict 128.138.188.172 mask 255.255.255.245 nomodify notrap noquery
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
In order to allow local or remote hosts access to your time server after it has been properly synced to your correct time, you may add the following rule to respond to queries, with this example, on a class C network:
&lt;/p&gt;
&lt;blockquote&gt;
	restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
&lt;/blockquote&gt;
&lt;p&gt;
Most importantly, do not forget to assign your drift file and directory:
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	driftfile /var/lib/ntp/drift
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
You may create this using: &amp;quot;mkdir /var/lib/ntp; touch /var/lib/ntp/drift&amp;quot;.&amp;nbsp; Note that if you decide to run NTPD under a non root user, this directory must have full write access to your alternative username, as with the ntpd and statsdir file and directory mentioned above.
&lt;/p&gt;
&lt;p&gt;
I will touch on two ntpd command switches that may come in usefull.
&lt;/p&gt;
&lt;p&gt;
The &amp;quot;-g&amp;quot; switch will allow your NTPD process to continue running if your internal time clock is off by more than 1000 seconds.&amp;nbsp; If this switch is not present and your time is stewed &amp;amp; spewed, the process will die.&amp;nbsp; The &amp;quot;-I eth0&amp;quot; switch, as an example, allows you to bind NTPD to a physical network interface.&amp;nbsp; The interface may be eth0, eth1, lo, etc.
&lt;/p&gt;
&lt;p&gt;
The configuration above should get you headed in the right direction to set up a network time server and client. 
&lt;/p&gt;
   </description>
   <link>http://myspew.com/projects/howto-setup-ntp-the-network-time-protocol-server</link>
   <comments>http://myspew.com/projects/howto-setup-ntp-the-network-time-protocol-server</comments>
   <guid>http://myspew.com/projects/howto-setup-ntp-the-network-time-protocol-server</guid>
      <dc:creator>myside</dc:creator>
      
    <category>Software</category>
      
    <category>Projects</category>
         <pubDate>Tue, 31 Aug 2010 02:15:02 -0500</pubDate>
   <source url="http://emi.extprovider.com/rss.php?blogId=1&amp;profile=rss20">Myside&#039;s Spew</source>
     </item>
    <item>
   <title>Verbatim SOHO NAS (96436) Firmware Update</title>
   <description>
    &lt;p&gt;
In relation to [&lt;a href=&quot;http://myspew.com/projects/500gb-soho-nas-desktop-hard-drive&quot; target=&quot;_blank&quot; title=&quot;Verbatim 500GB SOHO NAS (96436) Reviewed&quot;&gt;Verbatim 500GB SOHO NAS (96436) Reviewed&lt;/a&gt;] I was able to find a firmware update from a competing company with the version &lt;span&gt;2.3.2.IB.2.RS.1.&amp;nbsp; The firmware download page for the IB-NAS1000/2000 product, which will install successfully with the Verbatim 500GB SOHO NAS (96436) is located [&lt;a href=&quot;http://www.naspoint.biz/en/pages/service/driver.php&quot; target=&quot;_blank&quot; title=&quot;Driver download&quot;&gt;here&lt;/a&gt;].&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
Using this firmware release also allows you to install an internet radio stream ripper, an ssh server using dropbear, and a UPnP media server called Twonky Server.&amp;nbsp; These additional applications are available from the link listed for the firmware.
&lt;/p&gt;
&lt;p&gt;
You should note however that you will need general Unix skills and make a modification to the Twonky Server init script to start up this server.&amp;nbsp; The UPnP server is not a current version, however purchasing a license is still possible as Twonky considers this build a very stable and functional version.&amp;nbsp; You will have a free 30 day trial.&amp;nbsp; Once you start Twonky Server through SSH, its interface will be available on port 9000.
&lt;/p&gt;
&lt;p&gt;
Twonky, including dropbear (SSH server) and the Internet stream ripper is installed by using an applications directory in your public share to place the installers and in addition you will need to do a clean reboot for finalization of the applications.&amp;nbsp; Do read the instructions thoroughly so you don&#039;t kill your NAS. 
&lt;/p&gt;
   </description>
   <link>http://myspew.com/software/verbatim-soho-nas-firmware</link>
   <comments>http://myspew.com/software/verbatim-soho-nas-firmware</comments>
   <guid>http://myspew.com/software/verbatim-soho-nas-firmware</guid>
      <dc:creator>myside</dc:creator>
      
    <category>Software</category>
         <pubDate>Sun, 08 Aug 2010 09:10:32 -0500</pubDate>
   <source url="http://emi.extprovider.com/rss.php?blogId=1&amp;profile=rss20">Myside&#039;s Spew</source>
     </item>
    <item>
   <title>20 GIS &amp;amp; Geocaching Must Have Software Applications</title>
   <description>
    &lt;p&gt;
[&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/45777/&quot; title=&quot;GPX Downloader&quot;&gt;GPX Downloader&lt;/a&gt;]  Firefox addon to save information such as coordinates, description, hints and logs into a GPX file that can be sent to your GPS unit.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://minimap.spatialviews.com/&quot; title=&quot;Minimap Sidebar&quot;&gt;Minimap Sidebar&lt;/a&gt;]  Firefox Addon: The Minimap Addon gives you a suite of built-in maps and mapping tools for your web browser. Drag and Drop addresses or address links you find on web pages to view their location in the Map Sidebar, or by manually adding locations. Preview addresses from within any webpage using the Map Panel and get larger scale maps with the Map Tab. Import/Export KML, GPX, minimap xml file, CSV (export only). View traffic Info, drag and drop KML files, local search, Google, Yahoo! and Live Local directions, view in Google Earth, Tagzania, Platial, Geourl and many more. Address/Location points are stored locally for later use. Geodiscovery reveals geoURL&amp;iacute;s or geotags as you browse, with microformat support available in Firefox 3 (Adr and Geo).
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.smittyware.com/&quot; title=&quot;CacheMate&quot;&gt;CacheMate&lt;/a&gt;]  CacheMate&amp;trade; is a database for tracking GPS cache hunts. You can store information about caches or benchmarks, decode hints, and transfer data to and from other software and devices. - Palm OS, Pocket PC, Windows Smartphone, Google Android
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.logicweave.com/cachestats.html&quot; title=&quot;Cache Stats&quot;&gt;Cache Stats&lt;/a&gt;]  If you like to keep tabs on your geocaching statistics, you&#039;ll love CacheStats. How has your find rate been holding up over the years?  What are your longest streaks?  Want to see what it will take to reach your end-of-year goal?  CacheStats analyzes your &amp;quot;My Finds&amp;quot; pocket query to find out all this  and more.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.basicgps.co.uk/&quot; title=&quot;BASICgps&quot;&gt;BASICgps&lt;/a&gt;]  Free Geocaching application for Windows Mobile.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.cacheberry.com/&quot; title=&quot;CacheBerry&quot;&gt;CacheBerry&lt;/a&gt;]  CacheBerry (GPX) &amp;ndash; Geocaching Specific - BlackBerry Shareware: View, search &amp;amp; manage Pocket Queries/GPX files.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.plkr.org/&quot; title=&quot;Plucker&quot;&gt;Plucker&lt;/a&gt;]  Plucker is an offline Web and free eBook reader for Palm OS&amp;reg; based handheld devices, Windows Mobile (PocketPC) devices and other handheld PDAs. Plucker contains POSIX tools, scripts and &amp;quot;conduits&amp;quot; which work on UNIX, Linux, Microsoft Windows and Apple OS X. These let you decide exactly what part of the World Wide Web you&#039;d like to convert for reading on your PDA. These web pages are then processed, compressed, and transferred to the PDA for viewing by the Plucker viewer.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.isilo.com/&quot; title=&quot;iSilo&quot;&gt;iSilo&lt;/a&gt;]  iSilo&amp;trade; is a highly versatile document / ebook reader available on more platforms than any other reader. The supported platforms include iPhone/iPod touch, Android&amp;trade;, BlackBerry&amp;reg; Touch, BlackBerry&amp;reg;, Palm OS&amp;reg;, Pocket PC, Windows Mobile Smartphone, Symbian S60 3rd Edition, Symbian Series 60, Symbian UIQ 3, Symbian UIQ, Symbian Series 80, and Windows&amp;reg; CE Handheld PC handhelds, as well as for Windows&amp;reg; and Mac OS X computers. You can find thousands of  ready-made documents downloadable immediately for reading with iSilo&amp;trade; or you can create your own documents from HTML content using iSiloX.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.cetusgps.dk/&quot; title=&quot;Cetus GPS&quot;&gt;Cetus GPS&lt;/a&gt;]  (LOC) - Free PalmOS application that interfaces with your GPS through a serial port (or connected GPS). It can read waypoint files in LOC format.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://strandberg.org/gpxview/&quot; title=&quot;GPXView&quot;&gt;GPXView&lt;/a&gt;]  (GPX) - Donateware application for managing GPX files on PocketPC 2002 or later.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.geocaching.com/mobile/default.aspx&quot; title=&quot;Geocache Navigator&quot;&gt;Geocache Navigator&lt;/a&gt;]  Geocache GPS software by Trimble
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://sourceforge.net/projects/viking/&quot; title=&quot;Viking&quot;&gt;Viking&lt;/a&gt;]  (GPX) - A free/open source program to manage GPS data. You can import and plot tracks and waypoints, show Terraserver maps under it, add coordinate lines, make new tracks, waypoints, and more.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.ncc.up.pt/gpsman/&quot; title=&quot;GPS Manager&quot;&gt;GPS Manager&lt;/a&gt;]  (GPX) - A graphical manager of GPS data that makes possible the preparation, inspection and manipulation of GPS data in a friendly environment. GPSMan supports communication and real-time logging with Garmin, Lowrance and Magellan receivers and accepts real-time logging information in NMEA 0183 from any GPS receiver. GPSMan can also be used in command mode (with no graphical interface)
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.magellangps.com/products/map.asp?tab=0&amp;amp;PRODID=1717&quot; title=&quot;MapSend Lite&quot;&gt;MapSend Lite&lt;/a&gt;]  (GPX/LOC) is a free application from Magellan that now has built-in geocaching functionality.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://gsak.net/&quot; title=&quot;GSAK&quot;&gt;GSAK&lt;/a&gt;]  (GPX/LOC) - All in one application that allows you to manage GPX/LOC files, upload to your GPS, and convert to various other formats. Uses GPSBabel as the back end.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.gpsbabel.org/&quot; title=&quot;GPSBabel&quot;&gt;GPSBabel&lt;/a&gt;]  (GPX/LOC/KML) - A free console-based application for converting LOC and GPX to various other formats. Source code available.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.gpxspinner.com/&quot; title=&quot;GPX Spinner&quot;&gt;GPX Spinner&lt;/a&gt;]  (GPX) - Geocaching Specific - Shareware application that can convert GPX files to iSilo and Plucker format.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://earth.google.com/&quot; title=&quot;Google Earth&quot;&gt;Google Earth&lt;/a&gt;]  (GPX/KML) - Google Earth can overlay the travels of trackable items on geocaching.com. Google Earth also uses GPS Babel to allow Premium Members the ability to drag a Pocket Query GPX file on to the application to overlay geocaches.
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.easygps.com/&quot; title=&quot;EasyGPS&quot;&gt;EasyGPS&lt;/a&gt;]  (GPX/LOC) - A free application for managing both LOC and GPX file types
&lt;/p&gt;
&lt;p&gt;
[&lt;a href=&quot;http://www.clayjar.com/&quot; title=&quot;ClayJar Watcher&quot;&gt;ClayJar Watcher&lt;/a&gt;]  (GPX) - Geocaching Specific - Freeware application that helps you manage your Pocket Query GPX files
&lt;/p&gt;
   </description>
   <link>http://myspew.com/journeys/20-gis-geocaching-must-have-software-applications</link>
   <comments>http://myspew.com/journeys/20-gis-geocaching-must-have-software-applications</comments>
   <guid>http://myspew.com/journeys/20-gis-geocaching-must-have-software-applications</guid>
      <dc:creator>myside</dc:creator>
      
    <category>Software</category>
      
    <category>Journeys</category>
         <pubDate>Thu, 22 Jul 2010 19:45:21 -0500</pubDate>
   <source url="http://emi.extprovider.com/rss.php?blogId=1&amp;profile=rss20">Myside&#039;s Spew</source>
     </item>
   </channel>
</rss>