<?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>KCBUG.org</title>
	<atom:link href="http://www.kcbug.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.kcbug.org</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 03 Sep 2008 05:54:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Visualize Remote Host Key Fingerprint OpenSSH</title>
		<link>http://www.kcbug.org/?p=18</link>
		<comments>http://www.kcbug.org/?p=18#comments</comments>
		<pubDate>Wed, 03 Sep 2008 05:54:24 +0000</pubDate>
		<dc:creator>dj_goku</dc:creator>
				<category><![CDATA[HowTos]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=18</guid>
		<description><![CDATA[You need to be running a OpenBSD 4.4-current snapshot to get this or possibly even compiling OpenSSH-5.1 from source. But edit per user ssh config or /etc/ssh/ssh_config and add this line:  VisualHostKey yes Then ssh to some remote box or even locally (you should see something like below): I though it was pretty neat.]]></description>
			<content:encoded><![CDATA[<p>You need to be running a OpenBSD 4.4-current snapshot to get this or possibly even compiling OpenSSH-5.1 from source.</p>
<p>But edit per user ssh config or /etc/ssh/ssh_config and add this line: </p>
<blockquote><p>VisualHostKey yes</p></blockquote>
<p>Then ssh to some remote box or even locally (you should see something like below):</p>
<p><img src="http://www.kcbug.org/images/ssh_visualize_remote_host_key_fingerprint.png" alt="OpenSSH Visualize Remote Host Key Fingerprint" /></p>
<p>I though it was pretty neat. <img src='http://www.kcbug.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=18</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPA/WPA2 Support in OpenBSD</title>
		<link>http://www.kcbug.org/?p=15</link>
		<comments>http://www.kcbug.org/?p=15#comments</comments>
		<pubDate>Wed, 03 Sep 2008 05:30:09 +0000</pubDate>
		<dc:creator>dj_goku</dc:creator>
				<category><![CDATA[HowTos]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=15</guid>
		<description><![CDATA[I wasn&#8217;t able to get WPA/WPA2 to work in OpenBSD 4.3-current in April of this year (support for WPA was added in mid April). So I thought it was too early and might be a little buggy still, and would wait until after OpenBSD 4.3 was released. I have been thinking more about wireless security [...]]]></description>
			<content:encoded><![CDATA[<p>I wasn&#8217;t able to get WPA/WPA2 to work in OpenBSD 4.3-current in April of this year (support for WPA was added in mid April). So I thought it was too early and might be a little buggy still, and would wait until after OpenBSD 4.3 was released.</p>
<p>I have been thinking more about wireless security lately and thought I would give it another try (since I was using WEP). Upon installing and getting to the same point and failing like I did in April. I thought I would start messing with the options for ifconfig. The offending option was &#8216;wpaakms&#8217; which defaults to&#8217;psk,802.1x&#8217; and seems that it uses 802.1x (which uses an external server for authentication) by default. So after setting &#8216;wpaakms psk&#8217; fixed all my problems, because I just want to enter a password/pass phrase.</p>
<p>If you have a supported card and are running a current snapshot follow the below example that I used for my ral supported card::</p>
<p># /etc/hostname.ral0<br />
inet 10.0.2.1 255.255.255.0 NONE media autoselect \<br />
mode 11g nwid obsd-wpa wpa wpapsk $(wpa-psk obsd-wpa super_secret_password_here) \<br />
wpaakms psk mediaopt hostap<br />
 </p>
<p># ifconfig ral</p>
<p>ral0: flags=8843&lt;UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST&gt; mtu 1500<br />
        lladdr 00:0e:2e:ff:ce:67<br />
        groups: wlan<br />
        media: IEEE802.11 autoselect mode 11g hostap<br />
        status: active<br />
        ieee80211: nwid obsd-wpa chan 1 bssid 00:0e:2e:ff:ce:67 wpapsk 0xcac6fd3605965ddab2d5e90bd75edaa35ac23e5c52d840a449cb1677ebcd9923 wpaprotos wpa1,wpa2 wpaakms psk wpaciphers tkip,ccmp wpagroupcipher tkip 100dBm<br />
        inet6 fe80::20e:2eff:feff:ce67%ral0 prefixlen 64 scopeid 0&#215;2<br />
        inet 10.0.2.1 netmask 0xffffff00 broadcast 10.0.2.255</p>
<p>You will also need to setup dhcpd, and PF to get working, but after that all you need to do with your device is scan and enter &#8216;super_secret_password_here&#8217; and you&#8217;ll be surfing in no time at all.</p>
<p>Initial WPA/WPA2 stuff on undeadly.org: <a title="Undealy.org" href="http://undeadly.org/cgi?action=article&amp;sid=20080416195151" target="_blank">http://undeadly.org/cgi?action=article&amp;sid=20080416195151</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>August 2008 Meeting &#8211; 2008-08-13</title>
		<link>http://www.kcbug.org/?p=13</link>
		<comments>http://www.kcbug.org/?p=13#comments</comments>
		<pubDate>Wed, 13 Aug 2008 03:44:16 +0000</pubDate>
		<dc:creator>dj_goku</dc:creator>
				<category><![CDATA[Meetings]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=13</guid>
		<description><![CDATA[Location: http://tinyurl.com/228qyo Room: 310 TIme: 6PM &#8211; 9PM More info below: http://groups.google.com/group/kcbug/browse_thread/thread/78e88c1de46b5095]]></description>
			<content:encoded><![CDATA[<p>Location: <a href="http://tinyurl.com/228qyo" target="_blank">http://tinyurl.com/228qyo</a><br />
Room: 310<br />
TIme: 6PM &#8211; 9PM</p>
<p>More info below:</p>
<p><a href="http://groups.google.com/group/kcbug/browse_thread/thread/78e88c1de46b5095" target="_blank">http://groups.google.com/group/kcbug/browse_thread/thread/78e88c1de46b5095</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meeting &#8212; April 9th, 2008</title>
		<link>http://www.kcbug.org/?p=12</link>
		<comments>http://www.kcbug.org/?p=12#comments</comments>
		<pubDate>Mon, 07 Apr 2008 16:18:55 +0000</pubDate>
		<dc:creator>dj_goku</dc:creator>
				<category><![CDATA[Meetings]]></category>
		<category><![CDATA[kcbug]]></category>
		<category><![CDATA[meeting]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=12</guid>
		<description><![CDATA[The meeting is on a Wednesday (in 2 days) from 6PM &#8211; 9PM at the downtown Kansas City Public Library in meeting room 310 (upstairs on the third floor). Hopefully this new room will be more comfortable than the Plaza Library. Topics/discussions are open.]]></description>
			<content:encoded><![CDATA[<p>The meeting is on a Wednesday (in 2 days) from 6PM &#8211; 9PM at the downtown <a title="Kansas City Public Library" href="http://tinyurl.com/228qyo" target="_blank">Kansas City Public Library</a> in meeting room 310 (upstairs on the third floor). Hopefully this new room will be more comfortable than the Plaza Library. Topics/discussions are open.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>March Meeting Notes</title>
		<link>http://www.kcbug.org/?p=10</link>
		<comments>http://www.kcbug.org/?p=10#comments</comments>
		<pubDate>Mon, 17 Mar 2008 06:17:24 +0000</pubDate>
		<dc:creator>dj_goku</dc:creator>
				<category><![CDATA[Meetings]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=10</guid>
		<description><![CDATA[It was funny, I seen a couple KCLUGers walking to the library as I was pulling into the parking garage. I was thinking they were coming to the KCBUG meeting. Well it turns out the Commodore 64 User Group was having a meeting (or so they thought). In the end, we let them have the meeting [...]]]></description>
			<content:encoded><![CDATA[<p>It was funny, I seen a couple KCLUGers walking to the library as I was pulling into the parking garage. I was thinking they were coming to the KCBUG meeting. Well it turns out the Commodore 64 User Group was having a meeting (or so they thought). In the end, we let them have the meeting room, while Noah and I found another place. Notes: 
<ul>
<li>chroot Apache (OpenBSD)</li>
<li>troubleshooting applications in the jail</li>
<li>moving the meeting location</li>
<li>prior jobs</li>
</ul>
<p>Please watch this blog and the mailing for updates to meeting location change. See you next month. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KCBUG Meeting &#8212; February 14, 2008</title>
		<link>http://www.kcbug.org/?p=9</link>
		<comments>http://www.kcbug.org/?p=9#comments</comments>
		<pubDate>Sat, 19 Jan 2008 10:07:41 +0000</pubDate>
		<dc:creator>dj_goku</dc:creator>
				<category><![CDATA[Meetings]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=9</guid>
		<description><![CDATA[The meeting will be at the original meeting place, and also the same time 6PM &#8211; 8:45PM. I am not yet sure what topic(s) I will speak about if at all. This day being a special one for some members the turn out will probably be lower, but I will still come!]]></description>
			<content:encoded><![CDATA[<p>The meeting will be at the original meeting <a href="http://tinyurl.com/2ssd33">place</a>, and also the same time 6PM &#8211; 8:45PM. I am not yet sure what topic(s) I will speak about if at all. This day being a special one for some members the turn out will probably be lower, but I will still come!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=9</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Official KCBUG Meeting &#8212; January 9th 2008</title>
		<link>http://www.kcbug.org/?p=8</link>
		<comments>http://www.kcbug.org/?p=8#comments</comments>
		<pubDate>Fri, 21 Dec 2007 01:27:28 +0000</pubDate>
		<dc:creator>dj_goku</dc:creator>
				<category><![CDATA[Meetings]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=8</guid>
		<description><![CDATA[It is official, meeting is 2008-01-09 at 6PM-8:45PM at the Plaza Library. Parking is near (just south of the library about 500ft or so) and is free. Read the first link for more information.]]></description>
			<content:encoded><![CDATA[<p>It is <a href="http://groups.google.com/group/kcbug/browse_thread/thread/e6d98758845de8e">official</a>, meeting is 2008-01-09 at 6PM-8:45PM at the <a href="http://tinyurl.com/2ssd33">Plaza Library</a>. Parking is near (just south of the library about 500ft or so) and is free. Read the first link for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=8</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Meeting To Begin The New Year</title>
		<link>http://www.kcbug.org/?p=7</link>
		<comments>http://www.kcbug.org/?p=7#comments</comments>
		<pubDate>Thu, 13 Dec 2007 07:24:49 +0000</pubDate>
		<dc:creator>dj_goku</dc:creator>
				<category><![CDATA[Meetings]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=7</guid>
		<description><![CDATA[I would like to have a meeting on the 9th of January. I haven&#8217;t come up with a meeting location and am open to suggestion (place with wifi, preferable) for the first one. If no suggestion are made I will setup (a week before the meeting date) a place near the plaza +/- 5 miles. [...]]]></description>
			<content:encoded><![CDATA[<p>I would like to have a <a href="http://groups.google.com/group/kcbug/browse_thread/thread/99750719bbfbb5a3">meeting</a> on the 9th of January. I haven&#8217;t come up with a meeting location and am open to suggestion (place with wifi, preferable) for the first one. If no suggestion are made I will setup (a week before the meeting date) a place near the plaza +/- 5 miles. I was thinking about discussing possible future meeting locations and do a little demo of yaifo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We&#8217;re Online!</title>
		<link>http://www.kcbug.org/?p=3</link>
		<comments>http://www.kcbug.org/?p=3#comments</comments>
		<pubDate>Mon, 10 Sep 2007 05:18:40 +0000</pubDate>
		<dc:creator>Eric Biven</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.kcbug.org/?p=3</guid>
		<description><![CDATA[KCBUG.org is now up and running. First, we&#8217;d like to welcome you. Right now we&#8217;re only two members strong, but we&#8217;re hoping you&#8217;ll join as well. Click the &#8220;Find Us&#8221; link above to see a list of ways to get in touch. Membership is free, there are no requirements other than a curiosity about what [...]]]></description>
			<content:encoded><![CDATA[<p>KCBUG.org is now up and running.</p>
<p>First, we&#8217;d like to welcome you.  Right now we&#8217;re only two members strong, but we&#8217;re hoping you&#8217;ll join as well.  Click the &#8220;Find Us&#8221; link above to see a list of ways to get in touch.</p>
<p>Membership is free, there are no requirements other than a curiosity about what BSD is and how to make it work for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kcbug.org/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
