<?xml version="1.0"?>
<rss version="2.0">

<channel>
	<title>Planet SysAdmin</title>
	<link>http://planetsysadmin.com/</link>
	<language>en</language>
	<description>Planet SysAdmin - http://planetsysadmin.com/</description>

<item>
	<title>Chris Siebenmann: The Solaris 10 NFS server's caching of filesystem access permissions</title>
	<guid>tag:cspace@cks.mef.org,2009-03-24:/blog/solaris/SolarisNFSAuthCaching</guid>
	<link>http://utcc.utoronto.ca/~cks/space/blog/solaris/SolarisNFSAuthCaching</link>
	<description>&lt;div class=&quot;wikitext&quot;&gt;&lt;h2&gt;The Solaris 10 NFS server's caching of filesystem access permissions&lt;/h2&gt;

&lt;p&gt;Earlier, I &lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/unix/NFSServerSecurity&quot;&gt;mentioned&lt;/a&gt; that modern NFS
servers don't have a comprehensive list of NFS filesystem access
permissions stored in the kernel; instead they have a cache and
some sort of upcall mechanism where the kernel will ask &lt;code&gt;mountd&lt;/code&gt;
if a given client has access to a given filesystem if necessary.
I've recently been investigating how Solaris 10 handles this, so
here's what I know of the kernel authorization cache:&lt;/p&gt;

&lt;p&gt;First, the Solaris kernel does cache negative entries (this IP address
is not allowed to access this filesystem at all). This turns out to be
fairly dangerous, because &lt;strong&gt;the cache has no timeout&lt;/strong&gt;. If a negative
entry is ever checked and cached, it will stay there until you flush
the filesystem's cache entirely.&lt;/p&gt;

&lt;p&gt;(The same is true of positive entries that you want to get rid of,
either because you've removed a client's authorization or because you
want to change how the filesystem is exported to it; part of the cache
entry is whether the client has read-write or read-only access, and
whether root is remapped or not. Or just because a machine has changed
IP address and you want to get rid of any permissions that the old IP
address has.)&lt;/p&gt;

&lt;p&gt;The overall cache has no size limit at all, beyond a general one set
by kernel memory limits. It will get shrunk if the kernel needs to
reclaim memory, but even then no entry less than 60 minutes old will
be removed. In our environment, such cache reclaims appear to be
vanishingly uncommon (ie, completely unseen), based on kernel stats.&lt;/p&gt;

&lt;p&gt;There is a separate auth cache for each exported filesystem. As far as
I can tell, a filesystem's auth cache is discarded entirely if it is
unshared or reshared, including if it is reshared with the same sharing
settings. It otherwise effectively never expires entries.  Flushing a
filesystem's auth cache causes every client to be revalidated the next
time that they make an NFS request to that filesystem.&lt;/p&gt;

&lt;p&gt;Because all of this is only in kernel memory, all auth caches are
lost if the system reboots. Thus on fileserver reboot all clients are
revalidated for all filesystems on a rolling basis, as each client tries
to do NFS to each filesystem that they have mounted. This may provoke a
storm of revalidations after the reboot of a popular fileserver with a
bunch of clients.&lt;/p&gt;

&lt;p&gt;The cache is populated by upcalling to &lt;code&gt;mountd&lt;/code&gt; on hopefully infrequent
demand (through mechanisms that are beyond the scope of this entry). If
&lt;code&gt;mountd&lt;/code&gt; answers properly its answer of the moment, whatever that is,
gets cached. There are presumably timeout and load limits on these
upcalls, but I don't understand (Open)Solaris code well enough yet to
find them. (I hope that more than one upcall can be in progress at
once.)&lt;/p&gt;

&lt;h3&gt;Sidebar: Getting cache stats&lt;/h3&gt;

&lt;p&gt;This is for the benefit of people (such as me) poking around with
&lt;code&gt;mdb -k&lt;/code&gt;. The internal NFS server auth cache stats are in
three variables: &lt;code&gt;nfsauth_cache_hit&lt;/code&gt;, &lt;code&gt;nfsauth_cache_miss&lt;/code&gt;, and
&lt;code&gt;nfsauth_cache_reclaim&lt;/code&gt;, which counts how many times a reclaim
has been done (but not how many entries have been reclaimed).
To see them (in hex) one uses the &lt;code&gt;mdb&lt;/code&gt; command:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;&lt;code&gt;nfsauth_cache_hit ::print&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The code for most of this is in &lt;code&gt;nfs_auth.c&lt;/code&gt; in
usr/src/uts/common/fs/nfs; see also &lt;code&gt;nfs_export.c&lt;/code&gt;, which has the
overall NFS server export list.&lt;/p&gt;
&lt;/div&gt;</description>
	<pubDate>Tue, 16 Mar 2010 05:06:51 +0000</pubDate>
</item>
<item>
	<title>Brian Jones: Quick Loghetti Update</title>
	<guid>http://www.protocolostomy.com/?p=726</guid>
	<link>http://feedproxy.google.com/~r/MusingsOfAnAnonymousGeek/~3/Y1EJTqbBPyU/</link>
	<description>&lt;p&gt;&lt;strong&gt;For the familiar and impatient&lt;/strong&gt;: Loghetti has moved to github and has been updated. An official release hasn&amp;#8217;t been made yet, but cloning the repository and installing argparse will result in perfectly usable code. More on the way.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;For the uninitiated,&lt;/strong&gt; &lt;strong&gt;Loghetti is&lt;/strong&gt; a command line log sifting/reporting tool written in Python to parse Apache Combined Format log files. It was initially released in late 2008 on Google Code. I used loghetti for my own work, which involved sifting log files with tens of millions of lines. Needless to say, it needed to be reasonably fast, and give me a decent amount of control over the data returned. It also had to be easy to use; just because it&amp;#8217;s fast doesn&amp;#8217;t mean I want to retype my command because of confusing options or the like.&lt;/p&gt;
&lt;p&gt;So, loghetti is reasonably fast, and reasonably easy, and gives a reasonable amount of control to the end user. It&amp;#8217;s certainly a heckuva lot easier than writing regular expressions into &amp;#8216;grep&amp;#8217; and doing the ol&amp;#8217; &amp;#8216;press &amp;amp; pray&amp;#8217;.&lt;/p&gt;
&lt;p&gt;Loghetti suffered a bit over the last several months because one of its dependencies broke backward compatibility with earlier releases. Such is the nature of development. Last night I finally got to crack open the code for loghetti again, and was able to put a solution together in an hour or so, which surprised me.&lt;/p&gt;
&lt;p&gt;I was able to completely replace &lt;a href=&quot;http://www.doughellmann.com/&quot;&gt;Doug&lt;/a&gt; Hellmann&amp;#8217;s &lt;a href=&quot;http://www.doughellmann.com/projects/CommandLineApp/&quot;&gt;CommandLineApp&lt;/a&gt; with argparse very, very quickly. Of course, CommandLineApp was taking on responsibility for actually running the app itself (the main loghetti class was a subclass of CommandLineApp), and was dealing with the options, error handling, and all that jazz. It&amp;#8217;s also wonderfully generic, and is written so that pretty much any app, regardless of the type of options it takes, could run as a CommandLineApp.&lt;/p&gt;
&lt;p&gt;argparse was not a fast friend of mine. I stumbled a little over whether I should just update the namespace of my main class via argparse, or if I should pass in the Namespace object, or&amp;#8230; something else. Eventually, I got what I needed, and not much more.&lt;/p&gt;
&lt;p&gt;So loghetti now requires argparse, which is not part of the standard library, so why replace what I knew with some other (foreign) library? Because argparse is, &lt;a href=&quot;http://www.python.org/dev/peps/pep-0389/&quot;&gt;as I understand it,&lt;/a&gt; slated for inclusion in Python 3, at which point optparse will be deprecated.&lt;/p&gt;
&lt;p&gt;So, head on over to the &lt;a href=&quot;http://github.com/bkjones/loghetti&quot;&gt;GitHub repo&lt;/a&gt;, give it a spin, and send your pull requests and patches. Let the games begin!&lt;/p&gt;


&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/Xb0VY__iIaNGnuZS7rDNS4FAA7w/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/Xb0VY__iIaNGnuZS7rDNS4FAA7w/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/Xb0VY__iIaNGnuZS7rDNS4FAA7w/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/Xb0VY__iIaNGnuZS7rDNS4FAA7w/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?a=Y1EJTqbBPyU:wcpi6fRrCuw:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?a=Y1EJTqbBPyU:wcpi6fRrCuw:bcOpcFrp8Mo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?d=bcOpcFrp8Mo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?a=Y1EJTqbBPyU:wcpi6fRrCuw:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?i=Y1EJTqbBPyU:wcpi6fRrCuw:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/MusingsOfAnAnonymousGeek/~4/Y1EJTqbBPyU&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Tue, 16 Mar 2010 00:23:01 +0000</pubDate>
</item>
<item>
	<title>Brian Jones: Programmers that… can’t program.</title>
	<guid>http://www.protocolostomy.com/?p=724</guid>
	<link>http://feedproxy.google.com/~r/MusingsOfAnAnonymousGeek/~3/O_FYd0MuAh4/</link>
	<description>&lt;p&gt;So, I happened across &lt;a href=&quot;http://lateral.netmanagers.com.ar/weblog/posts/BB881.html&quot;&gt;this post&lt;/a&gt; about hiring programmers, which references two other posts about hiring programmers. There seems to be a demand for blog posts about hiring programmers, but that&amp;#8217;s not why I&amp;#8217;m writing this. I&amp;#8217;m writing because there was this sort of nagging irony that I couldn&amp;#8217;t help but stumble upon.&lt;/p&gt;
&lt;p&gt;In a &lt;a href=&quot;http://www.joelonsoftware.com/items/2005/01/27.html&quot;&gt;blog post&lt;/a&gt;, Joel Spolsky talks about the mathematical inaccuracies associated with claims of &amp;#8220;only hiring the top 1%&amp;#8221;. It seemed pretty obvious to me that whether or not you&amp;#8217;re hiring the top 1% of all programmers is pretty much unknowable, and when managers say they hire &amp;#8220;the top 1%&amp;#8221;, I assume they&amp;#8217;re talking about the top 1% of their applicants. Note too that I always thought it was idiotic to point this out, because, well, isn&amp;#8217;t that what you&amp;#8217;re SUPPOSED to do? You&amp;#8217;re not very well going to aim for the middle &amp;amp; hope for the best are you?&lt;/p&gt;
&lt;p&gt;Apparently I&amp;#8217;ve been giving too much credit to management. There I go giving people with ties on the benefit of the doubt again.&lt;/p&gt;
&lt;p&gt;Then, in another &lt;a href=&quot;http://www.codinghorror.com/blog/2007/02/why-cant-programmers-program.html&quot;&gt;blog post&lt;/a&gt;, Jeff Atwood talks about how it&amp;#8217;s very difficult to even get interviews with programmers who can &lt;em&gt;actually program&lt;/em&gt;. The problem is real.&lt;/p&gt;
&lt;p&gt;The original blog post that pointed me at the two others is one by Roberto Alsina where he talks about his own methods for weeding out the non-programmers. He&amp;#8217;s clearly seen the issue as well.&lt;/p&gt;
&lt;p&gt;But if you open all three of these posts in separate tabs and read them, you&amp;#8217;re likely to come away with the same basic problem I did:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Who the hell are these managers who can&amp;#8217;t figure out a dead simple statistics problem?&lt;/li&gt;
&lt;li&gt;How can a person fairly inept at simple math be qualified to make a hiring decision for anything but a summer intern?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That sorta blew my mind a little. But it blew my mind a lot when Atwood started describing the problems that interviewees *couldn&amp;#8217;t* perform in an interview! One task described by &lt;a href=&quot;http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/&quot;&gt;Imran&lt;/a&gt; was called a &amp;#8216;FizzBuzz&amp;#8217; question. Here&amp;#8217;s one such question:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Here&amp;#8217;s the part that blew my mind: He says, and I quote:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Most good programmers should be able to write out on paper a program which does this in a under a couple of minutes.&lt;/p&gt;
&lt;p&gt;Want to know something scary ? – the majority of comp sci graduates can’t. I’ve also seen self-proclaimed senior programmers take more than 10-15 minutes to write a solution.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;That&amp;#8217;s amazing to me. I decided to quickly pop open a Python prompt and see if I could do it:&lt;/p&gt;
&lt;pre&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;&amp;gt;&amp;gt;&amp;gt; for i in range(1,101):&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...     if (i % 3 == 0) and (i % 5 == 0):&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...             print i,'FizzBuzz'&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...     elif i % 3 == 0:&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...             print i, 'Fizz'&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...     elif i % 5 == 0:&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...             print i, 'Buzz'&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...     else:&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...             print i&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;...&lt;/div&gt;
&lt;/pre&gt;
&lt;p&gt;Turns out it worked on the first try! That was pasted directly from my terminal screen. I didn&amp;#8217;t time myself, but it took far less than 5 minutes. This leads to my other question, of course, which is &amp;#8220;if you&amp;#8217;re going to complain about CS degree holders not writing good code, maybe it&amp;#8217;s time to open the doors to non-CS degree holders?&amp;#8221;&lt;/p&gt;


&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/eAHrqBg6ZXvIjyQoZArSTI1JK6o/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/eAHrqBg6ZXvIjyQoZArSTI1JK6o/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/eAHrqBg6ZXvIjyQoZArSTI1JK6o/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/eAHrqBg6ZXvIjyQoZArSTI1JK6o/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?a=O_FYd0MuAh4:Zw--b69erv4:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?a=O_FYd0MuAh4:Zw--b69erv4:bcOpcFrp8Mo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?d=bcOpcFrp8Mo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?a=O_FYd0MuAh4:Zw--b69erv4:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/MusingsOfAnAnonymousGeek?i=O_FYd0MuAh4:Zw--b69erv4:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/MusingsOfAnAnonymousGeek/~4/O_FYd0MuAh4&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Tue, 16 Mar 2010 00:06:19 +0000</pubDate>
</item>
<item>
	<title>TechRepublic IT Security: Are users right in rejecting security advice?</title>
	<guid>http://blogs.techrepublic.com.com/security/?p=3275</guid>
	<link>http://feedproxy.google.com/~r/techrepublic/security/~3/_N1m-mOELhM/</link>
	<description>&lt;p&gt;&lt;em&gt;Should you change your passwords often? What&amp;#8217;s the risk if you don&amp;#8217;t? Little did I know, listening to one podcast would cause me to rethink how I would answer those questions. &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt; &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&lt;/p&gt;
&lt;p&gt;I now understand why my friend insisted I listen to &lt;a href=&quot;http://www.grc.com/sn/sn-229.htm&quot; target=&quot;_blank&quot;&gt;Episode 229&lt;/a&gt; of the &lt;a href=&quot;http://blogs.techrepublic.com.com/networking/?p=516&amp;tag=content;leftCol&quot; target=&quot;_blank&quot;&gt;Security Now series&lt;/a&gt;. He wanted to introduce me to &lt;a href=&quot;http://research.microsoft.com/en-us/people/cormac/default.aspx&quot; target=&quot;_blank&quot;&gt;Cormac Herley&lt;/a&gt;, Principle Researcher at Microsoft and his paper, &amp;#8220;&lt;a href=&quot;http://research.microsoft.com/en-us/um/people/cormac/papers/2009/SoLongAndNoThanks.pdf&quot; target=&quot;_blank&quot;&gt;So Long, and No Thanks for the Externalities: The Rational Rejection of Security Advice by Users&lt;/a&gt;.&amp;#8221;&lt;/p&gt;
&lt;p&gt;Dr. Herley introduced the paper this past September at the &lt;a href=&quot;http://www.nspw.org/&quot; target=&quot;_blank&quot;&gt;New Security Paradigms Workshop&lt;/a&gt;, a fitting venue. See if you agree after reading the group&amp;#8217;s mandate:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#8220;NSPW&amp;#8217;s focus is on work that challenges the dominant approaches and perspectives in computer security. In the past, such challenges have taken the form of critiques of existing practice as well as novel, sometimes controversial, and often immature approaches to defending computer systems. &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt; &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;By providing a forum for important security research that isn&amp;#8217;t suitable for mainstream security venues, NSPW aims to foster paradigm shifts in information security.&amp;#8221;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Herley&amp;#8217;s paper is of special interest to the group. Not only does it meet one of NSPW&amp;#8217;s tenets of being outside the mainstream. It forces a rethink of what&amp;#8217;s important when it comes to computer security.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Radical thinking&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;To get an idea of what the paper is about, here&amp;#8217;s a quote from the introduction:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#8220;We argue that users&amp;#8217; rejection of the security advice they receive is entirely rational from an economic perspective. The advice offers to shield them from the direct costs of attacks, but burdens them with far greater indirect costs in the form of effort. Looking at various examples of security advice we find that the advice is complex and growing, but the benefit is largely speculative or moot.&amp;#8221;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://i.techrepublic.com.com/blogs/costs.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-3279&quot; title=&quot;costs&quot; src=&quot;http://i.techrepublic.com.com/blogs/costs.jpg&quot; alt=&quot;&quot; width=&quot;430&quot; height=&quot;132&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The above diagram (courtesy of Cormac Herley) shows what he considers as direct and indirect costs. So, is Herley saying that heeding advice about computer security is not worth it? Let&amp;#8217;s find out.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Who&amp;#8217;s right&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Researchers have different ideas as to why people fail to use security measures. Some feel that regardless of what happens, users will only do the minimum required. Others believe security tasks are rejected because users consider them to be a pain. A third group maintains user education is not working.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Herley offers a different viewpoint. He contends that user rejection of security advice is based entirely on the economics of the process. He offers the following as reasons why:&lt;/p&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; Users understand, there is &lt;em&gt;no assurance&lt;/em&gt; that heeding advice will protect them from attacks.&lt;/li&gt;
&lt;li&gt; Users also know that each additional security measure &lt;em&gt;adds&lt;/em&gt; cost.&lt;/li&gt;
&lt;li&gt; Users perceive attacks to be rare. Not so with security advice; it&amp;#8217;s a constant burden, thus costs more than an actual attack.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;To explain&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;As I read the paper, I sensed Herley was coaxing me to stop thinking like an IT professional and start thinking like a mainstream user. That way, I would understand the following:&lt;/p&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; &lt;em&gt;The sheer volume of advice is overwhelming. There is no way to keep up with it. Besides that, the advice is fluid. What&amp;#8217;s right one day may not be the next.&lt;/em&gt; I agree, this &lt;a href=&quot;http://www.us-cert.gov/cas/bulletins/SB10-067.html&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt; is to US-CERT security bulletins for just the week of March 1, 2010.&lt;/li&gt;
&lt;li&gt; &lt;em&gt;The typical user does not always see benefit from heeding security advice.&lt;/em&gt; I once again agree. Try to explain to someone who had a password stolen by a key logger, why a strong password is important.&lt;/li&gt;
&lt;li&gt; &lt;em&gt;The benefit of heeding security advice is speculative.&lt;/em&gt; I checked and could not find significant data on the number and severity of attacks users encounter. Let alone, data quantifying positive feedback from following security advice.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Cost versus benefit&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I wasn&amp;#8217;t making the connection between cost-benefit trade-offs and IT security. My son, an astute business-type, had to explain that costs and benefits do not always directly refer to financial gains or losses. After hearing that, things started making sense. One such cost analysis was described by Steve Gibson in the podcast.&lt;/p&gt;
&lt;p&gt;Gibson simply asked, how often do you require passwords to be changed? I asked several system administrators what time frame they used, most responded once a month. Using Herley&amp;#8217;s logic, that means an attacker potentially has a whole month to use the password.&lt;/p&gt;
&lt;p&gt;So, is the cost of having users struggle with new password every month beneficial? Before you answer, you may also want to think about bad practices users implement because of the frequent-change policy:&lt;/p&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; By the time a user is comfortable with a password, it&amp;#8217;s time to change. So, users opt to write passwords down. That&amp;#8217;s another &lt;a href=&quot;http://www.schneier.com/blog/archives/2005/06/write_down_your.html&quot; target=&quot;_blank&quot;&gt;whole debate&lt;/a&gt;; ask Bruce Schneier.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; Users know how many passwords the system remembers and cycle through that amount, which allows them to keep using the same one.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Is anything truly gained by having passwords changed often? The only benefit I see is if the attacker does not use the password within the password-refresh time limit. What&amp;#8217;s your opinion? Is changing passwords monthly, a benefit or a cost?&lt;/p&gt;
&lt;p&gt;Dr. Herley does an in-depth cost-benefit analysis in three specific areas, password rules, phishing URLs, and SSL certificate errors. I would like to spend some time with each.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Password rules&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Password rules place the entire burden on the user. So, they understand the cost from having to abide by the following rules:&lt;/p&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; Length&lt;/li&gt;
&lt;li&gt; Composition (e.g. digits, special characters)&lt;/li&gt;
&lt;li&gt; Non-dictionary words (in any language).&lt;/li&gt;
&lt;li&gt; Don&amp;#8217;t write it down&lt;/li&gt;
&lt;li&gt; Don&amp;#8217;t share it with anyone&lt;/li&gt;
&lt;li&gt; Change it often&lt;/li&gt;
&lt;li&gt; Don&amp;#8217;t re-use passwords across sites&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The report proceeds to explain how each rule is not really helpful. For example, the first three rules are not important, as most applications and Web sites have a lock out rule that restricts access after so many tries. I already touched on why &amp;#8220;Change it often&amp;#8221; is not considered helpful.&lt;/p&gt;
&lt;p&gt;All said and done, users know that strictly observing the above rules is no guarantee of being safe from exploits. That makes it difficult for them to justify the additional effort and associated cost.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Phishing URLs&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Trying to explain &lt;a href=&quot;http://en.wikipedia.org/wiki/Spoofing_attack#URL_spoofing_and_phishing&quot; target=&quot;_blank&quot;&gt;URL spoofing&lt;/a&gt; to users is complicated. Besides, by the time you get through half of all possible iterations, most users are not listening. For example, the following slide (courtesy of Cormac Herley) lists some spoofed URLs for PayPal:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://i.techrepublic.com.com/blogs/paypal.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-3280&quot; title=&quot;paypal&quot; src=&quot;http://i.techrepublic.com.com/blogs/paypal.jpg&quot; alt=&quot;&quot; width=&quot;430&quot; height=&quot;93&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;To reduce cost to users, Herley wants to turn this around. He explains that users need to know when the URL is good, not bad:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#8220;The main difficulty in teaching users to read URLs is that in certain cases this allows users to know when something is bad, but it never gives a guarantee that something is good. Thus the advice cannot be exhaustive and is full of exceptions.&amp;#8221;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Certificate errors&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;For the most part, people understand SSL, the significance of https, and are willing to put up with the additional burden to keep their personal and financial information safe. Certificate errors are a different matter. Users do not understand their significance and for the most part ignore them.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m as guilty as the next when it comes to certificate warnings. I feel like I&amp;#8217;m taking a chance, yet what other options are available? After reading the report, I am not as concerned. Why, statistics show that virtually all certificate errors are false positives.&lt;/p&gt;
&lt;p&gt;The report also reflects the irony of thinking that ignored certificate warnings will lead to problems. Typically, bad guys do not use SSL on their phishing sites and if they do, they are going to make sure their certificates work, not wanting to bring any undue attention to their exploit. Herley states it this way:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#8220;Even if 100% of certificate errors are false positives it does not mean that we can dispense with certificates. However, it does mean that for users the idea that certificate errors are a useful tool in protecting them from harm is entirely abstract and not evidence-based. The effort we ask of them is real, while the harm we warn them of is theoretical.&amp;#8221;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Outside the box&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;There you have it. Is that radical-enough thinking for you? It is for me. That said, Dr. Herley offers the following advice:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#8220;We do not wish to give the impression that all security advice is counter-productive. In fact, we believe our conclusions are encouraging rather than discouraging.&lt;/em&gt; &lt;em&gt;We have argued that the cost-benefit trade off for most security advice is simply unfavorable: users are offered too little benefit for too much cost. &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt; &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Better advice might produce a different outcome. This is better than the alternative hypothesis that users are irrational. This suggests that security advice that has compelling cost-benefit trade off has real chance of user adoption. However, the costs and benefits have to be those the user cares about, not those we think the user ought to care about. &amp;#8220;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Herley offers the following advice to help us get out of this mess:&lt;/p&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; We need an estimate of the victimization rate for any exploit when designing appropriate security advice. Without this we end up doing worst-case risk analysis.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; User education is a cost borne by the whole population, while offering benefit only to the fraction that fall victim. Thus the cost of any security advice should be in proportion to the victimization rate.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; Retiring advice that is no longer compelling is necessary. Many of the instructions with which we burden users do little to address the current harms that they face.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; We must prioritize advice. In trying to defend everything we end up defending nothing. When we provide long lists of unordered advice we abdicate all opportunity to have influence and abandon users to fend for themselves.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; We must respect users&amp;#8217; time and effort. Viewing the user&amp;#8217;s time as worth $2.6 billion an hour is a better starting point than valuing it at zero.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Final thoughts&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The big picture idea I am taking away from Dr. Herley&amp;#8217;s paper is that users have never been offered security. All the advice, policies, directives, and what not offered in the name of IT security only promotes reduced risk. Could changing that be the paradigm shift needed to get information security on track?&lt;/p&gt;
&lt;p&gt;I want to thank Dr. Cormac Herley for his thought-provoking paper and e-mail conversation.&lt;/p&gt;
&lt;p&gt;&lt;!--
var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
document.write(unescape(&quot;%3Cscript src='&quot; + gaJsHost + &quot;google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E&quot;));
// --&gt;&lt;br /&gt;
&lt;!--
try {
var pageTracker = _gat._getTracker(&quot;UA-9822996-4&quot;);
pageTracker._trackPageview();
} catch(err) {}
// --&gt;&lt;/p&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;a href=&quot;http://ads.pheedo.com/click.phdo?s=1a513b2ea1b0aff6c611145f7c9bea22&amp;p=1&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://ads.pheedo.com/img.phdo?s=1a513b2ea1b0aff6c611145f7c9bea22&amp;p=1&quot; /&gt;&lt;/a&gt;
&lt;!-- foo --&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techrepublic/security/~4/_N1m-mOELhM&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 21:10:19 +0000</pubDate>
</item>
<item>
	<title>Standalone Sysadmin: NJ SysAdmin Conference Early Bird Extended</title>
	<guid>http://www.standalone-sysadmin.com/blog/2010/03/nj-sysadmin-conference-early-bird-extended/</guid>
	<link>http://feedproxy.google.com/~r/standalone-sysadmin/rWoU/~3/lq5AWaLf7eg/</link>
	<description>&lt;p&gt;PRESS RELEASE &lt;/p&gt;
&lt;p&gt;Discounted fee schedule ends Sunday, March 21st&lt;/p&gt;
&lt;p&gt;New Brunswick, NJ, Today 42, 2010 – The Professional IT Community Conference (PICC) early bird registration prices have been extended for one week, in order to assist area administrators who have been hit with the economic downturn. This short term rate reduction ends Sunday, March 21st. Until that time, the price for the two-day conference is $249, or $399 for the conference and training. Special low prices are available for students, as well, with conference and training only $99. &lt;/p&gt;
&lt;p&gt;The New Jersey chapter of the League of Professional System Administrators, an organization dedicated to facilitating information exchange pertaining to the field of system administration, extended the reduced rate &amp;#8220;early bird&amp;#8221; registration, citing their desire to ensure that all area system administrators had a chance to take part in the conference. The significantly reduced pricing schedule has been designed to appeal to administrators from infrastructures of all sizes. The conference will be held Friday, May 7th through Saturday, May 8th at the Hyatt Regency in New Brunswick.&lt;/p&gt;
&lt;p&gt;The Professional IT Community Conference is a gathering of people from the diverse IT community in New Jersey to learn, share ideas, and network. The conference will include invited speakers and keynotes, top-notch training sessions that are relevant, useful, and recession-friendly, as well as an “unconference” track where attendees propose and host their own topics. &lt;/p&gt;
&lt;p&gt; LOPSA-NJ and the Professional IT Community Conference are dedicated to fostering our local expert community and strengthening tomorrow&amp;#8217;s computing infrastructure.  &lt;/p&gt;
&lt;p&gt;For Media Inquiries: &lt;/p&gt;
&lt;p&gt;Matt Simmons&lt;br /&gt;
PICC Marketing Chairman&lt;br /&gt;
&lt;a href=&quot;http://lopsanj.org/events/picc10/&quot;&gt;http://www.picconf.org&lt;/a&gt;&lt;br /&gt;
Email: media@lopsanj.org&lt;br /&gt;
Tel: +1 (740) 403-9997 &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/xKpWoYjNhrDEZDkPb7V_EL8TSCw/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/xKpWoYjNhrDEZDkPb7V_EL8TSCw/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/xKpWoYjNhrDEZDkPb7V_EL8TSCw/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/xKpWoYjNhrDEZDkPb7V_EL8TSCw/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?a=lq5AWaLf7eg:bsOtFVD10EU:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/standalone-sysadmin/rWoU/~4/lq5AWaLf7eg&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 20:20:58 +0000</pubDate>
</item>
<item>
	<title>SysAdmin1138: Centralized IT</title>
	<guid>tag:sysadmin1138.net,2010:/mt/blog//5.2411</guid>
	<link>http://feedproxy.google.com/~r/Sysadmin1138/~3/XmJp9FyyTpE/centeralized-it.shtml</link>
	<description>I've had quite a bit of experience with the process of centralizing IT. At my last job I was at ground zero as I was on the committee that was charged with rationalizing an IT job family structure that was grounded in the early 1980's (key clue, the phrase, &quot;electronic data processing&quot; was slathered across many job titles, a phrase not at all in vogue in the 1990's). This particular consolidation event was driven from a directive from on high, above the CIO. So, as it were, it happened in spite of the grumbling.&lt;br /&gt;&lt;br /&gt;WWU has gone through some of its own consolidations, but there are natural barriers to complete consolidation in the Higher Ed market. I'll get to those in a bit. The one thing acting as a serious barrier to consolidation in any organization are departments that are large enough to support their own multi-person IT departments. Departments with one or two people effectively doing the full IT stack (stand-alone sysadmins who also do desktop support, database maintenance, to-the-desk network wiring, and maybe a bit of app-dev along the side) are most vulnerable to being consolidated into the central Borg. &lt;br /&gt;&lt;br /&gt;Some departments are all too happy to join the central IT infrastructure, as they see it as a way to shed costs onto another business unit. Others are happy because their own IT people are so overworked, the idea of getting them help is seen as a cost-free mercy; or put another way agreeing to consolidation is seen as a cost-free way to increase IT investment. Still others are happy to join because they want some nifty new technology and their stick-in-the-mud IT people keep saying, &quot;no,&quot; and view the central Borg as a way to get that thing.&lt;br /&gt;&lt;br /&gt;The big reason departments don't want their IT people consolidated away from them is personalized service. These are people who know the business intimately, something those central-office folk don't. The cost of maintaining an independent IT infrastructure is seen as a perfectly valid business investment in operational efficiency. Any centralization initiative will have to deal with this concern.&lt;br /&gt;&lt;br /&gt;The other big reason shows up less often, but is very hard to overcome without marching orders delivered from On High: distrust of central IT in specific. If the business unit that contains central IT is seen to be less competent as compared to the local IT people, that business unit will not consent to centralization. If the people in central IT are collectively viewed as a bunch of idiots, or run by idiots, the only way that unit is centralizing is if a metaphorical gun is held to their heads.&lt;br /&gt;&lt;br /&gt;My last job handled the all of the above and eventually came to an agreement. First and foremost, it was a fiat from On High that IT centralization would happen. All IT job titles started being paid out of the same budget. We then spent the next four years hammering out the management structure, which meant that for a long time a whole bunch of people had their salary paid by people with 0% influence on their work direction.&lt;br /&gt;&lt;br /&gt;Many departments gleefully joined the central infrastructure, driven in large part by their own IT people. They'd been overworked, you see, and the idea of gaining access to a much wider talent pool, and a significantly deeper one as well, was hard to not take advantage of. These were the departments with 1-3 IT people. In almost every case the local IT people stayed in their areas as the local IT contact, which maintained the local knowledge they'd developed over the years.&lt;br /&gt;&lt;br /&gt;There was one small department that was a holdout until the very end. An attempt to merge some 5 years earlier had gone horribly wrong, and institutional memory &lt;i&gt;remembered&lt;/i&gt; that very clearly. It wasn't until that department got a new director that an agreement was reached. The one IT guy up there stayed up there after the merger and stopped doing server and desktop support in favor of department-specific app-dev work, what he was hired to do in the first place as it happened.&lt;br /&gt;&lt;br /&gt;Then the arm-wrestling over the bigger departments took place. For the most part they kept near complete control over their own IT staffs, but their top level IT managers were regularly hauled back to the home IT office for 'management team meetings'. This ended up being a good move, since it reduced the barriers for communication at the very top level, and ultimately lead to some better efficiencies overall; especially in the helpdesk area as staff started to move between stacks after a while. Also, the departments that had been deeply skeptical of this whole centralized IT thing started working with other IT managers and getting their concerns heard, which reduced some of the inherent distrust.&lt;br /&gt;&lt;br /&gt;With Higher Ed, there is an additional factor or two that my previous job didn't face. First of all, the historic independence of specific Colleges. Second, Universities are generally a lot less command-and-control than their .com or even .gov brethren. This means that centralization relies far more on direct diplomacy between IT business units than it does on direct commands from on high. Distrust in this environment is much more hard to overcome as coercion is not a readily available option.&lt;br /&gt;&lt;br /&gt;Back in the day, WWU had 7 separate NDS trees. 7. That's a lot. Obviously, there wasn't much in the way of cross-departmental access of data. Over the course of around 5 years we consolidated down to a single 'WWU' NDS tree. Some departments happily stopped spending IT time on account maintenance tasks and let central IT do it all. Some departments gave up their servers all together. Time passed and still more areas decided they really didn't need to bother keeping local replicas, and let central IT handle that problem.&lt;br /&gt;&lt;br /&gt;In the end, handling IT in Higher Ed means dealing with a more heterogeneous environment than is otherwise cost-effective. I've mentioned before how network management on Higher Ed networks resembles ISPs more than it does corporate networks, and that unfortunately applies to things like server and storage purchases. Now that we're in the process of migrating off of NetWare and onto Windows, it means we're now in the process of wrangling over rules governing Active Directory management. &lt;br /&gt;&lt;br /&gt;We wrangled NDS control back in the 90's and early 00's, and now it's Microsoft's turn. As with the last round of NDS wrangling, some departments have gleefully turned over control (GPOs and file-server management specifically) of their department over to us in ITS. Others, specifically one with a large local IT presence, is really holding out for &lt;i&gt;complete&lt;/i&gt; control of their area. They're clearly angling to just use us as an authentication provider and they'll do the rest, something that... well... negotiations are ongoing. &lt;br /&gt;&lt;br /&gt;My crystal ball says we have somewhere between 5 to 10 years before the next wave of 'directory' upgrade forces another consolidation. That consolidation just might involve consolidating with a State agency of some kind. Perhaps the State will force us to use a directory rooted in the wa.gov DNS domain (wwu.univ.wa.gov perhaps), and our Auth servers will be based in Olympia rather than on our local network. Don't know. What is true, is that we'll be going through this again, probably within the next decade. &lt;br /&gt; 
        
    &lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=XmJp9FyyTpE:-4aFDs_Oogo:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=XmJp9FyyTpE:-4aFDs_Oogo:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=XmJp9FyyTpE:-4aFDs_Oogo:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=XmJp9FyyTpE:-4aFDs_Oogo:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=XmJp9FyyTpE:-4aFDs_Oogo:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=XmJp9FyyTpE:-4aFDs_Oogo:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=XmJp9FyyTpE:-4aFDs_Oogo:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=XmJp9FyyTpE:-4aFDs_Oogo:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Sysadmin1138/~4/XmJp9FyyTpE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 18:26:25 +0000</pubDate>
</item>
<item>
	<title>:wq: How I develop Clojure with Vim</title>
	<guid>http://writequit.org/blog/?p=386</guid>
	<link>http://feedproxy.google.com/~r/writequit/feed/~3/vIhze9hePVY/</link>
	<description>&lt;p&gt;Recently Lau Jensen wrote &lt;a href=&quot;http://www.bestinclass.dk/index.php/2010/03/approaching-productivity/ &quot;&gt;a post talking about the features of Emacs&lt;/a&gt; and why it increases the productivity of Clojure programmers. While I don&amp;#8217;t disagree that lisp programming in general benefits greatly from using Emacs as an editor, there are simply people who are too heavily invested into Vim (like myself) for things like viper-mode to work for them. So, I thought I&amp;#8217;d share how I do Clojure development with Vim. Throw in my 2 cents.&lt;/p&gt;
&lt;p&gt;The key (for me) to editing Clojure code in Vim is a combination of two plugins, &lt;a href=&quot;http://kotka.de/projects/clojure/vimclojure.html &quot;&gt;VimClojure&lt;/a&gt; and &lt;a href=&quot;http://technotales.wordpress.com/2007/10/03/like-slime-for-vim/ &quot;&gt;slime.vim&lt;/a&gt; (&lt;a href=&quot;http://technotales.wordpress.com/2007/10/03/like-slime-for-vim/ &quot;&gt;see associated blog post&lt;/a&gt;). One of the difficult things is that slime.vim doesn&amp;#8217;t actually exist anywhere on vim.org&amp;#8217;s list of scripts, so it has to be downloaded from the aforementioned blog post. Stick it in the ~/.vim/plugins directory to install it.&lt;/p&gt;
&lt;p&gt;First, VimClojure. I tend not to use Nailgun at all, some people like it, I don&amp;#8217;t. So instead of the regular install for vimclojure, I copy over the files from the &lt;strong&gt;autoload&lt;/strong&gt;, &lt;strong&gt;doc&lt;/strong&gt;, &lt;strong&gt;ftdetect&lt;/strong&gt;, &lt;strong&gt;ftplugin&lt;/strong&gt;, &lt;strong&gt;indent&lt;/strong&gt; and &lt;strong&gt;syntax&lt;/strong&gt; folders to their respective Vim folders. If you think you&amp;#8217;ll want the Nailgun functionality, you should use the &lt;a href=&quot;http://kotka.de/projects/clojure/vimclojure.html&quot;&gt;installation instructions provided by Kotarak&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Now, add the settings you need for VimClojure to your .vimrc:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;code&gt;&quot; Settings for VimClojure&lt;br /&gt;
let g:clj_highlight_builtins=1      &quot; Highlight Clojure's builtins&lt;br /&gt;
let g:clj_paren_rainbow=1           &quot; Rainbow parentheses'!&lt;/code&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;I have to say, rainbow parentheses&amp;#8217; is one of the best features of vimclojure, making it easy to see exactly what parentheses closes which statement:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/rainbow-paren.png&quot;&gt;&lt;img class=&quot;aligncenter size-full wp-image-389&quot; title=&quot;rainbow-paren&quot; src=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/rainbow-paren.png&quot; alt=&quot;&quot; width=&quot;576&quot; height=&quot;195&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now that VimClojure is set up, time to set up the integration with Clojure&amp;#8217;s REPL, to do that I use slime.vim. Slime.vim uses &lt;a href=&quot;http://www.gnu.org/software/screen/&quot;&gt;screen&lt;/a&gt; to send the input from your editor to any window in a running screen session, so to get started we&amp;#8217;ll have to start up a screen session. To make it easier, you can name it something so you don&amp;#8217;t have to look up the pid, I&amp;#8217;ll call this session &amp;#8220;clojure&amp;#8221;:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;code&gt;‹ ~ › : screen -S clojure&lt;/code&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;If you didn&amp;#8217;t name your session, or forgot what you named it, you can use &lt;code&gt;screen -ls&lt;/code&gt; to look up all the screen sessions you&amp;#8217;ve started:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;code&gt;‹ ~ › : screen -ls&lt;br /&gt;
There are screens on:&lt;br /&gt;
41837.clojure   (Attached)&lt;br /&gt;
8970.ttys000.Xanadu     (Attached)&lt;br /&gt;
8990.ttys001.Xanadu     (Attached)&lt;br /&gt;
9010.ttys002.Xanadu     (Attached)&lt;br /&gt;
4 Sockets in /tmp/screens/S-hinmanm.&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Now, start a REPL in the screen terminal window (use &amp;#8216;clj&amp;#8217; or &amp;#8216;lein REPL&amp;#8217; or however you like to start a Clojure REPL). Next, open a clojure file with Vim, highlight a block of code (slime.vim will automatically select a paragraph if your cursor is in the middle of something like a defn), now, press &lt;strong&gt;Control-c + Control-c&lt;/strong&gt; (Ctrl+c twice in a row). You should be prompted by Vim like this:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/session-prompt.png&quot;&gt;&lt;img class=&quot;aligncenter size-full wp-image-390&quot; title=&quot;session-prompt&quot; src=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/session-prompt.png&quot; alt=&quot;&quot; width=&quot;417&quot; height=&quot;50&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Enter the name of the screen term, if you named your session &amp;#8220;clojure&amp;#8221; you&amp;#8217;d enter &amp;#8220;clojure&amp;#8221;, if you didn&amp;#8217;t name it, use the pid number you see from the output of &amp;#8217;screen -ls&amp;#8217;, next it will ask for which window to send the output to:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/window-prompt.png&quot;&gt;&lt;img class=&quot;aligncenter size-full wp-image-392&quot; title=&quot;window-prompt&quot; src=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/window-prompt.png&quot; alt=&quot;&quot; width=&quot;290&quot; height=&quot;45&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you&amp;#8217;ve used screen before (and I&amp;#8217;m assuming you have), this is the window number your REPL is running on. After you enter this information the plugin will send the paragraph/line of text to the REPL. From here on the session id and window will be cached, so hitting &lt;strong&gt;ctrl+c,ctrl+c&lt;/strong&gt; again will immediately send whatever function the cursor is on to the REPL. You can also select a block of code using visual mode and use &lt;strong&gt;ctrl+c,ctrl+c&lt;/strong&gt; to send everything selected to the REPL. If you used the wrong numbers, use &lt;strong&gt;ctrl+c,v&lt;/strong&gt; (Control+c, then v) to have slime.vim ask you for the numbers again.&lt;/p&gt;
&lt;p&gt;There you go, you now have a 1-way pipe from your Vim editor to any kind of REPL (be it Clojure, Ruby or Python). Here&amp;#8217;s a couple of screenshots of the plugin in action:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/terminal-split.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-391&quot; title=&quot;terminal-split&quot; src=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/terminal-split-300x297.png&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;297&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/gui-split.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-387&quot; title=&quot;gui-split&quot; src=&quot;http://writequit.org/blog/wp-content/uploads/2010/03/gui-split-300x187.png&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;187&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I know this doesn&amp;#8217;t even come close to the amount of integration the Emacs has using SLIME, but for me, this is exactly what I want out of a Clojure development environment, develop some code and be able to easily send it to a REPL. Hopefully a Vim user or two out there will find this setup useful.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE&lt;/strong&gt;: If you&amp;#8217;re interested in my full Vim setup for some reason, you can check it out &lt;a href=&quot;http://github.com/dakrone/dakrone-dotfiles&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/writequit/feed?a=vIhze9hePVY:UvMSRE9pvzI:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/writequit/feed?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/writequit/feed?a=vIhze9hePVY:UvMSRE9pvzI:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/writequit/feed?i=vIhze9hePVY:UvMSRE9pvzI:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/writequit/feed?a=vIhze9hePVY:UvMSRE9pvzI:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/writequit/feed?i=vIhze9hePVY:UvMSRE9pvzI:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/writequit/feed?a=vIhze9hePVY:UvMSRE9pvzI:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/writequit/feed?i=vIhze9hePVY:UvMSRE9pvzI:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/writequit/feed/~4/vIhze9hePVY&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 17:30:48 +0000</pubDate>
</item>
<item>
	<title>TechRepublic IT Security: The Microsoft Internet Driving License</title>
	<guid>http://blogs.techrepublic.com.com/security/?p=3267</guid>
	<link>http://feedproxy.google.com/~r/techrepublic/security/~3/jd_shvqIO1I/</link>
	<description>&lt;p&gt;&lt;em&gt;Microsoft&amp;#8217;s Craig Mundie is building on his legacy of advocating terrible &amp;#8220;security&amp;#8221; policy.  This time, he has picked up the Internet Driving License bug.&lt;/em&gt;&lt;/p&gt;
&lt;hr /&gt;Microsoft executive Craig Mundie has a solid track record for supporting heavily restrictive technologies and technology policies.  He has been a vociferous advocate of both the &lt;a href=&quot;http://en.wikipedia.org/wiki/Trusted_Computing#Criticism&quot; target=&quot;_blank&quot;&gt;Trusted Computing&lt;/a&gt; initiative and &lt;a href=&quot;http://blogs.techrepublic.com.com/security/?p=435&quot; target=&quot;_blank&quot;&gt;DRM&lt;/a&gt;, both of which present serious &lt;a href=&quot;http://blogs.techrepublic.com.com/security/?p=293&quot; target=&quot;_blank&quot;&gt;privacy and security&lt;/a&gt; issues for individual computer users.
&lt;p&gt;With that track record in mind, it should be no surprise that Mr. Mundie has taken on the mantle of champion of yet another ill-conceived &amp;#8220;security&amp;#8221; measure that, if implemented worldwide, would have disturbing consequences for individual security and privacy.  At the Davos Economic Forum in Switzerland, he called for requirements for individuals to acquire licenses before they can access the Internet.  While this sounds like a good idea &lt;em&gt;in theory&lt;/em&gt; &amp;#8212; if we could ensure everybody who uses the Internet was competent to do so, we really &lt;em&gt;would&lt;/em&gt; have a safer Internet &amp;#8212; it is not quite so palatable in practice.&lt;/p&gt;
&lt;p&gt;As any (real) engineer can tell you, theory and practice are the same &lt;em&gt;in theory&lt;/em&gt;, but they are quite different things in practice.  When was the last time you saw a licensing system that actually guaranteed competence or, for that matter, at least guaranteed that competent people would not be excluded in favor of the incompetent at least some of the time?&lt;/p&gt;
&lt;p&gt;As someone who has been licensed and certified in a number of different areas (including Microsoft certifications, physical security and deadly force management licensing, heavy equipment operation, and even hazardous materials transportation, among others), your humble author can tell you with a fair bit of confidence that it does not take much to corrupt a licensing system to the point that it no longer guarantees anything in particular, other than that a lot of money will be spent, and the more money one has to spend the more likely one is to get licensed.&lt;/p&gt;
&lt;p&gt;The problems with Mundie&amp;#8217;s suggestions do not stop with licensing itself, however.  He also suggested that the United Nations should be granted the power to &amp;#8220;organize the systematic quarantine of computers without their owner’s permission.&amp;#8221;&lt;/p&gt;
&lt;p&gt;Of course, there appears to be little danger of Craig Mundie&amp;#8217;s fever dreams becoming a reality.  Any &lt;em&gt;effective&lt;/em&gt; licensing policy for ensuring that only competent people get to use the Internet would probably &lt;em&gt;effectively&lt;/em&gt; bar 80% or more of current users (your humble author&amp;#8217;s guesstimate is something more like 98%), and &lt;em&gt;that&lt;/em&gt; certainly will not fly.  Even ignoring the tremendous outcry of dissent from the populace at large, ISPs will not stand for having the majority of their customers taken away from them.&lt;/p&gt;
&lt;p&gt;The alternative (and more likely) licensing scheme would be one that is wholly ineffective, and more prone to ensuring that only people who like the &amp;#8220;right&amp;#8221; brands and have memorized the &amp;#8220;right&amp;#8221; corporate-mandated policies will have access to the Internet, aside from those who gain illicit access.  It seems unlikely that this sort of mandatory licensing scheme could come to pass as well, though it is at least a vague possibility if the whole world goes nuts next week.&lt;/p&gt;
&lt;p&gt;It also seems unlikely that the UN would be granted the power to arbitrarily cut off Internet access for individuals, if only because many of the most powerful nations simply are not strongly inclined to let the UN cut into their economic sovereignty so egregiously.  We should keep our fingers crossed, though, just to be sure.&lt;/p&gt;
&lt;p&gt;Let&amp;#8217;s keep our ears to the ground, listening for the sound of approaching legislation, just in case some technophobes in government might otherwise manage to slip one by us.  When dealing with the technologically incompetent in government trying to manage the lives of technical experts in the general populace, there is always the danger that incompetence might win the day.&lt;/p&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;a href=&quot;http://ads.pheedo.com/click.phdo?s=36db3f13a7092cc5605aa5b02a767978&amp;p=1&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://ads.pheedo.com/img.phdo?s=36db3f13a7092cc5605aa5b02a767978&amp;p=1&quot; /&gt;&lt;/a&gt;
&lt;!-- foo --&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techrepublic/security/~4/jd_shvqIO1I&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 17:28:37 +0000</pubDate>
</item>
<item>
	<title>TechRepublic IT Security: A Special Offer From Our Sponsor</title>
	<guid>http://feeds.feedburner.com/techrepublic/36db3f13a7092cc5605aa5b02a767978</guid>
	<link>http://feedproxy.google.com/~r/techrepublic/security/~3/aPZixP7HkMc/click.phdo</link>
	<description>&lt;a href=&quot;http://ads.pheedo.com/click.phdo?s=36db3f13a7092cc5605aa5b02a767978&amp;p=4&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://ads.pheedo.com/img.phdo?s=36db3f13a7092cc5605aa5b02a767978&amp;p=4&quot; /&gt;&lt;/a&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techrepublic/security/~4/aPZixP7HkMc&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 17:28:37 +0000</pubDate>
</item>
<item>
	<title>iDogg: Got preliminary approval for PICC Conference</title>
	<guid>http://arsedout.net/idogg/?p=163</guid>
	<link>http://arsedout.net/idogg/?p=163</link>
	<description>&lt;p&gt;After a bit of discussion, I got approval to go to the &lt;a href=&quot;http://lopsanj.org/events/picc10/&quot; target=&quot;_blank&quot;&gt;PICC&lt;/a&gt; Conference in Jersey.  I&amp;#8217;m looking to jump on the storage and NAS/SAN workshops.  I little knowledge of IPv6, so I&amp;#8217;m going to jump on that session as well.  I haven&amp;#8217;t gone to a conference in at least half a decade, so I&amp;#8217;m looking forward to this.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ll probably be the only person who admins a &amp;#8220;Novell&amp;#8221; network at the conference.  &lt;img src=&quot;http://arsedout.net/idogg/wp-includes/images/smilies/icon_wink.gif&quot; alt=&quot;;)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;</description>
	<pubDate>Mon, 15 Mar 2010 14:49:09 +0000</pubDate>
</item>
<item>
	<title>Standalone Sysadmin: Switch Speed and Price – Tradeoffs</title>
	<guid>http://www.standalone-sysadmin.com/blog/?p=1296</guid>
	<link>http://feedproxy.google.com/~r/standalone-sysadmin/rWoU/~3/1LHJ5OpQxNI/</link>
	<description>&lt;p&gt;How fast should your switches be? &lt;/p&gt;
&lt;p&gt;Sure, the answer is &amp;#8220;as fast as you can get&amp;#8221;, but we don&amp;#8217;t all have the budget for, say, &lt;a href=&quot;http://www.provantage.com/cisco-systems-n7k-m132xp-12~7CSC90TN.htm&quot;&gt;this beast&lt;/a&gt; (chassis sold separately). Lots of us don&amp;#8217;t have money for even a &lt;a href=&quot;http://www.bestbuy.com/site/NETGEAR+-+ProSafe+48-Port+10/100/1000+Gigabit+Ethernet+Switch/8891915.p?skuId=8891915&amp;ci_src=14110944&amp;ci_sku=8891915&amp;ref=06&amp;loc=01&amp;id=1212192931527&quot;&gt;48 port Gb managed switch&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;So when deciding on a switch to buy, there are a lot of variables to examine. &lt;/p&gt;
&lt;p&gt;First, the hard requirement is the number of nodes we have to connect to the network. Then we have niceties such as management (so that we can configure and monitor them, use VLANs, etc etc), whether or not they&amp;#8217;re stackable and all that&amp;#8230;but where does speed come in? &lt;/p&gt;
&lt;p&gt;Obviously, a 100Mb/s switch costs less than an otherwise equivalent Gb/s switch. &lt;/p&gt;
&lt;p&gt;The rule of thumb I&amp;#8217;ve been operating by is that the end user switch shouldn&amp;#8217;t be the bottleneck. In other words, the users in my offices talk to servers over the WAN. I&amp;#8217;m never (not soon, anyway) going to get a GbE WAN link between my sites. Because of that, the 100Mb/s switches we&amp;#8217;re using don&amp;#8217;t hold us back. We don&amp;#8217;t share files between the users directly, so anything bigger would be overkill. &lt;/p&gt;
&lt;p&gt;If my users used local servers, though, an increase in switch speed would dramatically improve the response of the server. The quality of experience would improve, and it would be worth upgrading the switch. &lt;/p&gt;
&lt;p&gt;What kind of mental calculations do you use when picking a switch? I&amp;#8217;m interested in learning if there&amp;#8217;s a &amp;#8220;right&amp;#8221; way, and if not, maybe we can aggregate all the ways we make the decision into some smart ideas&amp;#8230;comment below! &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/UyKpVwO-ZSNNn5DsX4Ahdn4AeHE/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/UyKpVwO-ZSNNn5DsX4Ahdn4AeHE/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/UyKpVwO-ZSNNn5DsX4Ahdn4AeHE/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/UyKpVwO-ZSNNn5DsX4Ahdn4AeHE/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?a=1LHJ5OpQxNI:qwsAI1VndP8:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/standalone-sysadmin/rWoU/~4/1LHJ5OpQxNI&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 14:15:49 +0000</pubDate>
</item>
<item>
	<title>Slaptijack: Voice over IP (VoIP) Protocol Review</title>
	<guid>http://slaptijack.com/?p=4453</guid>
	<link>http://feedproxy.google.com/~r/slaptijack/~3/oNyuDaAh0Qc/</link>
	<description>&lt;table class=&quot;protocol_basics&quot; align=&quot;right&quot;&gt;
&lt;tr&gt;
&lt;th colspan=&quot;2&quot;&gt;Protocol Basics&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Layer:&lt;/td&gt;
&lt;td&gt;Application&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Transport:&lt;/td&gt;
&lt;td&gt;&lt;acronym title=&quot;Transmission Control Protocol&quot;&gt;TCP&lt;/acronym&gt; or &lt;acronym title=&quot;User Datagram Protocol&quot;&gt;UDP&lt;/acronym&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Port(s):&lt;/td&gt;
&lt;td&gt;5060, 5061&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RFC(s):&lt;/td&gt;
&lt;td&gt;2543, 3261&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;h3&gt;SIP (Session Initiation Protocol)&lt;/h3&gt;
&lt;p&gt;SIP is by far the most popular protocol used in VoIP communication today. SIP was designed as a signaling protocol in charge of setting up and tearing down sessions between two or more devices. Additionally, SIP can be used to modify existing sessions. The protocol was designed to be independent of transport protocols. Thus, SIP can be used over both TCP and UDP. As of this writing, popular open source PBX &lt;a href=&quot;http://www.asterisk.org&quot;&gt;&lt;strong&gt;Asterisk&lt;/strong&gt;&lt;/a&gt; only supports SIP over UDP.&lt;/p&gt;
&lt;p&gt;&lt;span id=&quot;more-4453&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table class=&quot;protocol_basics&quot; align=&quot;right&quot;&gt;
&lt;tr&gt;
&lt;th colspan=&quot;2&quot;&gt;Protocol Basics&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Layer:&lt;/td&gt;
&lt;td&gt;Application&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Transport:&lt;/td&gt;
&lt;td&gt;&lt;acronym title=&quot;Transmission Control Protocol&quot;&gt;TCP&lt;/acronym&gt; or &lt;acronym title=&quot;User Datagram Protocol&quot;&gt;UDP&lt;/acronym&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Port(s):&lt;/td&gt;
&lt;td&gt;1720&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RFC(s):&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;h3&gt;H.323&lt;/h3&gt;
&lt;p&gt;H.323 isn&amp;#8217;t a single protocol as much a system of protocols. It is an &lt;acronym title=&quot;International Telecommunication Union&quot;&gt;ITU&lt;/acronym&gt; recommendation focused on providing multimedia communication in IP networks. On of its strengths over purely audio-based protocols is the ability to provide video conferencing. Other protocols often used in conjunction with H.323 include H.225 for call signaling, H.245 for call control, and Real-time Transport Protocol (RTP) for multimedia communication.&lt;/p&gt;
&lt;table class=&quot;protocol_basics&quot; align=&quot;right&quot;&gt;
&lt;tr&gt;
&lt;th colspan=&quot;2&quot;&gt;Protocol Basics&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Layer:&lt;/td&gt;
&lt;td&gt;Application&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Transport:&lt;/td&gt;
&lt;td&gt;&lt;acronym title=&quot;Transmission Control Protocol&quot;&gt;TCP&lt;/acronym&gt; or &lt;acronym title=&quot;User Datagram Protocol&quot;&gt;UDP&lt;/acronym&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Port(s):&lt;/td&gt;
&lt;td&gt;200&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RFC(s):&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;h3&gt;MGCP (Media Gateway Control Protocol)&lt;/h3&gt;
&lt;p&gt;Like SIP, MGCP is a signaling protocol. Unlike SIP, MGCP relies on another protocol, Session Description Protocol (SDP), to handle session creation and termination. MGCP was originally designed to handle scaling issues experienced by large service providers. The original purpose of the protocol was to handle communication between call routing devices and media conversion gateways. For example, MGCP might be used between an &lt;strong&gt;Asterisk&lt;/strong&gt; server and a &lt;a href=&quot;http://slaptijack.com/go/amazon.php?asin= B00006IRQG&quot;&gt;Cisco AS5350 Universal Access Server&lt;/a&gt; connected to the &lt;acronym title=&quot;Public Switched Telephone Network&quot;&gt;PSTN&lt;/acronym&gt;.&lt;/p&gt;
&lt;table class=&quot;protocol_basics&quot; align=&quot;right&quot;&gt;
&lt;tr&gt;
&lt;th colspan=&quot;2&quot;&gt;Protocol Basics&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Layer:&lt;/td&gt;
&lt;td&gt;Application&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Transport:&lt;/td&gt;
&lt;td&gt;&lt;acronym title=&quot;User Datagram Protocol&quot;&gt;UDP&lt;/acronym&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Port(s):&lt;/td&gt;
&lt;td&gt;2427&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RFC(s):&lt;/td&gt;
&lt;td&gt;3435&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;h3&gt;SCCP (Skinny Client Control Protocol)&lt;/h3&gt;
&lt;p&gt;Skinny is a proprietary protocol originally developed by Selsius Systems and now owned and maintained by Cisco Systems. Although proprietary, open source versions of the protocol have been implemented. Although &lt;a href=&quot;http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fnoss%26y%3D0%26field-keywords%3Dcisco%2520ip%2520phone%26url%3Dsearch-alias%253Delectronics&amp;tag=slaptijack-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957&quot;&gt;Cisco 7900 series phones&lt;/a&gt; use Skinny to communicate with Cisco CallManager, the SMB-targeted &lt;a href=&quot;http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fnoss%26y%3D0%26field-keywords%3DLinksys%2520IP%2520phones%26url%3Dsearch-alias%253Delectronics&amp;tag=slaptijack-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957&quot;&gt;Linksys IP phones&lt;/a&gt; use SIP.&lt;/p&gt;
&lt;table class=&quot;protocol_basics&quot; align=&quot;right&quot;&gt;
&lt;tr&gt;
&lt;th colspan=&quot;2&quot;&gt;Protocol Basics&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Layer:&lt;/td&gt;
&lt;td&gt;Application&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Transport:&lt;/td&gt;
&lt;td&gt;&lt;acronym title=&quot;User Datagram Protocol&quot;&gt;UDP&lt;/acronym&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Port(s):&lt;/td&gt;
&lt;td&gt;4569&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RFC(s):&lt;/td&gt;
&lt;td&gt;5456&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;h3&gt;Inter-Asterisk Exchange (IAX / IAX2)&lt;/h3&gt;
&lt;p&gt;IAX was designed to provide call control functionality between &lt;strong&gt;Asterisk PBXs&lt;/strong&gt;. One of the benefits of IAX is that both control and data traffic are included in the same stream. Therefore, if a connection can be established, audio will pass successfully. This is not true of signaling protocols that rely on other protocols to provide audio traffic. This makes IAX particularly useful in firewalled / NATed environments. Mark Spencer detailed the benefits of &lt;a href=&quot;http://www.voip-info.org/wiki/view/IAX+versus+SIP&quot;&gt;IAX versus SIP&lt;/a&gt;.&lt;/p&gt;
&lt;img src=&quot;http://slaptijack.com/?ak_action=api_record_view&amp;id=4453&amp;type=feed&quot; alt=&quot;&quot; /&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=oNyuDaAh0Qc:LS2gu4uJ5CE:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=oNyuDaAh0Qc:LS2gu4uJ5CE:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=oNyuDaAh0Qc:LS2gu4uJ5CE:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?i=oNyuDaAh0Qc:LS2gu4uJ5CE:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=oNyuDaAh0Qc:LS2gu4uJ5CE:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?i=oNyuDaAh0Qc:LS2gu4uJ5CE:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=oNyuDaAh0Qc:LS2gu4uJ5CE:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?i=oNyuDaAh0Qc:LS2gu4uJ5CE:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</description>
	<pubDate>Mon, 15 Mar 2010 14:00:13 +0000</pubDate>
</item>
<item>
	<title>TechRepublic Network Administrator: Network-based storage options for robust home labs</title>
	<guid>http://blogs.techrepublic.com.com/networking/?p=2775</guid>
	<link>http://feedproxy.google.com/~r/techrepublic/networking/~3/bK6X9L7kbxY/</link>
	<description>&lt;p&gt;&lt;em&gt;For many IT pros, the ability to have a robust test environment at home is critical for success on the job or to learn a new skill. IT pro Rick Vanover shares his favorite tools to build up a home lab storage.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;-&lt;/p&gt;
&lt;p&gt;Last &lt;a href=&quot;http://blogs.techrepublic.com.com/networking/?p=2747&quot; target=&quot;_blank&quot;&gt;week&amp;#8217;s post &lt;/a&gt;by Brad Bird hit home with me. Making a home lab is important, but it can really add up!  I maintain a &lt;a href=&quot;http://rickvanover.wordpress.com/2010/01/21/my-home-lab-setup/&quot; target=&quot;_blank&quot;&gt;private lab at home&lt;/a&gt; where I do extensive testing with virtualization for various network and Windows Server technologies. The one technology, above all else, that needs to be in place to make any degree of home lab effective is some form of shared storage.&lt;/p&gt;
&lt;p&gt;My lab has a DroboPro device for my network-based storage. Both the &lt;a href=&quot;http://drobo.com/products/drobopro/index.php&quot; target=&quot;_blank&quot;&gt;DroboPro&lt;/a&gt; and &lt;a href=&quot;http://drobo.com/products/droboelite.php&quot; target=&quot;_blank&quot;&gt;DroboElite&lt;/a&gt; units can function as an iSCSI target for SMB or home lab situation. Be sure to check Scott Lowe&amp;#8217;s review of the DroboElite in &lt;a href=&quot;http://blogs.techrepublic.com.com/datacenter/?p=2221&quot; target=&quot;_blank&quot;&gt;this TechRepublic post&lt;/a&gt;. I&amp;#8217;ve used the DroboPro as a storage target in my lab, and have been generally satisfied with it.  The Drobo series of iSCSI storage devices support VMware connectivity, but &lt;a href=&quot;http://support.datarobotics.com/app/answers/detail/a_id/338&quot; target=&quot;_blank&quot;&gt;not fully supporting Hyper-V&lt;/a&gt; with clustered shared volumes (CSV) as persistent SCSI-3 reservations are required for Hyper-V virtualization in clusters.&lt;/p&gt;
&lt;p&gt;Another popular product is the &lt;a href=&quot;http://iomega.com/nas/us-nas-comp.html&quot; target=&quot;_blank&quot;&gt;iomega StorCenter&lt;/a&gt; series of products. These offer iSCSI connectivity at a nice entry price as well. Storage expert Stephen Foskett has done a &lt;a href=&quot;http://blog.fosketts.net/2009/08/27/iomega-ix4-200d/&quot; target=&quot;_blank&quot;&gt;nice independent review&lt;/a&gt; of the ix4-200d device on his personal blog site. The StorCenter does have VMware and Hyper-V compatibility, but again does not support persistent SCSI-3 reservations for clustering operations with Hyper-V.&lt;/p&gt;
&lt;p&gt;The shared storage wish-list item does not have to be met by purchasing a storage device, however. There are a number of free products that can function as shared storage resources for labs. Here is a breakdown of the one&amp;#8217;s I&amp;#8217;ve used over the years:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.starwindsoftware.com/free&quot; target=&quot;_blank&quot;&gt;StarWind Free&lt;/a&gt;: This free software engine can virtualize the storage on a local server, and present it as an iSCSI target. You can purchase software to increase the feature set, including mirroring and failover. StarWind does support Hyper-V clustering with persistent SCSI-3 reservations with their iSCSI target implementation.&lt;br /&gt;
&lt;a href=&quot;http://openfiler.com/products&quot; target=&quot;_blank&quot;&gt;&lt;br /&gt;
Openfiler&lt;/a&gt;: This free software-based storage virtualization engine is multi-protocol, including iSCSI and NFS. Should also have a fibre channel or CIFS itch to scratch, this free product can help here as well.&lt;br /&gt;
&lt;a href=&quot;http://www.nexenta.com/corp/free-trial-download&quot; target=&quot;_blank&quot;&gt;&lt;br /&gt;
NexentaStor&lt;/a&gt;: This software-based storage virtualization engine also can do many different protocols, including iSCSI and NFS. Further, there is a &lt;a href=&quot;http://www.nexenta.com/corp/vmware-image-downloads&quot; target=&quot;_blank&quot;&gt;VMware-based image&lt;/a&gt; as a storage device to plug into your existing test installation.&lt;br /&gt;
&lt;a href=&quot;http://www.falconstor.com/en/pages/?pn=NSSVA&quot; target=&quot;_blank&quot;&gt;&lt;br /&gt;
FalconStor Network Storage Server&lt;/a&gt;: This software-based storage virtual appliance has a free offering for the small business or remote office.&lt;/p&gt;
&lt;p&gt;When it comes to deciding between a dedicated, purpose-built storage device like the Drobo or StorCenter devices or software-based devices like StarWind or Openfiler; there are a number of considerations one must take into account. First of all, both products should be given their own network. Running a storage protocol over a network that may approach line rate with normal traffic will be less than optimal. Performance wise, you may have better disk access from the software-based solutions that utilize potentially higher-performing array controllers.&lt;/p&gt;
&lt;p&gt;One last recommendation is to create two classes of logical unit numbers (LUNs). One class would be for static data that will never be erased. The second class would be true lab use LUNs. The best way to distinguish between them is to do both LUN masking at the storage controller (if possible) and in my case, I make them a special size. For example, I know that the 2 TB LUN is the permanent LUN with all of my CD-ROM .ISO files and permanent virtual machines. Therefore, any 1 TB LUN is a lab-use LUN that I can break down and re-use as needed.&lt;/p&gt;
&lt;p&gt;Above all else, dedicated storage allows the lab to reset and be rebuilt. Whether or not virtualization is in play, it is important to have a storage environment that is relatively removed from the constant tear-down and rebuild of the lab systems.&lt;br /&gt;
&lt;em&gt;&lt;br /&gt;
How do you provision storage in your lab? Do you use a network-based storage protocol? If so, which product?&lt;/em&gt;&lt;/p&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;a href=&quot;http://ads.pheedo.com/click.phdo?s=a928a44b44faaeb53e9c8aac0026665f&amp;p=1&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://ads.pheedo.com/img.phdo?s=a928a44b44faaeb53e9c8aac0026665f&amp;p=1&quot; /&gt;&lt;/a&gt;
&lt;!-- foo --&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techrepublic/networking/~4/bK6X9L7kbxY&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 13:19:17 +0000</pubDate>
</item>
<item>
	<title>Everything Sysadmin: Motivation for sysadmins to write documentation</title>
	<guid>tag:everythingsysadmin.com,2010://2.340</guid>
	<link>http://everythingsysadmin.com/2010/03/motivation-for-sysadmins-to-wr.html</link>
	<description>&lt;a href=&quot;http://broadcast.oreilly.com/2010/03/sa-doc-motivation.html&quot;&gt;My new O'Reilly blogpost about getting the motivation to write docs.&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description>
	<pubDate>Mon, 15 Mar 2010 12:03:23 +0000</pubDate>
</item>
<item>
	<title>TechRepublic Network Administrator: Product Spotlight: Desktop Authority Password Self-Service</title>
	<guid>http://blogs.techrepublic.com.com/networking/?p=2753</guid>
	<link>http://feedproxy.google.com/~r/techrepublic/networking/~3/TRH2yKVsLVY/</link>
	<description>&lt;p&gt;&lt;em&gt;Derek Schauland introduces the Desktop Authority Password Self-Service app from ScriptLogic that allows users to reset their own passwords.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&lt;/p&gt;
&lt;p&gt;Keeping track of passwords is increasingly difficult, with PIN numbers, bank passwords, Web site logons, Windows passwords, and more; it&amp;#8217;s an ever-increasing list to manage. It&amp;#8217;s also no wonder that the password reset feature gets used so often.&lt;/p&gt;
&lt;p&gt;In business, the Windows logon password is the key to many employees&amp;#8217; work lives. Occasionally, they are going to forget their password or enter it incorrectly too many times, which may lock them out for a period of time. This is where &lt;a href=&quot;http://www.scriptlogic.com/products/password-self-service/&quot; target=&quot;_blank&quot;&gt;Desktop Authority Password Self-Service&lt;/a&gt; (DAPSS) by ScriptLogic comes in, helping out users and help desk staff in a pinch.&lt;/p&gt;
&lt;h2&gt;Specifications&lt;/h2&gt;
&lt;p&gt;DAPSS requires SQL 2000 or 2005 for data storage and reporting and Internet Information Server on the server end.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Supported operating systems&lt;/strong&gt;:&lt;/p&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; Windows 2000&lt;/li&gt;
&lt;li&gt; Windows XP&lt;/li&gt;
&lt;li&gt; Windows Vista&lt;/li&gt;
&lt;li&gt; Windows 7&lt;/li&gt;
&lt;li&gt; Windows Server 2003 SP1 or higher&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Who&amp;#8217;s it for?&lt;/h2&gt;
&lt;p&gt;DAPSS is great for organizations of all sizes where resources are stretched thin or at a premium because of other challenges. The product also licenses for about US$7 per user, less if you are already a Desktop Authority customer, which makes the application very affordable for organizations of any size.&lt;/p&gt;
&lt;h2&gt;What problem does it solve?&lt;/h2&gt;
&lt;p&gt;The application puts password control in the hands of the users. Allowing a user to change an expired or forgotten password or unlock a user account by answering some challenge questions eliminates the need for the user to call the help desk. It also makes the password accessible 24 hours per day. This improves the convenience for the users as well.&lt;/p&gt;
&lt;h2&gt;Standout features&lt;/h2&gt;
&lt;p&gt;DAPSS is very easy to configure. The user information is imported from Active Directory to speed setup and avoid record duplication. The tool also comes with a help desk component which allows users to get help if they have not yet registered with the service or need help getting the hang of it. Because the help desk does not need to access the user account directly to reset the password or unlock the account, the users needing help will get it much faster.&lt;/p&gt;
&lt;p&gt;The user experience within the application is very simple. You can search for a user&amp;#8217;s account by certain characteristics from the user name to partial first or last name. Challenge questions are configured during the initial setup and used to aid with the account actions going forward.&lt;/p&gt;
&lt;p&gt;DAPSS includes a free trial to allow you to test it in your environment with a pilot group or to get it configured and ensure it works as needed before paying for a license.&lt;/p&gt;
&lt;h4&gt;Figure A&lt;/h4&gt;
&lt;div class=&quot;wp-caption alignnone&quot;&gt;&lt;a href=&quot;http://content.techrepublic.com.com/2347-10878_11-378416-402666.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://i.techrepublic.com.com/gallery/402666-500-214.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;214&quot; /&gt;&lt;/a&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;Click to enlarge.&lt;/p&gt;&lt;/div&gt;
&lt;h6&gt;The user experience for registered users of Password Self-Service&lt;/h6&gt;
&lt;h4&gt;Figure B&lt;/h4&gt;
&lt;div class=&quot;wp-caption alignnone&quot;&gt;&lt;a href=&quot;http://content.techrepublic.com.com/2347-10878_11-378416-402667.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://i.techrepublic.com.com/gallery/402667-500-225.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;225&quot; /&gt;&lt;/a&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;Click to enlarge.&lt;/p&gt;&lt;/div&gt;
&lt;h6&gt;The Admin console&lt;/h6&gt;
&lt;h2&gt;What&amp;#8217;s wrong?&lt;/h2&gt;
&lt;p&gt;Changing the password policies at any organization can be a challenge for IT, but will be a benefit for the users in the long run. It will take some time to change the habit of your users to manage their own passwords rather than calling the help desk.&lt;/p&gt;
&lt;p&gt;Because users are allowed to manage their own passwords through a Web interface, some vulnerability is introduced. Social engineering scammers (or just employees who already know a lot about each other) could guess the answers to challenge questions for their fellow users, leaving the door open to unauthorized use of accounts.&lt;/p&gt;
&lt;p&gt;The application can set the questions to be configured by the user, and the answers to these questions are specific to the user, but employees should be cautioned to create questions that are &amp;#8220;secret&amp;#8221; or at least, would be very hard to guess. In production, it would make sense to refresh the challenge questions every year or so, just to keep things more secure.&lt;/p&gt;
&lt;h2&gt;Competitive products&lt;/h2&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; &lt;a href=&quot;http://www.aspg.com/react.htm&quot; target=&quot;_blank&quot;&gt;ReAct Password Reset&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.manageengine.com/products/passwordmanagerpro/&quot; target=&quot;_blank&quot;&gt;Password Manager Pro&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.sysoptools.com/password-reset-pro.aspx&quot; target=&quot;_blank&quot;&gt;Password Reset PRO for Active Directory&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Bottom line for business&lt;/h2&gt;
&lt;p&gt;If your help desk staff is overwhelmed by projects or day to day operations, allowing users to maintain their own passwords can be a huge time saver for everyone. Allowing password resets and account unlocking to be handled completely by the user can also removes frustration on the part of the employee because the employee does not need to contact the help desk and wait until they have time to assist.&lt;/p&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;a href=&quot;http://ads.pheedo.com/click.phdo?s=60ba9a2b34d030c73f0acbc3bed67143&amp;p=1&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://ads.pheedo.com/img.phdo?s=60ba9a2b34d030c73f0acbc3bed67143&amp;p=1&quot; /&gt;&lt;/a&gt;
&lt;!-- foo --&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techrepublic/networking/~4/TRH2yKVsLVY&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 12:00:36 +0000</pubDate>
</item>
<item>
	<title>Anton Chuvakin - Security Warrior: RSA 2010 – Day 1 Metricon</title>
	<guid>tag:blogger.com,1999:blog-19553129.post-8960777324333522946</guid>
	<link>http://feedproxy.google.com/~r/AntonChuvakinPersonalBlog/~3/n9p5S5MSnog/rsa-2010-day-1-metricon.html</link>
	<description>&lt;p&gt;Let me start my [much delayed] coverage of &lt;a href=&quot;http://chuvakin.blogspot.com/search/label/RSA&quot;&gt;RSA&lt;/a&gt; 2010 conference with the awesomeness of &lt;a href=&quot;http://www.securitymetrics.org/content/Wiki.jsp&quot;&gt;Metricon 4.5&lt;/a&gt; (technically, a &lt;a href=&quot;http://www.securitymetrics.org/content/Wiki.jsp?page=MetriCon4.5&quot;&gt;Mini-Metricon 4.5&lt;/a&gt; :-)) where I spent my first RSA day (sacrificing the &lt;a href=&quot;http://www.cloudsecurityalliance.org/guidance/&quot;&gt;Cloud Security Alliance&lt;/a&gt; meeting that was reported to be packed).&lt;/p&gt;  &lt;p&gt;Here is an agenda for the meeting with my comments:&lt;/p&gt;  &lt;p&gt;&lt;i&gt;08:45 - 10:05&lt;/i&gt;: Morning Session I - Chair: &lt;i&gt;Jeremy Epstein&lt;/i&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Qualitative Tuning as Preparation for Quantitative Methods, &lt;i&gt;Pete Lindstrom&lt;/i&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;This was one of the most fun presentations, focusing on expert opinion vs. fact/metric in security. Pete showed an interesting approach for assessing the opinions in order to come up with something that looks more like fact.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Metrics for insights on the state of application security, &lt;i&gt;Ashish Larivee&lt;/i&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;This was an interesting presentation of Veracode research of binary analysis (&lt;a href=&quot;http://www.veracode.com/reports/index.html&quot;&gt;paper&lt;/a&gt;, &lt;a href=&quot;http://www.veracode.com/content/view/1015/38&quot;&gt;some highlights&lt;/a&gt;). A few thing actually blew me away first, but, upon further consideration, started to look perfectly logical. For example,&amp;#160; software industry is worse at developing secure software than financial service industry. It can be explained that FS folks develop only mission-critical software though. Still, this seems to prove that in some areas “if you want it done well, do it yourself and do NOT trust the professionals to do it” :-) In fact, commercial software overall fared worse [vulnerability-wise] than internally developed AND outsourced software. It also had longest remediation cycle, while open source had the shortest (for methodology details see their full &lt;a href=&quot;http://www.veracode.com/reports/index.html&quot;&gt;report&lt;/a&gt;)&lt;/p&gt; &lt;i&gt;10:20 - 11:40&lt;/i&gt;: Morning Session II - Chair: Joe Magee   &lt;ul&gt;   &lt;li&gt;Translating the Narrative into Metrics: The Verizon Incident Sharing Framework,&lt;i&gt;Alex Hutton and Wade Baker&lt;/i&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Verizon VerIS was released via this presentation (&lt;a href=&quot;http://securityblog.verizonbusiness.com/2010/02/19/veris-framework-2/&quot;&gt;release&lt;/a&gt;, &lt;a href=&quot;http://www.verizonbusiness.com/resources/whitepapers/wp_verizon-incident-sharing-metrics-framework_en_xg.pdf&quot;&gt;exec summary&lt;/a&gt;, &lt;a href=&quot;http://securityblog.verizonbusiness.com/wp-content/uploads/2010/03/VerIS_Framework_Beta_1.pdf&quot;&gt;document [PDF]&lt;/a&gt;). VerIS “translates the incident narrative (&lt;em&gt;the attacker did this, then that, then the other thing&lt;/em&gt;) into a data set” and thus allows the creation of such awesomeness as &lt;a href=&quot;http://securityblog.verizonbusiness.com/2009/04/15/2009-dbir/&quot;&gt;DBIR&lt;/a&gt;.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Ontologies for Modeling Enterprise Level Security Metrics, &lt;i&gt;Anoop Singhal&lt;/i&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;This presentation was a bit of a cruel joke. It carried unfortunate signs of being done by somebody who never ventured in the real world of security (for example, single number “asset value”, “risk = damageValue”, “security measures that reduce the frequency of attacks”, etc, etc, etc). And, what was even more embarrassing, it came after the stellar presentation by the Verizon team; I think I have seen the grimaces on their faces :-) And every time the NIST speaker mentioned “this was done on tax payer dime” or uttered the word “ontology”, I wanted to just reach for a ShmooBall. To make his material even more insulting, he was also a bad presenter. Yuck!&lt;/p&gt; &lt;i&gt;13:10 - 14:40&lt;/i&gt;: Afternoon Session I - Chair: Caroline Wong   &lt;ul&gt;   &lt;li&gt;Improving CVSS-based vulnerability prioritization with business context information, &lt;i&gt;Christian Fruhwirth&lt;/i&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;This was a curious little preso that basically can be summarized in one phrase “using CVSS as it was intended by the original team – with Env scores – is valuable.” Even though there was one “cringe moment” when the speaker expected a normal distribution of vulnerability CVSS scores (pray tell me, why medium severity are more likely than low severity?) &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Security Metrics Field Research, &lt;i&gt;Ramon Krikken&lt;/i&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;This presentation by a Burton …eh... Gartner… analyst Ramon Krikken was hugely insightful. They did some metrics research among their clients and came up with some surprising conclusion that shows metrics programs largely in the Stone Age (in fact, what was before the Stone Age? Ah, yes, Sharpened Stick Age! The maybe the metrics are in that age…). Here are some of the themes, but get the presentation materials when they are posted – very worthwhile. As expected, “compliance metrics are easy; security metrics are hard”, “assessments and audits matter”, “need to map to ” and “ONLY prevention of ‘business being stopped’ matters at many companies.” The research showed no focus on improvements, no peer benchmarking, etc. Regarding tools, MS Excel was by far the #1, couple of times RSA/Archer and &lt;a href=&quot;http://chuvakin.blogspot.com/search/label/SIEM&quot;&gt;SIEM&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;i&gt;15:10 - 16:30&lt;/i&gt;: Afternoon Session II - Chair: Ray Kaplan &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Metrics for Cloud Security, &lt;i&gt;Lynn Terwoerds, Caroline Wong, Betsy Nichols&lt;/i&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;This panel announced that CSA is starting a cloud security metrics effort, which was in a VERY early stage. No material has been created yet.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Identifying critical information security areas with a Threat Agent Risk Assessment, &lt;i&gt;Matthew Rosenquist&lt;/i&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;I read the &lt;a href=&quot;http://communities.intel.com/servlet/JiveServlet/download/4693-1-3205/Prioritizing_Info_Security_Risks_with_TARA.pdf&quot;&gt;TARA paper&lt;/a&gt; back when it came out, but this presentation (and the discussion) was still VERY interesting. The main idea is that vulnerability or asset focused approach makes no sense since there are way too many vulnerabilities (presenter example was “data center is vulnerable to a meteor strike”) and thus the way to go is to focus on threat agents that are motivated to cause damage and that can realistically to do so. The logic thus becomes: threat agent –&amp;gt; vulnerability –&amp;gt; control –&amp;gt; what remains is the risk that needs to be dealt with somehow. But &lt;a href=&quot;http://communities.intel.com/servlet/JiveServlet/download/4693-1-3205/Prioritizing_Info_Security_Risks_with_TARA.pdf&quot;&gt;read the paper&lt;/a&gt; instead of this, Intel folks explain it much better :-)&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;So, as I said, Metricon was the most thought-provoking part of RSA for me! And I am not even mentioning the level of hallway discussions there…&lt;/p&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;About me: http://www.chuvakin.org&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/19553129-8960777324333522946?l=chuvakin.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/RzhSKgPjwDJp1oq-3L1-V3ooRdE/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/RzhSKgPjwDJp1oq-3L1-V3ooRdE/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/RzhSKgPjwDJp1oq-3L1-V3ooRdE/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/RzhSKgPjwDJp1oq-3L1-V3ooRdE/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=n9p5S5MSnog:2d4pMlqOIn4:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=n9p5S5MSnog:2d4pMlqOIn4:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=n9p5S5MSnog:2d4pMlqOIn4:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/AntonChuvakinPersonalBlog/~4/n9p5S5MSnog&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Mar 2010 10:39:37 +0000</pubDate>
	<author>noreply@blogger.com (Dr Anton Chuvakin)</author>
</item>
<item>
	<title>A Year in the Life of a BSD Guru: FreeBSD Lectures Captioning Project Complete</title>
	<guid>http://rss.ittoolbox.com/rss/37464@http://it.toolbox.com/blogs/bsd-guru</guid>
	<link>http://it.toolbox.com/blogs/bsd-guru/freebsd-lectures-captioning-project-complete-37464?rss=1</link>
	<description>&lt;a href=&quot;http://www.stokely.org/&quot;&gt;Murray Stokely&lt;/a&gt; has completed his captioning project and provides the following update:</description>
	<pubDate>Mon, 15 Mar 2010 08:45:38 +0000</pubDate>
</item>
<item>
	<title>Chris Siebenmann: How to create pointless error reports (and how not to)</title>
	<guid>tag:cspace@cks.mef.org,2009-03-24:/blog/sysadmin/GoodErrorReports</guid>
	<link>http://utcc.utoronto.ca/~cks/space/blog/sysadmin/GoodErrorReports</link>
	<description>&lt;div class=&quot;wikitext&quot;&gt;&lt;h2&gt;How to create pointless error reports (and how not to)&lt;/h2&gt;

&lt;p&gt;Linux's little love notes about &lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/linux/SoftwareRaidFail&quot;&gt;software RAID consistency errors&lt;/a&gt; makes a perfect example of something that
system administrators run into all the time: pointless error reports.&lt;/p&gt;

&lt;p&gt;It's worth noting that a pointless error report is something different
from a useless error report. A useless error report tells you that
something has gone wrong but doesn't identify what it is, what exactly
has gone wrong, and so on; you have to hunt that down on your own. A
pointless error report shouldn't even have been generated in the first
place, at least not in the form that you get it in. &lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/sysadmin/InformativeMonitoring&quot;&gt;Noise from
monitoring systems&lt;/a&gt; is one form of pointless
error reports.&lt;/p&gt;

&lt;p&gt;So what makes a pointless error report? The aforementioned &lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/linux/SoftwareRaidFail&quot;&gt;software
RAID errors&lt;/a&gt; have at least three things wrong
with them, namely that the error happens all the time, that the 'error'
is actually (in theory) something that happens routinely, and that
there's nothing you can do about the error in practice. Complaining
about non-errors that happen all the time that you can't do anything
about anyways is pretty much the jackpot in terms of pointless error
reports.&lt;/p&gt;

&lt;p&gt;We can turn this around to create a list of what makes a good error
report for sysadmins:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;it is complaining about a real error (not a routine and theoretically
harmless event)&lt;/li&gt;
&lt;li&gt;... that does not happen all the time&lt;/li&gt;
&lt;li&gt;... that is actively dangerous&lt;/li&gt;
&lt;li&gt;... that you can (and should) do something about&lt;/li&gt;
&lt;li&gt;it contains a clear description of what is wrong&lt;/li&gt;
&lt;li&gt;it contains all of the details about the situation that are known,
provided that those details are useful for resolving the problem
(and not merely useful for debugging the code)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Things that fail some of these criteria may be useful to log and capture
for historical purposes, but they do not rise to the level of useful
error reports. Failing any of the first four points makes an error
report pointless; failing the last two makes it more or less useless.&lt;/p&gt;

&lt;p&gt;I include 'is actively dangerous' on the list of important points
because there are always things happening on any system that might be
worthy of note, for example people trying brute force attacks on your
ssh port. What should create error reports is not merely something
wrong, but something that is bad enought that it needs to be dealt with.
Someone failing to get in to your system with ssh is not worthy of a
report; someone ssh'ing in to root and getting the password right but
being refused access because you have &lt;code&gt;PermitRootLogin&lt;/code&gt; set to &lt;code&gt;no&lt;/code&gt; in
the sshd configuration, now that is worthy of an error report.&lt;/p&gt;
&lt;/div&gt;</description>
	<pubDate>Mon, 15 Mar 2010 05:46:12 +0000</pubDate>
</item>
<item>
	<title>League of Professional System Administrators: LOPSA Sponsoring LinuxFest Northwest</title>
	<guid>http://lopsa.org/node/1906</guid>
	<link>http://lopsa.org/node/1906</link>
	<description>&lt;div class=&quot;event-nodeapi&quot;&gt;&lt;div class=&quot;flexinode-1-start&quot;&gt;&lt;label&gt;Start: &lt;/label&gt;2010-04-24 10:00&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;event-nodeapi&quot;&gt;&lt;div class=&quot;flexinode-1-end&quot;&gt;&lt;label&gt;End: &lt;/label&gt;2010-04-25 17:00&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;event-nodeapi&quot;&gt;&lt;div class=&quot;flexinode-1-tz&quot;&gt;&lt;label&gt;Timezone: &lt;/label&gt;US/Pacific&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;flexinode-body flexinode-1&quot;&gt;&lt;div class=&quot;flexinode-textarea-1&quot;&gt;&lt;div class=&quot;form-item&quot;&gt;
 &lt;p&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.linuxfestnorthwest.org/&quot;&gt;&lt;img alt=&quot;Linuxfest Northwest 2010 - April 24-25th&quot; src=&quot;http://linuxfestnorthwest.org/system/files/lfnw2010horz-badge.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Lopsa is proud to be a sponsor and have a booth at the 10th annual LinuxFest Northwest conference this year.  There are &lt;a href=&quot;http://linuxfestnorthwest.org/sessions&quot; title=&quot;reference on great talks&quot; target=&quot;_blank&quot;&gt;great talks&lt;/a&gt; including sessions by LOPSA members &lt;a href=&quot;http://linuxfestnorthwest.org/sessions/backup-your-business-and-home-data-backuppc&quot; title=&quot;reference on Ski Kacoroski&quot; target=&quot;_blank&quot;&gt;Ski Kacoroski&lt;/a&gt; and &lt;a href=&quot;http://linuxfestnorthwest.org/sessions/centralized-logging-syslog-ng-and-sec&quot; title=&quot;reference on Leon Towns-von Stauber&quot; target=&quot;_blank&quot;&gt;Leon Towns-von Stauber&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://lopsa.org/node/1906&quot; dc:identifier=&quot;http://lopsa.org/node/1906&quot; dc:title=&quot;LOPSA Sponsoring LinuxFest Northwest&quot; trackback:ping=&quot;http://lopsa.org/trackback/1906&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;</description>
	<pubDate>Sun, 14 Mar 2010 18:52:35 +0000</pubDate>
</item>
<item>
	<title>Everything Sysadmin: How to &quot;un-send&quot; email.</title>
	<guid>tag:everythingsysadmin.com,2010://2.339</guid>
	<link>http://everythingsysadmin.com/2010/03/how-to-un-send-email.html</link>
	<description>&lt;p&gt;It is a fact of modern life that you can't unsend email.  The problem is that to really unsend email you need a time travel device.&lt;/p&gt;

&lt;p&gt;It's a shame, really.&lt;/p&gt;

&lt;p&gt;MS-Exchange has the ability to send a request that will hide the email, but most non-Exchange providers don't support the protocol. Besides, the horse has left the barn.  You can't put the toothpaste back in the tube.&lt;/p&gt;

&lt;p&gt;Gmail has the ability to &lt;a href=&quot;http://gmailblog.blogspot.com/2009/03/new-in-labs-undo-send.html&quot;&gt;unsend an email if you sent it in the last 10 seconds&lt;/a&gt;.  Useful and cute, but not awesome. (Awesomer is their &quot;&lt;a href=&quot;http://gmailblog.blogspot.com/2008/10/new-in-labs-stop-sending-mail-you-later.html&quot;&gt;prove you are sober before sending a message&lt;/a&gt;&quot; feature.)&lt;/p&gt;

&lt;p&gt;One way to mitigate this risk of wishing you had an &quot;undo&quot; is to send out a first paragraph plus a URL to the entire message. This way you can rewrite, refine, and update the body of the email as much as you want.&lt;/p&gt;

&lt;p&gt;We use this technique at work.  Suppose we want to tell people that the printing system will be down on Thursday evening so that we can upgrade the print server software.  We put the basic message in a 1-paragraph email, and list a link to a document with more info. The link might be to a ticket # that tracks the issue, or a blog post (yes, we have internal blogs), a web page, or a document. We can constantly update the document over time.&lt;/p&gt;

&lt;p&gt;Maybe we should extend this.  All email should be a subject line plus a URL to the actual message.  Made a typo?  Correct it.  Regretted what you said?  Delete it.  Called your boss an asshole?  Change it to be a loverletter.&lt;/p&gt;

&lt;p&gt;You still need to get the subject right, but the message can change.  Maybe we could invent a way for the email to be &quot;frozen&quot; once the person reads it (one way would be for the email client to cache the message once it is downloaded).  Spammers would have a harder time spamming us, since we'd be able to track their message back to their web site and therefore identifying them would be, well, if not easier, differently harder.&lt;/p&gt;

&lt;p&gt;Or maybe we shouldn't even send email.  The user interface would still look the same.  Behind the scenes it would just be sending URLs.&lt;/p&gt;

&lt;p&gt;Usenet made this transition.  Usenet was replaced by RSS feeds, which are just lists of URLs.  Maybe email should make the same change.&lt;br /&gt;
&lt;/p&gt;</description>
	<pubDate>Sun, 14 Mar 2010 16:37:40 +0000</pubDate>
</item>
<item>
	<title>TaoSecurity: Verizon Incident Sharing Framework</title>
	<guid>tag:blogger.com,1999:blog-4088979.post-7002289760570301572</guid>
	<link>http://taosecurity.blogspot.com/2010/03/verizon-incident-sharing-framework.html</link>
	<description>&lt;img src=&quot;http://3.bp.blogspot.com/_Z-tqVTd9fPI/SFB4pmXOSTI/AAAAAAAAAfQ/sjZcfS5u5sc/s400/header.jpg&quot; align=&quot;left&quot; /&gt;Earlier this month Verizon Business announced their &lt;a href=&quot;http://securityblog.verizonbusiness.com/2010/03/01/veris-framework/#more-627&quot;&gt;Verizon Incident Sharing Framework&lt;/a&gt; (VerIS framework).  This document is a means to describe digital security incidents, using four main groupings: 1. Demographics, 2. Incident Classification, 3. Discovery and Mitigation, and 4. Impact Classification.  &lt;br /&gt;&lt;br /&gt;The idea is to provide a framework that incident investigators can complete for every digital security incident.  Using the output, security teams can better identify trends and make recommend improved security strategies and tactics.  For example, Verizon builds their &lt;a href=&quot;http://verizonbusiness.com/databreach&quot;&gt;Data Breach Investigation Report&lt;/a&gt; using data from their incident responses as formatted using the VerIS framework.&lt;br /&gt;&lt;br /&gt;Verizon asked me to participate on a &quot;board&quot; affiliated with this project, so you can expect to hear more from me.  Verizon started a &lt;a href=&quot;http://discussions.zoho.com/veris-metrics#AllForums&quot;&gt;Zoho Forum&lt;/a&gt; to discuss the framework, but I think a Wiki would better facilitate collaboration and development of the document.  At work we are working on our next generation incident management system, so I think the VerIS framework might help us identify information to collect on incidents.&lt;div class=&quot;blogger-post-footer&quot;&gt;Copyright 2003-2009 Richard Bejtlich and TaoSecurity (taosecurity.blogspot.com and www.taosecurity.com)&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/4088979-7002289760570301572?l=taosecurity.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Sun, 14 Mar 2010 16:16:20 +0000</pubDate>
	<author>noreply@blogger.com (Richard Bejtlich)</author>
</item>
<item>
	<title>Standalone Sysadmin: Blog Upgraded and Fixed</title>
	<guid>http://www.standalone-sysadmin.com/blog/?p=1291</guid>
	<link>http://feedproxy.google.com/~r/standalone-sysadmin/rWoU/~3/FxvYYcg1FGQ/</link>
	<description>&lt;p&gt;Hi All, &lt;/p&gt;
&lt;p&gt;I spent some time last night upgrading the blog to the latest versions of Wordpress and plugins. I also added a mobile version of the site, so handheld device users can actuallly use the site now without zooming in. &lt;/p&gt;
&lt;p&gt;Also, with the help of Greg over at &lt;a href=&quot;http://rejectreality.net/&quot;&gt;Reject Reality&lt;/a&gt;, I got WP SuperCache working. This will hopefully let the blog take more and more traffic as time goes on, and delay me ordering a new virtual host (I go with the guys at &lt;a href=&quot;http://prgmr.com&quot;&gt;prgmr.com&lt;/a&gt;). &lt;/p&gt;
&lt;p&gt;Anyway, the point of this post is to ask you to let me know if you notice anything strange. Drop me an &lt;a href=&quot;mailto:standalone.sysadmin@gmail.com&quot;&gt;email&lt;/a&gt; if you see anything weird, or if the mobile site shows up but shouldn&amp;#8217;t, or any of that. This is my blog, and I write in it, but you all are the ones who are good enough to read my stuff. The least I could do is make it easily accessible to you. &lt;/p&gt;
&lt;p&gt;Thanks for your patience, and thanks for reading! &lt;/p&gt;
&lt;p&gt;PS &amp;#8211; I&amp;#8217;ve added a Google Translate widget to the far right bar. This is the first step in what I hope will be many that enable this blog to be read by non-english speaking people from around the world. Please let me know if you have any questions or problems with it. &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/hhwqlMje_JGwjVkCe7i06JF4gKg/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/hhwqlMje_JGwjVkCe7i06JF4gKg/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/hhwqlMje_JGwjVkCe7i06JF4gKg/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/hhwqlMje_JGwjVkCe7i06JF4gKg/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?a=FxvYYcg1FGQ:GQaye5fmWIs:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/standalone-sysadmin/rWoU/~4/FxvYYcg1FGQ&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Sun, 14 Mar 2010 15:00:30 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Silly season: DST is approaching</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj1</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj1</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Sony PS3: Yet Another leap year folly</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj2</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj2</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Sony thinks 2010 is a leap year</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj3</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj3</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Old models of PS3 failed to connect to network due to leap-year miscalculation</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj4</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj4</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Re: The Century Bug Will Repeat</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj5</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj5</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Death in the Atlantic: The Last 4 Minutes of Air France Flight 447</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj6</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj6</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Software flaws may be at the root of Toyota's woes</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj7</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj7</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Risk: Toyota secretive on 'black box' data</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj8</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj8</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Breakthrough in Electron Spin Control Brings Quantum Computers Closer to  Reality</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj9</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj9</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: German Data Retention Law Overturned</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj10</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj10</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: USGov rescinds 'leave Internet alone' policy</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj11</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj11</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Man posts &quot;wanted&quot; poster of himself on own Facebook page</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj12</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj12</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Car insurance bug</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj13</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj13</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: Daily cyber attacks on the UK</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj14</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj14</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>RISKS Digest: &quot;Traffic analysis&quot; from data</title>
	<guid>http://catless.ncl.ac.uk/Risks/25.96.html#subj15</guid>
	<link>http://catless.ncl.ac.uk/Risks/25.96.html#subj15</link>
	<pubDate>Sun, 14 Mar 2010 10:16:40 +0000</pubDate>
</item>
<item>
	<title>Chris Siebenmann: Space and content</title>
	<guid>tag:cspace@cks.mef.org,2009-03-24:/blog/web/SpaceAndContent</guid>
	<link>http://utcc.utoronto.ca/~cks/space/blog/web/SpaceAndContent</link>
	<description>&lt;div class=&quot;wikitext&quot;&gt;&lt;h2&gt;Space and content&lt;/h2&gt;

&lt;p&gt;One of the things that's been driven into me in the process of writing
&lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/&quot;&gt;WanderingThoughts&lt;/a&gt; is that the amount of horizontal and vertical space
that your content sits in does affect its readability (even when it
is not absurdly small or absurdly large), and in turn this affects
how you write your content. Some things only look right when inside
narrow margins and look horrible when expanded outside of that, and vice
versa. The same is true in many ways for vertical space and how much is
visible at once.&lt;/p&gt;

&lt;p&gt;More concretely, my entries for &lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/&quot;&gt;WanderingThoughts&lt;/a&gt; often have relatively
short paragraphs. One reason for this is that I both preview and read
&lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/&quot;&gt;WanderingThoughts&lt;/a&gt; entries with relatively narrow margins.  Short
paragraphs wind up looking right for me in this environment and long
paragraphs often look wrong, and this holds true even though the longer
paragraphs look perfectly fine in my editor, sometimes even preferable;
often it feels somewhat unnatural to write paragraphs that are only two
or three sentences long, although I know they'll look right in the end.&lt;/p&gt;

&lt;p&gt;(What I think happens is that when my horizontal margins shrink,
paragraphs look bulkier and longer because they take up more vertical
space. Similarly, when horizontal margins widen, paragraphs look smaller
and shorter, eventually reaching a point of unreadable absurdity.)&lt;/p&gt;

&lt;p&gt;What I take from this and from related experiences is that you cannot
really divorce content from its presentation. Your knowledge of how
things look (and how they will look) will affect how you put your
content together, and so your website's layout affects how you structure
your writing. If you revise your website's fundamental layout, you may
well wind up structuring your writing differently.&lt;/p&gt;

&lt;p&gt;The side effect of writing this down is that I now feel somewhat more
sympathy for people who try to create fixed-size, fixed-font website
layouts. In this view, they're responding to this with an attempt to
make sure that everyone will see the content the same way.&lt;/p&gt;

&lt;p&gt;(I still think it's a misguided attempt. Even if you control the
width of the content area you can't necessarily control the size
of the user's fonts, and it is the interrelationship between the
two that matters.)&lt;/p&gt;

&lt;p&gt;One obvious corollary is that a blog's support for draft entries
should let you preview them in something that is as close to the
real site layout as possible, complete with your usual sidebars
and so on, so that you can see how everything fits together.&lt;/p&gt;

&lt;p&gt;(How important this is depends on how intrusive your sidebars
and header and so on are.)&lt;/p&gt;
&lt;/div&gt;</description>
	<pubDate>Sun, 14 Mar 2010 06:59:33 +0000</pubDate>
</item>
<item>
	<title>Samuel Huckins: Tune MySQL like a pro with MySQLTuner</title>
	<guid>http://dancingpenguinsoflight.com/?p=1447</guid>
	<link>http://dancingpenguinsoflight.com/2010/03/tune-mysql-like-a-pro-with-mysqltuner/</link>
	<description>&lt;p&gt;I don&amp;#8217;t know why I didn&amp;#8217;t know about this before (or why I forgot about it, more likely), but I came across &lt;a title=&quot;MySQLTuner blog&quot; target=&quot;_blank&quot; href=&quot;http://blog.mysqltuner.com/&quot;&gt;MySQLTuner&lt;/a&gt; recently and was most pleasantly surprised. It&amp;#8217;s a Perl script that only requires your MySQL user and password to provide detailed and useful checks of a running MySQL instance. First though, check out the awesome URL you &lt;a title=&quot;MySQLTuner download&quot; target=&quot;_blank&quot; href=&quot;http://blog.mysqltuner.com/download/&quot;&gt;download it&lt;/a&gt; at:&lt;/p&gt;
&lt;div class=&quot;codecolorer-container bash blackboard&quot;&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;div&gt;1&lt;br /&gt;&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;div class=&quot;bash codecolorer&quot;&gt;&lt;span&gt;wget&lt;/span&gt; mysqltuner.pl&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;p&gt;Yeah, that&amp;#8217;s the actual URL that works. Pretty sweet.&lt;/p&gt;
&lt;p&gt;Anyway, next you make it executable, run it, enter creds:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://dancingpenguinsoflight.com/wp-content/uploads/2010/03/Screenshot1.png&quot; alt=&quot;Get MySQLTuner running&quot; title=&quot;MySQLTuner_first-steps&quot; width=&quot;613&quot; height=&quot;414&quot; class=&quot;size-full wp-image-1452&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Then the goodies appear:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://dancingpenguinsoflight.com/wp-content/uploads/2010/03/results.png&quot; alt=&quot;MySQLTuner Results&quot; title=&quot;MySQLTuner_results&quot; width=&quot;640&quot; height=&quot;630&quot; class=&quot;size-full wp-image-1449&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Oh, that query_cache_limit is tiny! At this point, no changes have been made to your setup. But at a glance you get helpful stats, validate that changes you&amp;#8217;ve decided to make are in place, and get alerted to potential improvements.&lt;/p&gt;
&lt;p&gt;If I knew Perl now and refreshed my MySQL tuning knowledge, I&amp;#8217;d love to help as a &lt;a href=&quot;http://blog.mysqltuner.com/2010/01/searching-for-a-new-mysqltuner-maintainer/&quot;&gt;maintainer&lt;/a&gt; of this lovely script. Maybe sometime soon&amp;#8230;&lt;/p&gt;</description>
	<pubDate>Sat, 13 Mar 2010 23:22:10 +0000</pubDate>
</item>
<item>
	<title>The FreeBSD Diary: Monitoring your HDD using SMART and Nagios</title>
	<guid>http://www.freebsddiary.org/smart.php</guid>
	<link>http://www.freebsddiary.org/smart.php</link>
	<description>Checking your HDD!</description>
	<pubDate>Sat, 13 Mar 2010 20:46:31 +0000</pubDate>
</item>
<item>
	<title>TaoSecurity: Bejtlich Keynote at VizSec 2010</title>
	<guid>tag:blogger.com,1999:blog-4088979.post-7140668177479711869</guid>
	<link>http://taosecurity.blogspot.com/2010/03/bejtlich-keynote-at-vizsec-2010.html</link>
	<description>&lt;img src=&quot;http://3.bp.blogspot.com/_Z-tqVTd9fPI/S2roBQdNJkI/AAAAAAAABuQ/vEVELQ7ZTUw/s400/vizsec2010.jpg&quot; align=&quot;left&quot; /&gt;I am pleased to report that I've been invited to deliver the &lt;a href=&quot;http://www.vizsec2010.org/speakers&quot;&gt;keynote&lt;/a&gt; at &lt;a href=&quot;http://www.vizsec2010.org/&quot;&gt;VizSec 2010&lt;/a&gt; on 14 Sep in Ottawa, Ontario.  I am on the &lt;a href=&quot;http://www.vizsec2010.org/committees&quot;&gt;Program Committee&lt;/a&gt; for a third year and will be evaluating papers soon.  Please visit my post on &lt;a href=&quot;http://taosecurity.blogspot.com/2010/02/dfrws-vizsec-and-raid-2010-calls-for.html&quot;&gt;calls for papers&lt;/a&gt; for DFRWS, VizSec, and RAID.  Thank you.&lt;div class=&quot;blogger-post-footer&quot;&gt;Copyright 2003-2009 Richard Bejtlich and TaoSecurity (taosecurity.blogspot.com and www.taosecurity.com)&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/4088979-7140668177479711869?l=taosecurity.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Sat, 13 Mar 2010 16:25:09 +0000</pubDate>
	<author>noreply@blogger.com (Richard Bejtlich)</author>
</item>
<item>
	<title>Security Monkey: Rootkit In The Closet: The Discovery and Disassembly of a Linux Shared Library Rootkit</title>
	<guid>http://rss.ittoolbox.com/rss/37447@http://it.toolbox.com/blogs/securitymonkey</guid>
	<link>http://it.toolbox.com/blogs/securitymonkey/rootkit-in-the-closet-the-discovery-and-disassembly-of-a-linux-shared-library-rootkit-37447?rss=1</link>
	<description>There's been a lot of talk over the years about &lt;a href=&quot;http://en.wikipedia.org/wiki/Rootkit#Kernel_level&quot;&gt;kernel-level rootkits&lt;/a&gt; in linux.

Typically the attacker will gain access to a mis-configured (or neglected) linux box via an exploitable service, gain root access, and then load a tainted kernel module, or replace the existing kernel (noisy, fairly uncommon).  This is not an all-inclusive list of course.

The less talked about half-brother of the kernel rootkit world is a</description>
	<pubDate>Sat, 13 Mar 2010 11:39:44 +0000</pubDate>
</item>
<item>
	<title>Steve Kemp's Blog: You do know there are more guns in the country than there are in the city.</title>
	<guid>http://blog.steve.org.uk/you_do_know_there_are_more_guns_in_the_country_than_there_are_in_the_city_.html</guid>
	<link>http://blog.steve.org.uk/you_do_know_there_are_more_guns_in_the_country_than_there_are_in_the_city_.html</link>
	<description>&lt;p&gt;&lt;b&gt;Lenny Backports&lt;/b&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;After a couple of days I've spotted a few things that don't work so well on Lenny:&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;gtk-gnutella&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;
 &lt;p&gt;&lt;a href=&quot;http://packages.debian.org/gtk-gnutella&quot;&gt;gtk-gnutella&lt;/a&gt; is a client for a peer-to-peer filesharing system.  Unfortunately the version of the client in Lenny dies on startup &quot;This version is too old to connect&quot;.&lt;/p&gt;
&lt;/dd&gt;
&lt;dt&gt;&lt;b&gt;gimp&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;
 &lt;p&gt;The graphics program, The Gimp, doesn't show a live preview when carrying out things such as colour desaturation.&lt;/p&gt;
 &lt;p&gt;Although not an insurmountable problem it is moderately annoying if you do such things often.&lt;/p&gt;
&lt;/dd&gt;
&lt;/dl&gt;&lt;/blockquote&gt;
&lt;p&gt;So I've placed &lt;a href=&quot;http://packages.steve.org.uk&quot;&gt;backported packages&lt;/a&gt; online.&lt;/p&gt;
&lt;p&gt;I expected to have to backport KVM, and I guess I realised I needed a new kernel to match too. So they're available in the &lt;a href=&quot;http://packages.steve.org.uk/kvm-hosting/&quot;&gt;kvm-hosting&lt;/a&gt; repository; take the kernel with &quot;birthday&quot; in its name - the other is more minimal and has no USB support, etc.&lt;/p&gt;


&lt;p&gt;&lt;b&gt;blog spam&lt;/b&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Since I last reset the statistics the &lt;a href=&quot;http://blogspam.net/&quot;&gt;blog spam detector&lt;/a&gt; has reported, rejected, and refused just over half a million bogus comments.&lt;/p&gt;
&lt;p&gt;It can and should do better.&lt;/p&gt;
&lt;p&gt;I've been planning on overhauling this for some time; even to the extent of wondering if I can move the XML::RPC service into a C daemon with embedded lua/perl to do the actual analysis.&lt;/p&gt;
&lt;p&gt;(Right now the whole service is Perl, but I'm a little suspicious of the XML::RPC library - my daemon dies at times and I don't understand why.)&lt;/p&gt;
&lt;p&gt;I'd say &quot;test suggestions welcome&quot;, but then I'd have to explain what is already done.  If you're curious &lt;a href=&quot;http://repository.steve.org.uk/cgi-bin/hgwebdir.cgi/blogspam/file/tip&quot;&gt;take a look at the code&lt;/a&gt;...&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;ObSubject: Hot Fuzz&lt;/p&gt;</description>
	<pubDate>Sat, 13 Mar 2010 07:46:47 +0000</pubDate>
</item>
<item>
	<title>Chris Siebenmann: A surprising lack: milter clients</title>
	<guid>tag:cspace@cks.mef.org,2009-03-24:/blog/spam/SeekingMilterClient</guid>
	<link>http://utcc.utoronto.ca/~cks/space/blog/spam/SeekingMilterClient</link>
	<description>&lt;div class=&quot;wikitext&quot;&gt;&lt;h2&gt;A surprising lack: milter clients&lt;/h2&gt;

&lt;p&gt;There's a lot of anti-spam programs and systems, so I'm generally
accustomed to being able to find a package to do pretty much any
anti-spam job that I want to get done. Which is why I'm all the more
surprised that it seems to be impossible to find milter clients or
client libraries.&lt;/p&gt;

&lt;p&gt;The &lt;a href=&quot;http://en.wikipedia.org/wiki/Milter&quot;&gt;milter protocol&lt;/a&gt; started out
as a Sendmail specific interface, but today they've become essentially
the generic way to connect MTAs with various anti-spam filters and
services. You can get milter server implementations for lots of
languages, including Perl, Python, and Ruby, and people happily write
milters in all of them; what you can't seem to get is the other side,
the MTA client side, something that will let you talk to milter filters.&lt;/p&gt;

&lt;p&gt;On the surface, this sounds like a strange thing to want. But as I
mentioned, the milter interface has become the generic way to talk to
spam-filtering services and there are a number of times when you want
to check messages without having to shove them through an MTA; for
example, if you have a webmail system it might be nice to be able to run
anti-spam checks on a message when a user hits the 'send mail' button
and then take specific action within your web application if alarms go
off (especially &lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/spam/UniversityWebmailSpam&quot;&gt;these days&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Also, not all MTAs have built-in milter support but almost every MTA
can run external programs during message submission, and writing an
external program that just talks to a milter is much simpler (and more
maintainable) than hacking milter support into the MTA directly. Well,
it would be simpler if there were milter clients or client libraries,
especially for scripting languages like Perl, Python, or Ruby.&lt;/p&gt;

&lt;p&gt;(As it is, I have a low priority project of someday going through
&lt;a href=&quot;http://cpansearch.perl.org/src/AVAR/Sendmail-PMilter-0.98/doc/milter-protocol.txt&quot;&gt;the milter protocol&lt;/a&gt;
(via &lt;a href=&quot;http://pmilter.sourceforge.net/&quot;&gt;pmilter&lt;/a&gt;), and probably the
&lt;a href=&quot;http://www.bmsi.com/python/milter.html&quot;&gt;Python milter stuff&lt;/a&gt;, to
write a milter client module in Python. Then I can write something
to connect &lt;a href=&quot;http://www.exim.org/exim-html-current/doc/html/spec_html/ch41.html&quot;&gt;Exim's content scanning&lt;/a&gt; to
milter filters.)&lt;/p&gt;

&lt;p&gt;(PS: I'm aware that there is &lt;a href=&quot;http://lists.exim.org/lurker/message/20060527.134310.c2536cff.html&quot;&gt;a 2006 patch&lt;/a&gt; to
add milter support to Exim. Sadly, it doesn't seem to have gone anywhere
since 2006, and I can't even find a way to get the source code any more.)&lt;/p&gt;
&lt;/div&gt;</description>
	<pubDate>Sat, 13 Mar 2010 06:49:56 +0000</pubDate>
</item>
<item>
	<title>Security Monkey: Ubuntu PSA: Fixing Mountall Failure At Boot On Ubuntu Lucid Alpha</title>
	<guid>http://rss.ittoolbox.com/rss/37440@http://it.toolbox.com/blogs/securitymonkey</guid>
	<link>http://it.toolbox.com/blogs/securitymonkey/ubuntu-psa-fixing-mountall-failure-at-boot-on-ubuntu-lucid-alpha-37440?rss=1</link>
	<description>My reputation as a die-hard supporter of &lt;a href=&quot;http://www.ubuntu.com&quot;&gt;Ubuntu Linux&lt;/a&gt; apparently proceeds me.  A number of Ubuntu faithful who have recently upgraded to &lt;a href=&quot;http://www.ubuntu.com/testing/lucid/alpha3&quot;&gt;Lucid Alpha&lt;/a&gt; have encountered a nasty problem where, mid-boot, they are greeted with this error message:

&lt;code&gt;mountall: error while loading shared libraries: libplybootclient.so.2: cannot open shared object file: No such file or directory&lt;/code&gt;

Fear not, my fello</description>
	<pubDate>Fri, 12 Mar 2010 19:30:02 +0000</pubDate>
</item>
<item>
	<title>SysAdmin1138: The Novell purchase offer</title>
	<guid>tag:sysadmin1138.net,2010:/mt/blog//5.2410</guid>
	<link>http://feedproxy.google.com/~r/Sysadmin1138/~3/uMrEjVs3D0I/the-novell-purchase-offer.shtml</link>
	<description>I haven't mentioned the purchase proposal from Elliot Associates before now, in large part because coverage is a lot better elsewhere. For those of you who haven't paid attention, Elliot Associates, an investment fund, offered Novell a buy-out of $5.75/share. This is not the IBM purchase everyone has been expecting for the last 14 years. Until today, people had been theorizing that their motivation is to sell off the profitable bits, and quietly phase out the non-profitable bits while pocketing Novell's large cash stash.&lt;br /&gt;&lt;br /&gt;According to &lt;a href=&quot;http://money.cnn.com/news/newsfeeds/articles/prnewswire/NY69395.htm&quot;&gt;PRNews Wire&lt;/a&gt;, Elliot has no plans to slice-n-dice and plans to own the company. They can still do a lot, like kill products surviving more on nostalgia and a historical userbase rather than profitability, while living within their statements. Small encouragement, at least.&lt;br /&gt;
        
    &lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=uMrEjVs3D0I:_p_Sc4a7JAM:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=uMrEjVs3D0I:_p_Sc4a7JAM:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=uMrEjVs3D0I:_p_Sc4a7JAM:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=uMrEjVs3D0I:_p_Sc4a7JAM:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=uMrEjVs3D0I:_p_Sc4a7JAM:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=uMrEjVs3D0I:_p_Sc4a7JAM:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=uMrEjVs3D0I:_p_Sc4a7JAM:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=uMrEjVs3D0I:_p_Sc4a7JAM:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Sysadmin1138/~4/uMrEjVs3D0I&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 12 Mar 2010 18:48:56 +0000</pubDate>
</item>
<item>
	<title>TechRepublic Network Administrator: Building a robust test-lab at home with virtualization</title>
	<guid>http://blogs.techrepublic.com.com/networking/?p=2747</guid>
	<link>http://feedproxy.google.com/~r/techrepublic/networking/~3/ol-SJLziyEc/</link>
	<description>&lt;p&gt;Virtualization is not a new topic but how many of us use it at home? I hang around with a bunch of geeks, so all of my colleagues have been virtualizing at home since it has been possible.&lt;/p&gt;
&lt;p&gt;Early last year, I spent a couple of thousand dollars and set out to build a lab I could use for testing/development/training. Basically, the lab is for anything and everything that I cannot do on a company&amp;#8217;s production servers, including developing presentation scenarios that companies like so that they will hire me to reproduce them on their production servers!&lt;/p&gt;
&lt;p&gt;I thought I would share what set up I am using, in case you&amp;#8217;re thinking about this too. Or, if you have one of your own, I would appreciate your thoughts on the home lab.&lt;/p&gt;
&lt;p&gt;So this is what I am working with:&lt;/p&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; 1 router/4-port gigabit switch (working as gateway/firewall)&lt;/li&gt;
&lt;li&gt; 1 16-port gigabit switch&lt;/li&gt;
&lt;li&gt; 1 4GB AMD 64-bit (dual core) small form factor PC with roles:
&lt;ul&gt;
&lt;li&gt; Server 2008 Domain Controller&lt;/li&gt;
&lt;li&gt; Virtual Machine Manager 2008 R2&lt;/li&gt;
&lt;li&gt; SQL Server 2008 x64 physical host&lt;/li&gt;
&lt;li&gt; Virtual Server 2005 R2 SP1 host&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt; 1 16GB Intel 64-bit (quad core) small form factor PC as a Hyper-V host with VMs:
&lt;ul&gt;
&lt;li&gt; Server 2008 R2 Domain Controller&lt;/li&gt;
&lt;li&gt; System Center DPM 2007 Server&lt;/li&gt;
&lt;li&gt; MOSS 2007 Server&lt;/li&gt;
&lt;li&gt; System center Operations Manager 2007 R2 Server&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt; 1 4GB Dell Latitude D820 Core Duo laptop&lt;/li&gt;
&lt;li&gt; 1 4GB Dell latitude D830 Core2 Duo laptop (just found out this goes to 8GB, sweet!)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Plans:&lt;/p&gt;
&lt;ul class=&quot;unIndentedList&quot;&gt;
&lt;li&gt; The 16GB system is doing fine since I have been conservative when allocating resources to my VMs; I can maybe get an SCCM 2007 R2 VM on there as well to showcase operating system deployment, patch distribution, and application virtualization.&lt;/li&gt;
&lt;li&gt; I went to the D830 possibly controlled from an external eSATA drive as a DPM 2010 server with some mass storage to showcase the product and to back up my entire environment.&lt;/li&gt;
&lt;li&gt; Mass storage is needed. I was going to purchase either a &lt;a href=&quot;http://blogs.techrepublic.com.com/datacenter/?p=2221&quot; target=&quot;_blank&quot;&gt;Drobo&lt;/a&gt;, or maybe a Dell MD3000i, &lt;a href=&quot;http://www.thecus.com/index.php?set_language=english&quot; target=&quot;_blank&quot;&gt;Thecus&lt;/a&gt;, or the like (chime in here with experiences). I don&amp;#8217;t have to purchase iSCSI mass storage since I can use Starwind to create iSCSI targets to connect my systems to.&lt;/li&gt;
&lt;li&gt; The 16-port switch was purchased to retire an older 10/100 8-port switch because some network cards in my systems and in my OfficeJet printer won&amp;#8217;t communicate below 1000MB and my router only has 4 ports. I may need another switch to handle iSCSI dedicated traffic.&lt;/li&gt;
&lt;li&gt; I intend to leave my lab accessible all the time so I am going to purchase a &lt;a href=&quot;http://www.fortinet.com/products/fortigate/&quot; target=&quot;_blank&quot;&gt;Fortigate&lt;/a&gt; or comparable device to handle port filtering and offset processor load from my router/gateway.&lt;/li&gt;
&lt;li&gt; I may need another system to install VMWare ESX (VSphere) on since I am showing customers how to manage both MS and VMWare virtual environments.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So far, $4,000 has been spent on my lab over the last 30 months. More is needed but as you can see, because of virtualization, these dollars can go pretty far.&lt;/p&gt;
&lt;p&gt;Virtualization is great but it &lt;a href=&quot;http://owsug.ca/blogs/brad/archive/2010/03/03/I-am-Virtualizing-so-How-is-it-that-I-still-need-more-Machines_3F00_.aspx&quot; target=&quot;_blank&quot;&gt;does not eliminate all costs&lt;/a&gt;, as you can see.&lt;/p&gt;
&lt;p&gt;IT pros, have a look at what I am doing and if I can help anyone with more details, I am happy to do so. I am also looking for experiences or feedback to help improve my lab.&lt;/p&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;br clear=&quot;both&quot; /&gt;
&lt;a href=&quot;http://ads.pheedo.com/click.phdo?s=4a4f32111c3417b998c13021c77a284f&amp;p=1&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://ads.pheedo.com/img.phdo?s=4a4f32111c3417b998c13021c77a284f&amp;p=1&quot; /&gt;&lt;/a&gt;
&lt;!-- foo --&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techrepublic/networking/~4/ol-SJLziyEc&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 12 Mar 2010 17:00:27 +0000</pubDate>
</item>
<item>
	<title>Standalone Sysadmin: Unteachable Disaster Recovery</title>
	<guid>http://www.standalone-sysadmin.com/blog/?p=1288</guid>
	<link>http://feedproxy.google.com/~r/standalone-sysadmin/rWoU/~3/f1nq5ALYnrE/</link>
	<description>&lt;p&gt;I&amp;#8217;ve got another column up at &lt;a href=&quot;http://www.simple-talk.com/sysadmin/&quot;&gt;Simple Talk: Sysadmin&lt;/a&gt; today. It&amp;#8217;s called &lt;a href=&quot;http://www.simple-talk.com/sysadmin/general/unteachable-disaster-recovery-techniques/&quot;&gt;Unteachable Disaster Recovery Techniques&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;This is a true story, and it happened last week. I felt so strongly about it that I wrote the entire entry in one sitting.&lt;/p&gt;
&lt;p&gt;Please give it a read through, and remember to rate it using the stars! Thanks! &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/fL_yn2Fp3RLwzZGRxkdsVpDWqck/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/fL_yn2Fp3RLwzZGRxkdsVpDWqck/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/fL_yn2Fp3RLwzZGRxkdsVpDWqck/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/fL_yn2Fp3RLwzZGRxkdsVpDWqck/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?a=f1nq5ALYnrE:ngvnLvl4D5w:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/standalone-sysadmin/rWoU/~4/f1nq5ALYnrE&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 12 Mar 2010 15:45:53 +0000</pubDate>
</item>
<item>
	<title>The Tech Teapot: Planet Network Management Highlights 2010 Week 10</title>
	<guid>http://www.openxtra.co.uk/blog/?p=1814</guid>
	<link>http://feedproxy.google.com/~r/openxtrablogrss2/~3/4nD0-AXaSlc/</link>
	<description>&lt;p&gt;&lt;/p&gt;&lt;p&gt;Highlights from &lt;a href=&quot;http://www.planetnetworkmanagement.com/&quot;&gt;Planet  Network Management&lt;/a&gt; for Week 10.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.adventuresinoss.com/?p=1482&quot;&gt;New Stable and Unstable  Releases&lt;/a&gt; &amp;#8211; new OpenNMS releases are now available for download&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.rivermuse.com/content/news/rivermuse-core-4-2-released-and-available-for-download/&quot;&gt;RiverMuse  Core 4.2 Released and Available for Download&lt;/a&gt; &amp;#8211; RiverMuse Core 4.2 has now been released&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.dailynetworkmonitor.com/2010/03/05/whatsup-gold-wins-again-named-2010-network-management-product-of-the-year/&quot;&gt;WhatsUp  Gold Wins Again! Named 2010 Network Management Product of the Year&lt;/a&gt; &amp;#8211; What&amp;#8217;s Up Gold were thrilled to find out that WhatsUp Gold has won the Network Computing Network Management Product of the Year award&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.rivermuse.com/content/blog/reasons-for-selecting-rivermuse-pro-for-real-time-consolidated-operations-part-1-of-2/&quot;&gt;Reasons  for selecting RiverMuse PRO for Real-Time Consolidated Operations Part 1&lt;/a&gt; &amp;#8211; RiverMuse PRO builds on top of RiverMuse Core and provides a presence management discovery engine, a powerful enterprise desktop console, dynamic alert enrichment from external systems, enhanced scalability, and additional functionalities to streamline organizational processes and dramatically simplify system maintenance.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.nagios.org/news/77-news-announcements/242-nagios-core-321-released&quot;&gt;Nagios  Core 3.2.1 Released&lt;/a&gt; &amp;#8211; including a number of bug fixes for incorrect scheduling when time changes occur&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.lovemytool.com/blog/2010/03/wireshark-getting-started-tips-by-tony-fortunato.html&quot;&gt;Wireshark  &amp;#8211; Getting Started Tips (by Tony Fortunato)&lt;/a&gt; &amp;#8211; basic tips for getting more out of Wireshark&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://thwack.com/blogs/orion-product-team-blog/archive/2010/03/09/easily-adding-double-and-triple-gauges-for-universal-device-pollers.aspx&quot;&gt;Easily adding double and triple gauges for Universal Device Pollers&lt;/a&gt; &amp;#8211; how to add gauges to SolarWinds Orion&lt;/li&gt;
&lt;/ul&gt;
&lt;img src=&quot;http://www.openxtra.co.uk/blog/?ak_action=api_record_view&amp;id=1814&amp;type=feed&quot; alt=&quot;&quot; /&gt;
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/PxbGM-cu1g0wrS-ikUm0cA_4UtA/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/PxbGM-cu1g0wrS-ikUm0cA_4UtA/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/PxbGM-cu1g0wrS-ikUm0cA_4UtA/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/PxbGM-cu1g0wrS-ikUm0cA_4UtA/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/openxtrablogrss2?a=4nD0-AXaSlc:fjyE14rq2oI:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/openxtrablogrss2?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/openxtrablogrss2?a=4nD0-AXaSlc:fjyE14rq2oI:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/openxtrablogrss2?i=4nD0-AXaSlc:fjyE14rq2oI:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/openxtrablogrss2?a=4nD0-AXaSlc:fjyE14rq2oI:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/openxtrablogrss2?i=4nD0-AXaSlc:fjyE14rq2oI:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/openxtrablogrss2?a=4nD0-AXaSlc:fjyE14rq2oI:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/openxtrablogrss2?i=4nD0-AXaSlc:fjyE14rq2oI:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/openxtrablogrss2/~4/4nD0-AXaSlc&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 12 Mar 2010 14:28:57 +0000</pubDate>
</item>
<item>
	<title>atarininja</title>
	<guid>http://www.atarininja.org/entries/geek/openssh-gets-netcat-support</guid>
	<link>http://www.atarininja.org/index.py/entries/geek/openssh-gets-netcat-support.1024px</link>
	<description>&lt;p&gt;
I was looking over the &lt;a href=&quot;http://openssh.org/txt/release-5.4&quot;&gt;release notes&lt;/a&gt; for OpenSSH 5.4. Among the list of nice things (key revocation, better passphrase protection, and certificates - though not X.509) in there I noticed support for a new -W option. The manual has this to say about it:
&lt;/p&gt;
&lt;p&gt;
&lt;pre&gt;
-W host:port
        Requests that standard input and output on the client be for-
        warded to host on port over the secure channel.  Implies -N, -T,
        ExitOnForwardFailure and ClearAllForwardings and works with Pro-
        tocol version 2 only.
&lt;/pre&gt;
&lt;/p&gt;
&lt;p&gt;
The release notes specifically state:
&lt;/p&gt;
&lt;p&gt;
&lt;pre&gt;
 * Added a 'netcat mode' to ssh(1): &quot;ssh -W host:port ...&quot; This connects
   stdio on the client to a single port forward on the server. This
   allows, for example, using ssh as a ProxyCommand to route connections
   via intermediate servers. bz#1618
&lt;/pre&gt;
&lt;/p&gt;
&lt;p&gt;
That sounds nice and like it will save me from having to do things in a two step process. Normally I have to do &lt;i&gt;ssh -L 7272:gmail-smtp-in.l.google.com:25 syn&lt;/i&gt; and use &lt;i&gt;nc localhost -p 7272&lt;/i&gt; or something else in another terminal to get data out through the tunnel. Now with -W it's combined into one simple step.
&lt;/p&gt;
&lt;p&gt;
&lt;pre&gt;
wxs@ack wxs % ssh -W gmail-smtp-in.l.google.com:25 syn     
220 mx.google.com ESMTP 14si5094846qyk.3
EHLO PANTS!
250-mx.google.com at your service, [129.21.50.215]
250-SIZE 35651584
250-8BITMIME
250-ENHANCEDSTATUSCODES
250 PIPELINING
&lt;/pre&gt;
&lt;/p&gt;
&lt;p&gt;
I like things that make my life easier.
&lt;/p&gt;</description>
	<pubDate>Fri, 12 Mar 2010 14:19:00 +0000</pubDate>
</item>
<item>
	<title>Slaptijack: The Big List of Security Update Resources</title>
	<guid>http://slaptijack.com/?p=4475</guid>
	<link>http://feedproxy.google.com/~r/slaptijack/~3/odB2MhHBJVk/</link>
	<description>&lt;p&gt;If you have an interest in information security from a technical or managerial point of view, check out &lt;a href=&quot;http://slaptijack.com/go/amazon.php?asin=1423901770&quot;&gt;Principles of Information Security&lt;/a&gt;. It does an excellent job of presenting material for both audiences.&lt;/p&gt;
&lt;p&gt;If you have other vendors you would like to see on this list, &lt;a href=&quot;mailto:slap@slaptijack.com&quot;&gt;send me a message&lt;/a&gt;. I&amp;#8217;ll keep updating the list until we have everything we need.&lt;/p&gt;
&lt;p&gt;&lt;span id=&quot;more-4475&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;img align=&quot;right&quot; src=&quot;http://lh5.ggpht.com/_LF9bAucktRs/SXekrYR8yNI/AAAAAAAABk4/N08Hi3k2BFI/s800/software_update_2.png&quot; alt=&quot;Apple Software Update Icon&quot; /&gt;&lt;br /&gt;
&lt;h3&gt;Apple Inc.&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://support.apple.com/kb/HT1222&quot;&gt;Apple security updates&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://lists.apple.com/mailman/listinfo/security-announce&quot;&gt;Apple security-announce mailing list&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://lh3.ggpht.com/_LF9bAucktRs/SWVpiXGw-WI/AAAAAAAABkI/EheK7ROlNk0/s800/cisco_logo_3.png&quot; alt=&quot;Cisco Logo&quot; align=&quot;right&quot; /&gt;&lt;br /&gt;
&lt;h3&gt;Cisco Systems Inc.&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.cisco.com/en/US/products/products_security_advisories_listing.html&quot;&gt;Cisco Security Advisories and Notices&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.cisco.com/cisco/support/notifications.html&quot;&gt;Cisco Notification Service&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://newsroom.cisco.com/data/syndication/rss2/SecurityAdvisories_20.xml&quot;&gt;Cisco Security Advisories RSS feed&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://lh6.ggpht.com/_LF9bAucktRs/R82xEJxYwKI/AAAAAAAAAeI/Yb9e2Zk-vtY/s800/freebsd_logo.png&quot; alt=&quot;FreeBSD Logo&quot; align=&quot;right&quot; /&gt;&lt;br /&gt;
&lt;h3&gt;The FreeBSD Project&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://security.freebsd.org/&quot;&gt;FreeBSD Security Information&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-security-notifications&quot;&gt;freebsd-security-notifications mailing list&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Send email to freebsd-security-notifications@freebsd.org with the word &amp;#8216;help&amp;#8217; in the subject or body.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.freebsd.org/security/advisories.rdf&quot;&gt;FreeBSD Security Advisories RSS feed&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://lh3.ggpht.com/_LF9bAucktRs/S5m0jmPPh7I/AAAAAAAACIw/Cyq961qySaQ/s800/tiny_google_logo.png&quot; alt=&quot;Google Logo&quot; align=&quot;right&quot; /&gt;&lt;br /&gt;
&lt;h3&gt;Google, Inc.&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://googleonlinesecurity.blogspot.com/&quot;&gt;Google Online Security Blog&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;&lt;img align=&quot;right&quot; src=&quot;http://lh3.ggpht.com/_LF9bAucktRs/R82zWZxYw4I/AAAAAAAAAlA/L1-odBY_B4c/s800/microsoft-logo.jpg&quot; alt=&quot;Microsoft Logo&quot; /&gt;&lt;br /&gt;
&lt;h3&gt;Microsoft Corporation&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://technet.microsoft.com/en-us/security/dd162324.aspx&quot;&gt;Microsoft Security Newsletter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://services.social.microsoft.com/feeds/feed/FeaturedSecurityPrivacyContent&quot;&gt;Featured Security and Privacy Content RSS feed&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/technet/security/bulletin/notify.mspx&quot;&gt;Microsoft Technical Security Notifications mailing list&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://lh4.ggpht.com/_LF9bAucktRs/SWVoK6FzsgI/AAAAAAAABkA/9lDorznU70c/s800/red_hat_logo.png&quot; alt=&quot;Red Hat Logo&quot; align=&quot;right&quot; /&gt;&lt;br /&gt;
&lt;h3&gt;Red Hat, Inc.&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.redhat.com/mailman/listinfo/enterprise-watch-list&quot;&gt;Security announcements for Red Hat Enterprise products&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.redhat.com/mailman/listinfo/rhsa-announce&quot;&gt;Security announcements for all Red Hat products and services&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://rhn.redhat.com/rpc/recent-errata.pxt&quot;&gt;Red Hat Errata RSS feed&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://lh6.ggpht.com/_LF9bAucktRs/SVFcwfVzVvI/AAAAAAAABhc/73SYtlRmAH0/s800/sun_logo.gif&quot; alt=&quot;Sun Microsystems Logo&quot; align=&quot;right&quot; /&gt;&lt;br /&gt;
&lt;h3&gt;Sun Microsystems, Inc.&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://blogs.sun.com/security/&quot;&gt;Sun Security Blog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://blogs.sun.com/security/feed/entries/rss&quot;&gt;Sun Security Blog RSS feed&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;img src=&quot;http://slaptijack.com/?ak_action=api_record_view&amp;id=4475&amp;type=feed&quot; alt=&quot;&quot; /&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=odB2MhHBJVk:s3UyRfKGPXU:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=odB2MhHBJVk:s3UyRfKGPXU:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=odB2MhHBJVk:s3UyRfKGPXU:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?i=odB2MhHBJVk:s3UyRfKGPXU:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=odB2MhHBJVk:s3UyRfKGPXU:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?i=odB2MhHBJVk:s3UyRfKGPXU:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/slaptijack?a=odB2MhHBJVk:s3UyRfKGPXU:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/slaptijack?i=odB2MhHBJVk:s3UyRfKGPXU:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</description>
	<pubDate>Fri, 12 Mar 2010 14:00:50 +0000</pubDate>
</item>
<item>
	<title>CiscoZine: Smartports Macros: a useful command</title>
	<guid>http://www.ciscozine.com/?p=765</guid>
	<link>http://www.ciscozine.com/2010/03/12/smartports-macros-a-useful-command/</link>
	<description>&lt;p&gt;Working in a datacenter, it is often required to apply the same intereface configuration on many ports; Cisco has an embedded useful command to do it: the smartports macros.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Smartports macros provide&lt;/strong&gt; a convenient way to &lt;strong&gt;save and share common configurations&lt;/strong&gt;. You can use Smartports macros to enable features and settings based on the location of a switch in the network and for mass configuration deployments across the network.&lt;/p&gt;
&lt;p&gt;Each Smartports macro is a set of CLI commands that you define. Smartports macros do not contain new CLI commands; they are simply a group of existing CLI commands.&lt;/p&gt;
&lt;p&gt;When you apply a Smartports macro on an interface, the CLI commands within the macro are configured on the interface. When the macro is applied to an interface, the existing interface configurations are not lost. The new &lt;strong&gt;commands &lt;/strong&gt;are &lt;strong&gt;added &lt;/strong&gt;to the interface and are &lt;strong&gt;saved &lt;/strong&gt;in the&lt;strong&gt; running configuration file&lt;/strong&gt;.&lt;span id=&quot;more-765&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Use Smartports Macros&lt;/strong&gt;&lt;br /&gt;
It&amp;#8217;s easy to configure and to use smartports macros:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;configure smartports macros&lt;/li&gt;
&lt;li&gt;apply the smartports macros&lt;/li&gt;
&lt;li&gt;(optional) see smartports macros configuration&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;1. To create a smartport macro, use the command macro name &amp;#8216;macro-name&amp;#8217;; then enter the macro commands with one command per line. Use the @ character to end the macro. Use the # character at the beginning of a line to enter comment text within the macro.  You can define keywords within a macro by using a help string to specify the keywords. Enter # macro keywords word to define the keywords that are available for use with the macro. Separated by a space, you can enter up to three help string keywords in a macro.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Remember:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Macro names are case sensitive. For example, the commands macro name Sample-Macro and macro name sample-macro will result in two separate macros.&lt;/li&gt;
&lt;li&gt;A macro definition can contain up to 3000 characters.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;2. To apply each individual command defined in the macro to the interface by entering &lt;em&gt;macro apply &amp;#8216;macro-name&amp;#8217;&lt;/em&gt;. Specify &lt;em&gt;macro trace &amp;#8216;macro-name&amp;#8217;&lt;/em&gt; to apply and print each command before it is applied to the interface.&lt;/p&gt;
&lt;p&gt;3. (optional) To display the Smartports macros, use one or more of the privileged EXEC commands.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;show parser macro: Displays all configured macros.&lt;/li&gt;
&lt;li&gt;show parser macro name &amp;#8216;macro-name&amp;#8217;: Displays a specific macro.&lt;/li&gt;
&lt;li&gt;show parser macro brief: Displays the configured macro names.&lt;/li&gt;
&lt;li&gt;show parser macro description &amp;#8216;interface interface-id&amp;#8217;: Displays the macro description for all interfaces or for a specified interface.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There are Cisco-default Smartports macros embedded in the switch software. You can display these macros and the commands they contain by using the show parser macro user EXEC command.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Cisco-Default Smartports Macros &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;cisco-global: Use this global configuration macro to enable load balancing across VLANs, provide rapid convergence of spanning-tree instances and to enable port error recovery.&lt;/li&gt;
&lt;li&gt;cisco-desktop: Use this interface configuration macro for increased network security and reliability when connecting a desktop device, such as a PC, to a switch port.&lt;/li&gt;
&lt;li&gt;cisco-phone: Use this interface configuration macro when connecting a desktop device such as a PC with a Cisco IP Phone to a switch port. This macro is an extension of the cisco-desktop macro and provides the same security and resiliency features, but with the addition of dedicated voice VLANs to ensure proper treatment of delay-sensitive voice traffic.&lt;/li&gt;
&lt;li&gt;cisco-switch: Use this interface configuration macro when connecting an access switch and a distribution switch or between access switches connected using GigaStack modules or GBICs.&lt;/li&gt;
&lt;li&gt;cisco-router: Use this interface configuration macro when connecting the switch and a WAN router.&lt;/li&gt;
&lt;li&gt;cisco-lre-cpe: Use this interface configuration macro to optimize performance when the switch is installed in apartment buildings or hotels, or when it is used to deliver Video-on-Demand (VoD), or multicast video.&lt;/li&gt;
&lt;li&gt;cisco-wireless: Use this interface configuration macro when connecting the switch and a wireless access point.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Below the default smartports macros existing on my cisco Catalysy 2950 (IOS 12.1(22)EA8A):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Ciscozine#sh parser macro brief
default global   : cisco-global
default interface: cisco-desktop
default interface: cisco-phone
default interface: cisco-switch
default interface: cisco-router
default interface: cisco-wireless
Switch#
Switch#sh parser macro
Total number of macros = 6
--------------------------------------------------------------
Macro name : cisco-global
Macro type : default global
# Enable dynamic port error recovery for link state
# failures
errdisable recovery cause link-flap
errdisable recovery interval 60

# Config Cos to DSCP mappings
mls qos map cos-dscp 0 8 16 26 32 46 46 56

# Enable aggressive mode UDLD on all fiber uplinks
udld aggressive

# Enable Rapid PVST+ and Loopguard
spanning-tree mode rapid-pvst
spanning-tree loopguard default
spanning-tree extend system-id
--------------------------------------------------------------
Macro name : cisco-desktop
Macro type : default interface
# macro keywords $access_vlan
# Basic interface - Enable data VLAN only
# Recommended value for access vlan should not be 1
switchport access vlan $access_vlan
switchport mode access

# Enable port security limiting port to a single
# MAC address -- that of desktop
switchport port-security
switchport port-security maximum 1

# Ensure port-security age is greater than one minute
# and use inactivity timer
switchport port-security violation restrict
switchport port-security aging time 2
switchport port-security aging type inactivity

# Configure port as an edge network port
spanning-tree portfast
spanning-tree bpduguard enable

# Remark all inbound data packets with COS=0 &amp;amp; DSCP =0
mls qos cos override
--------------------------------------------------------------
Macro name : cisco-phone
Macro type : default interface
# Cisco IP phone + desktop template

# macro keywords $access_vlan $voice_vlan

# VoIP enabled interface - Enable data VLAN
# and voice VLAN
# Recommended value for access vlan should not be 1
switchport access vlan $access_vlan
switchport mode access

# Update the Voice VLAN value which should be
# different from data VLAN
# Recommended value for voice vlan should not be 1
switchport voice vlan $voice_vlan

# Enable port security limiting port to a 2 MAC
# addressess -- One for desktop and one for phone
switchport port-security
switchport port-security maximum 2

# Ensure port-security age is greater than one minute
# and use inactivity timer
switchport port-security violation restrict
switchport port-security aging time 2
switchport port-security aging type inactivity

# Enable auto-qos to extend trust to attached Cisco phone
auto qos voip cisco-phone

# Configure port as an edge network port
spanning-tree portfast
spanning-tree bpduguard enable
--------------------------------------------------------------
Macro name : cisco-switch
Macro type : default interface
# macro keywords $native_vlan
# Access Uplink to Distribution
# Do not apply to EtherChannel/Port Group

# Define unique Native VLAN on trunk ports
# Recommended value for native vlan should not be 1
switchport trunk native vlan $native_vlan

# Update the allowed VLAN range (ALL) such that it
# includes data, voice and native VLANs
switchport trunk allowed vlan ALL

# Hardcode trunk and disable negotiation to
# speed up convergence
switchport mode trunk
switchport nonegotiate

# Configure qos to trust this interface
auto qos voip trust

# 802.1w defines the link as pt-pt for rapid convergence
spanning-tree link-type point-to-point
--------------------------------------------------------------
Macro name : cisco-router
Macro type : default interface
# macro keywords $native_vlan
# Access Uplink to Distribution

# Define unique Native VLAN on trunk ports
# Recommended value for native vlan should not be 1
switchport trunk native vlan $native_vlan

# Update the allowed VLAN range (ALL) such that it
# includes data, voice and native VLANs
switchport trunk allowed vlan ALL

# Hardcode trunk and disable negotiation to
# speed up convergence
switchport mode trunk
switchport nonegotiate

# Configure qos to trust this interface
auto qos voip trust
mls qos trust dscp

# Ensure fast access to the network when enabling the interface.
# Ensure that switch devices cannot become active on the interface.
spanning-tree portfast trunk
spanning-tree bpduguard enable
--------------------------------------------------------------
Macro name : cisco-wireless
Macro type : default interface
# macro keywords $native_vlan
# Access Uplink to Distribution

# Define unique Native VLAN on trunk ports
# Recommended native vlan should NOT be 1
switchport trunk native vlan $native_vlan

# Update the allowed VLAN range such that it
# includes data, voice and native VLANs
switchport trunk allowed vlan ALL

# Hardcode trunk and disable negotiation to speed up convergence
switchport mode trunk
switchport nonegotiate

# Configure qos to trust this interface
auto qos voip trust
mls qos trust cos

# Ensure that switch devices cannot become active on the interface.
spanning-tree bpduguard enable
--------------------------------------------------------------
Ciscozine#
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Remember:&lt;/strong&gt; Cisco-default Smartports macros vary depending on the software version running on your switch.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Smartports Macro Configuration Guidelines&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;When creating a macro, do not use the exit or end commands or change the command mode by using interface interface-id. This could cause commands that follow exit, end, or interface interface-id to execute in a different command mode.&lt;/li&gt;
&lt;li&gt;When creating a macro, all CLI commands should be in the same configuration mode.&lt;/li&gt;
&lt;li&gt;When creating a macro that requires the assignment of unique values, use the parameter value keywords to designate values specific to the interface. Keyword matching is case sensitive. All matching occurrences of the keyword are replaced with the corresponding value. Any full match of a keyword, even if it is part of a larger string, is considered a match and is replaced by the corresponding value.&lt;/li&gt;
&lt;li&gt;Macro names are case sensitive. For example, the commands macro name Sample-Macro and macro name sample-macro will result in two separate macros.&lt;/li&gt;
&lt;li&gt;Some macros might contain keywords that require a parameter value. You can use the macro global apply macro-name ? global configuration command or the macro apply macro-name ? interface configuration command to display a list of any required values in the macro. If you apply a macro without entering the keyword values, the commands are invalid and are not applied.&lt;/li&gt;
&lt;li&gt;When a macro is applied globally to a switch or to a switch interface, all existing configuration on the interface is retained. This is helpful when applying an incremental configuration.&lt;/li&gt;
&lt;li&gt;If you modify a macro definition by adding or deleting commands, the changes are not reflected on the interface where the original macro was applied. You need to reapply the updated macro on the interface to apply the new or changed commands.&lt;/li&gt;
&lt;li&gt;You can use the macro global trace macro-name global configuration command or the macro trace macro-name interface configuration command to apply and debug a macro to find any syntax or configuration errors. If a command fails because of a syntax error or a configuration error, the macro continues to apply the remaining commands.&lt;/li&gt;
&lt;li&gt;Some CLI commands are specific to certain interface types. If a macro is applied to an interface that does not accept the configuration, the macro will fail the syntax check or the configuration check, and the switch will return an error message.&lt;/li&gt;
&lt;li&gt;Applying a macro to an interface range is the same as applying a macro to a single interface. When you use an interface range, the macro is applied sequentially to each interface within the range. If a macro command fails on one interface, it is still applied to the remaining interfaces.&lt;/li&gt;
&lt;li&gt;When you apply a macro to a switch or a switch interface, the macro name is automatically added to the switch or interface. You can display the applied commands and macro names by using the show running-config user EXEC command.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In this example, I want to configure a smartport macro named &amp;#8216;test&amp;#8217;  to the fastethernet0/2; the macro will have these features:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;vlan $VLANID, where $VLANID is the parameter
&lt;pre&gt;&lt;code&gt;switchport  mode access
switchport access vlan $VLANID&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;only 1 mac-address per port
&lt;pre&gt;&lt;code&gt;switchport port-security&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;port-fast features
&lt;pre&gt;&lt;code&gt;spanning-tree portfast&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;speed 100
&lt;pre&gt;&lt;code&gt;speed 100&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;duplex full
&lt;pre&gt;&lt;code&gt;duplex full&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;no shutdown
&lt;pre&gt;&lt;code&gt;no shut&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;1. The command executed to create the smartport macro are:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Ciscozine(config)#macro name test
Enter macro commands one per line. End with the character '@'.
switchport  mode access
switchport access vlan $VLANID
switchport port-security
spanning-tree portfast
speed 100
duplex full
no shut
#macro keywords $VLANID
@
Ciscozine(config)#&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;2. To apply the &amp;#8216;test&amp;#8217; macro to fasthernet0/2:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Ciscozine(config)#inter fas0/2
Ciscozine(config-if)#macro trace test $VLANID 10
Applying command... 'switchport  mode access'
Applying command... 'switchport access vlan 10'
Applying command... 'switchport port-security'
Applying command... 'spanning-tree portfast'
%Warning: portfast should only be enabled on ports connected to a single
host. Connecting hubs, concentrators, switches, bridges, etc... to this
interface  when portfast is enabled, can cause temporary bridging loops.
Use with CAUTION

%Portfast has been configured on FastEthernet0/2 but will only
have effect when the interface is in a non-trunking mode.
Applying command... 'speed 100'
Applying command... 'duplex full'
Applying command... 'no shut'
Ciscozine(config-if)#&lt;/code&gt; &lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;3. To show the new macro and the fastethernet0/2 configuration:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Ciscozine(config)#do show parser macro name test
Macro name : test
Macro type : customizable
switchport  mode access
switchport access vlan $VLANID
switchport port-security
spanning-tree portfast
speed 100
duplex full
no shut
#macro keywords $VLANID
Ciscozine(config)#do sh run int fas0/2
Building configuration...

Current configuration : 182 bytes
!
interface FastEthernet0/2
switchport access vlan 10
switchport mode access
switchport port-security
speed 100
duplex full
macro description test
spanning-tree portfast
end
Ciscozine(config)#
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt; &lt;a href=&quot;http://www.ciscosystems.com/en/US/docs/switches/lan/catalyst2960/software/release/12.2_25_see/configuration/guide/swmacro.html&quot; target=&quot;_blank&quot;&gt;http://www.ciscosystems.com/&amp;#8230;/guide/swmacro.html&lt;/a&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;small&gt;© Fabio Semperboni for &lt;a href=&quot;http://www.ciscozine.com&quot;&gt;CiscoZine&lt;/a&gt;, 2010. |
&lt;a href=&quot;http://www.ciscozine.com/2010/03/12/smartports-macros-a-useful-command/&quot;&gt;Permalink&lt;/a&gt; |
&lt;a href=&quot;http://www.ciscozine.com/2010/03/12/smartports-macros-a-useful-command/#comments&quot;&gt;No comment&lt;/a&gt;&lt;br /&gt;
Post tags: &lt;a href=&quot;http://www.ciscozine.com/tag/advanced-configuration/&quot; rel=&quot;tag&quot;&gt;Advanced configuration&lt;/a&gt;, &lt;a href=&quot;http://www.ciscozine.com/tag/smartports-macros/&quot; rel=&quot;tag&quot;&gt;Smartports Macros&lt;/a&gt;, &lt;a href=&quot;http://www.ciscozine.com/tag/video/&quot; rel=&quot;tag&quot;&gt;Video&lt;/a&gt;&lt;br /&gt;
&lt;/small&gt;&lt;/p&gt;</description>
	<pubDate>Fri, 12 Mar 2010 12:50:03 +0000</pubDate>
</item>
<item>
	<title>Anton Chuvakin - Security Warrior: RSA 2010 EXCLUSIVE PCI Security Standards Council Interview</title>
	<guid>tag:blogger.com,1999:blog-19553129.post-5713419892088185288</guid>
	<link>http://feedproxy.google.com/~r/AntonChuvakinPersonalBlog/~3/YlHJf5WpXzY/rsa-2010-exclusive-pci-security.html</link>
	<description>At &lt;a href=&quot;http://chuvakin.blogspot.com/search/label/RSA&quot;&gt;RSA&lt;/a&gt; 2010, I was given a &lt;strong&gt;&lt;em&gt;unique&lt;/em&gt;&lt;/strong&gt; opportunity to interview Bob Russo (GM at PCI SSC) and Troy Leach (CTO at PCI SSC). I have prepared a deck of very tough questions and then had an hour-long discussion with Bob and Troy around those questions. What follows is the interview reconstruction from my notes with minimum edits and clarifications by the Council folks.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Anton Introduction:&amp;nbsp; &lt;/b&gt;I think &lt;a href=&quot;http://chuvakin.blogspot.com/search/label/PCI&quot;&gt;PCI DSS&lt;/a&gt; is the most valuable thing to hit security industry since its inception – both as a driving force for security improvements and as a source for security guidance. However, there are skeptics among merchants (too much security) and some security professionals (too little security). Some of my questions below focus on dispelling the misconceptions such skeptics might hold.&lt;br /&gt;
&lt;b&gt;Anton Question 1&lt;/b&gt;: What, in your opinion, is the main value of PCI DSS – to the community at large? Merchants? Banks? Brands?&lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;You have answered this question yourself above: it is security. Motivation for payment security improvements is the value of PCI. For some companies it is also a springboard for additional security improvements needed for their businesses. This benefits everybody!&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;PCI value can also be rephrased as demonstrating trust across organizational boundaries and. As we know, payment security has many sides and PCI compliance is one way of demonstrating trust across organizational boundaries.&lt;/i&gt;&lt;br /&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
&lt;b&gt;Anton Question 2: &lt;/b&gt;Way too many companies seem to focus on compliance and not on security. What is the best way to prevent “teaching to the test” for PCI DSS compliance? &lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Too many companies focus on studying for the test. We believe the PCI Standards provide a solid foundation for a security strategy to look after payment and other types of data, but security does not start and end with compliance with standards.&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Education is very important and that is why the PCI Council will focus even more on educating the merchants and changing their mindset from one of compliance to security. Their old way of doing business – retaining card data, for example- was viable one day, but not today.&lt;ins cite=&quot;mailto:Dr.%20Anton%20Chuvakin&quot; datetime=&quot;2010-03-11T16:21&quot;&gt;&lt;/ins&gt;One of the steps we see is increased outsourcing of payment processing to trusted providers.&lt;/i&gt;&lt;br /&gt;
&lt;b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Anton Question 3: &lt;/b&gt;Some people say that “the brands must just change the system” since Level4 merchants [=typically smaller merchants] can never be educated and this never can be secured. What do you say to this?&lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;It’ll happen eventually, but it is obviously not so easy. We’re talking 5 to 10 years here. The payment system is diverse and incredibly complex. Any drastic changes will probably be more costly and disrupt merchants’ business even more than PCI DSS ever could, so they have to happen gradually. The PCI Council’s mandate is to get as much done to improve payment security as possible - within the existing system. Security has to become part of every business that deals with card data.&lt;/i&gt;&lt;br /&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
&lt;b&gt;Anton Question 4: &lt;/b&gt;There are many debates about PCI DSS in security industry, among merchants, etc. How can the impact of PCI DSS payment security be measured? Who might have the data to do it?&lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Security breach statistics demonstrating a root cause that can be mapped to PCI DSS requirements is one such possible way to prove the value of PCI. For example, if the company did not take any measures to protect against SQL injection and got breached through that, they need to pay more attention to Requirement 6.6. &lt;/i&gt;&lt;br /&gt;
&lt;i&gt;On the other hand, trying to analyze what the non-breached companies are doing right with PCI is harder since you don’t hear about the myriad of success stories of companies that are defending against breaches through following DSS or have minimized card data compromise in breach situations through strong logging and monitoring, mandated by PCI. &lt;/i&gt;&lt;br /&gt;
&lt;i&gt;PCI DSS prescribes logging and monitoring, which help detect data loss. Unfortunately some recent incidents had breach evidence present in logs, but since logs were not reviewed until breach became public (contrary to PCI DSS requirements) this was not utilized for detecting the breach.&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;More education efforts are needed to explain to merchants that PCI is not only about breach prevention, but also about detection of intrusions and security monitoring. Thus, judging its value only on breach prevention is shortsighted.&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Enhanced information sharing will drive more improvements here.&lt;/i&gt;&lt;br /&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
&lt;b&gt;Anton Question 5: &lt;/b&gt;What is your opinion of mandating the discovery of stored card data and especially track and other prohibited data? This technology was not high on the list in PWC report.&lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Many QSAs already use data discovery tools today. Since PCI scope covers systems where card data is present, payment card data discovery should be part of scope validation. “Forgotten” credit card data dumps were indeed present in some recent breaches stories.&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Methods of such discovery can vary- using an automated tool is one of the options, but such tools are still not mature.&lt;/i&gt;&lt;br /&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
&lt;b&gt;Anton Question 6: &lt;/b&gt;Do you think that there should be tiered security requirements for small and large organizations (that go beyond today’s SAQ validation levels)? For example, daily log review seems onerous to many merchants.&lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;You cannot dumb security down below a certain level. More education efforts will be needed to explain to merchants how to satisfy requirements and become compliant [and stay compliant].&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;However, the Council is planning to build more tools in order to help merchants understand what exactly they need to do to become compliant. A wizard interface or some other method to simplify the SAQ process can be used here to highlight which controls the merchant needs to implement.&lt;/i&gt;&lt;br /&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
&lt;b&gt;Anton Question 7: &lt;/b&gt;The “None were compliant when breached” rings true to me. Why do you think so many people object to this?&lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;People simply need to know the facts and find out what happened in those breach stories. For example, some breached companies had massive stores of prohibited data, such as authorization data. Or they were not adequately protected at the application or database level against things like SQL injections. There is a difference between “breached due to negligence” and “breached due to bad luck.” Being diligent but still ultimately failing to protect the information is possible (so safe harbor does exist for such companies); it just isn’t what happened in those incidents.&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;     &lt;br /&gt;
You just need to get the facts. If a company gained compliant status by misrepresenting the facts to a QSA, PCI standards are not at fault when the breach happened. &lt;/i&gt;&lt;br /&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
&lt;b&gt;Anton Question 8: &lt;/b&gt;What is the best way to balance PCI DSS lifecycle with both merchants complaints about “moving target” and with rapidly changing threats?&lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;So far, the current two year lifecycle has provided a good balance between structured development and staying abreast of rapidly changing threats. Feel free - and have your readers - to suggest changes to that lifecycle, if you think it needs to be changed! We are considering how it might evolve.&lt;/i&gt;&lt;br /&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
&lt;b&gt;Anton Question 9: &lt;/b&gt;What do you think of using PCI DSS controls for non-payment-card data?&lt;br /&gt;
&lt;i&gt;Bob and Troy @ PCI Council answer:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;It is a good thing, if you keep in mind that PCI DSS controls are the foundation or the minimum baseline for an effective security strategy. Organizations will likely need to build more security on top of the PCI foundation to protect other sensitive data. Layering technology solutions and combining with the necessary people and processes continues to be the most effective means in protecting cardholder data.&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;PCI has certainly raised awareness for all data protection, not just payment card data.&lt;/i&gt;&lt;br /&gt;
&lt;strong&gt;Anton Summary&lt;/strong&gt;&lt;br /&gt;
&lt;i&gt;Overall, the main themes I picked in the conversation were:&lt;/i&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;“PCI compliance” is a means to an end. And the end is “&lt;b&gt;security&lt;/b&gt;!”&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&lt;i&gt;Education&lt;/i&gt;&lt;/b&gt;&lt;i&gt; is one of the ways to change the thinking of merchants and to improve security.&lt;/i&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
Thanks to Bob and Troy for the insightful discussion!&lt;div class=&quot;blogger-post-footer&quot;&gt;About me: http://www.chuvakin.org&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/19553129-5713419892088185288?l=chuvakin.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/o7ZCZ01FMNkb_DFWBbAGXjvuiYo/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/o7ZCZ01FMNkb_DFWBbAGXjvuiYo/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/o7ZCZ01FMNkb_DFWBbAGXjvuiYo/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/o7ZCZ01FMNkb_DFWBbAGXjvuiYo/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=YlHJf5WpXzY:iwlNEOx-6fE:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=YlHJf5WpXzY:iwlNEOx-6fE:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?a=YlHJf5WpXzY:iwlNEOx-6fE:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/AntonChuvakinPersonalBlog?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/AntonChuvakinPersonalBlog/~4/YlHJf5WpXzY&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 12 Mar 2010 10:11:55 +0000</pubDate>
	<author>noreply@blogger.com (Dr Anton Chuvakin)</author>
</item>
<item>
	<title>Standalone Sysadmin: Anyone else headed to PostgreSQL East?</title>
	<guid>http://www.standalone-sysadmin.com/blog/?p=1286</guid>
	<link>http://feedproxy.google.com/~r/standalone-sysadmin/rWoU/~3/K_jmGFXD36Y/</link>
	<description>&lt;p&gt;My company has decided that I need to learn more about administration of the &lt;a href=&quot;http://www.postgresql.org/&quot;&gt;Postgres database&lt;/a&gt;&amp;#8230;which is to say that I should learn &lt;i&gt;something&lt;/i&gt; about it. My knowledge is really pretty scant at the moment. &lt;/p&gt;
&lt;p&gt;To that end, they&amp;#8217;re sending my boss, my junior admin, and me to &lt;a href=&quot;http://www.postgresqlconference.org/&quot;&gt;PostgreSQL East&lt;/a&gt;, a conference held in Philadelphia from March 25-28th. We&amp;#8217;re doing the conference thing, plus doing training on Sunday. &lt;/p&gt;
&lt;p&gt;Anyone out there attending, too?&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/6a-ipZZHJQkTJldcc_e4u9zcicM/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/6a-ipZZHJQkTJldcc_e4u9zcicM/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/6a-ipZZHJQkTJldcc_e4u9zcicM/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/6a-ipZZHJQkTJldcc_e4u9zcicM/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?a=K_jmGFXD36Y:MgSuUeA2Zo4:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/standalone-sysadmin/rWoU?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/standalone-sysadmin/rWoU/~4/K_jmGFXD36Y&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 12 Mar 2010 08:33:20 +0000</pubDate>
</item>
<item>
	<title>A Year in the Life of a BSD Guru: Anyone Using FreeBSD 7 in Vmware?</title>
	<guid>http://rss.ittoolbox.com/rss/37429@http://it.toolbox.com/blogs/bsd-guru</guid>
	<link>http://it.toolbox.com/blogs/bsd-guru/anyone-using-freebsd-7-in-vmware-37429?rss=1</link>
	<description>If so, a reader has a question about network connectivity:</description>
	<pubDate>Fri, 12 Mar 2010 08:24:25 +0000</pubDate>
</item>
<item>
	<title>Chris Siebenmann: End results versus what's inside the black box</title>
	<guid>tag:cspace@cks.mef.org,2009-03-24:/blog/tech/EndsVsDetails</guid>
	<link>http://utcc.utoronto.ca/~cks/space/blog/tech/EndsVsDetails</link>
	<description>&lt;div class=&quot;wikitext&quot;&gt;&lt;h2&gt;End results versus what's inside the black box&lt;/h2&gt;

&lt;p&gt;One of the divisions in technology is between people who mostly care
about the end results and people who care (sometimes very passionately)
about what is inside the black boxes that they use. The former sort say
things like 'the Pentium is the best-performing CPU right now'; the
latter say things like 'the SPARC architecture is far more elegant than
the ugly hacks of the x86'.&lt;/p&gt;

&lt;p&gt;(This division is not exclusive to computer hardware, but computer
hardware and especially CPU architecture is a common hotbed of people
who care a lot about it.)&lt;/p&gt;

&lt;p&gt;I used to think that I was more the latter sort of person than the
former, but either that changed over time or I was lying to myself.
These days, it's pretty clear I'm much more someone who cares about the
ends than someone who cares about what's inside the box. I certainly
don't make my technology decisions (even for my personal machines) based
on the elegance of the hardware; by now, I care far more about how well
it runs things that I care about.&lt;/p&gt;

&lt;p&gt;(For example, the x86 architecture is a horrible mess but you know
what, I don't care. The compiler worries about the ugliness and the
limited register set, and Intel and AMD have consistently delivered the
affordable performance that all of the RISC vendors failed to manage. I
would be happier if it had been the other way around, but I don't feel
very strongly about it any more.)&lt;/p&gt;

&lt;p&gt;This obviously strongly influences my attitudes on things like &lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/unix/WorkstationMythology&quot;&gt;Unix
workstation mythology&lt;/a&gt;. Because I care
more about end results these days, I'm not much taken with arguments
that old Unix workstation hardware, old RISC chips, and so on were
intrinsically superior to today's PC hardware because they were more
elegant and less of a horrible kludge; since what I care most about
is how well the resulting machine runs my Unix environment, I prefer
today's PCs, warts and all. I know that there are people who don't
hold this view and who feel strongly enough about it to make different
choices, but in many ways we're on different sides of a fairly large
gulf, one that there's very little point in arguing over.&lt;/p&gt;

&lt;p&gt;(Instead I &lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/unix/WorkstationMythology&quot;&gt;argue&lt;/a&gt; that the Unix
workstations were less elegant than people remember and had their own
share of warts and kludges.)&lt;/p&gt;

&lt;p&gt;It's worth noting that I am not an absolutist on this. After all, I'm
using slower PC hardware because it's what my operating system supports
with open source drivers, and not using various attractive programs
because they're not open source or they're just ugly inside, and so on,
so clearly I still care about the details to some degree. Sysadmins are
somewhat biased in this anyways, because for us the end results include
things like 'can we support this and troubleshoot it or is it going to
cause us heartburn at 3am', and these practically require us to peek
inside the black boxes and care about the contents to some degree.&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt; (&lt;a href=&quot;http://utcc.utoronto.ca/~cks/space/blog/tech/EndsVsDetails?showcomments#comments&quot;&gt;One comment&lt;/a&gt;.) &lt;/div&gt;</description>
	<pubDate>Fri, 12 Mar 2010 06:27:47 +0000</pubDate>
</item>
<item>
	<title>HolisticInfoSec.org: #6 of the Top Vulnerability Discoverers of 2009</title>
	<guid>tag:blogger.com,1999:blog-20011960.post-507211821046987930</guid>
	<link>http://holisticinfosec.blogspot.com/2010/03/6-of-top-vulnerability-discoverers-of.html</link>
	<description>As I was last &lt;a href=&quot;http://blogs.iss.net/archive/2008Top10VulnResearc.html&quot; target=&quot;_blank&quot;&gt;year&lt;/a&gt;, I am again pleased to report that the vulnerabilities I've been happily and responsibly &lt;a href=&quot;http://osvdb.org/creditees/4374-russ-mcree&quot; target=&quot;_blank&quot;&gt;disclosing&lt;/a&gt; and &lt;a href=&quot;http://holisticinfosec.org/content/category/6/23/45/&quot; target=&quot;_blank&quot;&gt;posting&lt;/a&gt; have resulted in 6th place on the list of &lt;a href=&quot;http://blogs.iss.net/archive/2009Top10VulnResearc.html&quot; target=&quot;_blank&quot;&gt;Top Vulnerability Discoverers of 2009&lt;/a&gt;. Thanks to Scott Moore of the IBM ISS &lt;a href=&quot;http://blogs.iss.net/index.html&quot; target=&quot;_blank&quot;&gt;Frequency X Blog&lt;/a&gt; who compiled the list for 2009. &lt;br /&gt;I remain both pleased and disconcerted to find myself on this list and wish to convey a few thoughts on the subject.&lt;br /&gt;&lt;br /&gt;1) First, a reminder that my work has focused entirely on vulnerable web apps   and pales in comparison to the likes of others named on both the all-time list and the list for 2009. Congratulations and well done to you all.&lt;br /&gt;&lt;br /&gt;2) My efforts resulted in what the Frequency X post indicates is 48 unique web application vulnerabilities in 2009. This again serves as a stark reminder of what a challenged state of affairs the development process is for so many web application vendors. May the &lt;a href=&quot;http://www.microsoft.com/security/sdl/&quot; target=&quot;_blank&quot;&gt;SDL&lt;/a&gt; and its &lt;a href=&quot;http://www.owasp.org/index.php/Category:OWASP_Code_Review_Project&quot; target=&quot;_blank&quot;&gt;ilk&lt;/a&gt; prevail.&lt;br /&gt;&lt;br /&gt;3) I will continue my discovery and reporting efforts with the intention of somehow making a dent in the statistics (unrealistic, I know). I focused heavily on cross-site request forgery (&lt;a href=&quot;http://en.wikipedia.org/wiki/CSRF&quot; target=&quot;_blank&quot;&gt;CSRF&lt;/a&gt;) issues in 2009 and was not surprised to find that the average number of days for CSRF vulnerabilities to be resolved increased by 37 days to 93 days.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://1.bp.blogspot.com/_kVOWaY1TAF0/S5nMViU3yYI/AAAAAAAAATY/RIOL9OAMiGE/s1600-h/ScreenShot005.png&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://1.bp.blogspot.com/_kVOWaY1TAF0/S5nMViU3yYI/AAAAAAAAATY/RIOL9OAMiGE/s320/ScreenShot005.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5447609894644992386&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The above figure can be found on page 7 of the 8th Edition of WhiteHat's &lt;a href=&quot;http://www.whitehatsec.com/home/assets/WPstats_fall09_8th.pdf&quot; target=&quot;_blank&quot;&gt;Website Security Statistics Report&lt;/a&gt;. &lt;br /&gt;I believe, as the report states, that much of the reason CSRF issues linger unabated is that &quot;no one at the organization knows about, understands, or respects the issue.&quot; &lt;br /&gt;I can tell you from personal experience, I heard this many times in 2009. &lt;br /&gt;It should therefore surprise no one that CSRF is number four on the &lt;a href=&quot;http://cwe.mitre.org/top25/&quot; target=&quot;_blank&quot;&gt;2010 CWE/SANS Top 25 Most Dangerous Programming Errors&lt;/a&gt;.&lt;br /&gt;Hopefully, each application discovered and reported as vulnerable to this issue leads to a downward statistical trend in the likes of the WhiteHat report.&lt;br /&gt;&lt;br /&gt;I look forward to continued discussions of these issues with you, dear readers, and hope we can make a difference.&lt;br /&gt;&lt;br /&gt;Cheers.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://del.icio.us/post?url=http://holisticinfosec.blogspot.com/2010/03/6-of-top-vulnerability-discoverers-of.html&amp;title=#6%20of%20the%20Top%20Vulnerability%20Discoverers%20of%202009 &quot; title=&quot;#6 of the Top Vulnerability Discoverers of 2009 &quot;&gt;del.icio.us&lt;/a&gt; | &lt;a href=&quot;http://digg.com/submit?phase=2&amp;url=http://holisticinfosec.blogspot.com/2010/03/6-of-top-vulnerability-discoverers-of.html&quot; title=&quot;#6 of the Top Vulnerability Discoverers of 2009 &quot;&gt;digg&lt;/a&gt; | &lt;a href=&quot;http://slashdot.org/submit.pl?url=http://holisticinfosec.blogspot.com/2010/03/6-of-top-vulnerability-discoverers-of.html&quot;&gt;Submit to Slashdot&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/20011960-507211821046987930?l=holisticinfosec.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Fri, 12 Mar 2010 04:45:00 +0000</pubDate>
	<author>noreply@blogger.com (Russ McRee)</author>
</item>
<item>
	<title>Everything Sysadmin: End every helpdesk request on a good note</title>
	<guid>tag:everythingsysadmin.com,2010://2.337</guid>
	<link>http://everythingsysadmin.com/2010/03/end-every-helpdesk-request-on.html</link>
	<description>&lt;a href=&quot;http://broadcast.oreilly.com/2010/03/end-every-helpdesk-request-on.html&quot;&gt;New blog post up on O'Reilly's Author Blogs.&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description>
	<pubDate>Fri, 12 Mar 2010 02:11:56 +0000</pubDate>
</item>
<item>
	<title>SysAdmin1138: The last provisions before we sail</title>
	<guid>tag:sysadmin1138.net,2010:/mt/blog//5.2409</guid>
	<link>http://feedproxy.google.com/~r/Sysadmin1138/~3/_li_VxVNzP0/the-last-provisions-before-we-sail.shtml</link>
	<description>&lt;div&gt;When we got warning that the Governor would be putting a draconian spending freeze into place, our supreme masters informed us we had to spend a certain amount of money now or we would lose it. &lt;img src=&quot;http://sysadmin1138.net/mt/blog/img/HP-Boxes.png&quot; alt=&quot;HP-Boxes.png&quot; title=&quot;I hope we got enough limes&quot; class=&quot;mt-image-right&quot; height=&quot;640&quot; width=&quot;480&quot; /&gt;Additionally, we were told that funds in the next 12-24 months would be downright scarce, so order now while we still could.&amp;nbsp; I've talked about this in a few previous posts, but the orders have started to arrive.&lt;br /&gt;&lt;br /&gt;We have a nice pile of HP boxes in the data-center right now, and they haven't all arrived yet. Most of the boxes in this picture are dedicated to storage in one way or another. &lt;br /&gt;&lt;br /&gt;We haven't gotten the box with 200 LTO4 tapes in it, which should be a nice, big box. We did get the box with the labels for the tapes, though; that's that little one on the foreground. That box contained two folders of tape bar-codes, that box was w-a-y overkill. It also looks likely that HP managed to not ship us a monster box with 20+ individually boxed hard-drives! Talk about over-packaging, Batman.&lt;br /&gt;&lt;br /&gt;We're not touching these boxes until they're all here, and we're done with the Spring Break madness. So once quarter starts (3/30) we'll have time to do things like install the new tape library, add a few shelves to our EVA4400. And figure out what we're doing with a storage server we're building (OpenNAS is a strong contender). As well as integrating one or two new servers into our ESX cluster while we're at it.&lt;br /&gt;&lt;br /&gt;And then... we wait. Perhaps until 2012.&lt;br /&gt;&lt;/div&gt;
        
    &lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=_li_VxVNzP0:WGd9k3fdKTg:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=_li_VxVNzP0:WGd9k3fdKTg:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=_li_VxVNzP0:WGd9k3fdKTg:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=_li_VxVNzP0:WGd9k3fdKTg:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=_li_VxVNzP0:WGd9k3fdKTg:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=_li_VxVNzP0:WGd9k3fdKTg:gIN9vFwOqvQ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?i=_li_VxVNzP0:WGd9k3fdKTg:gIN9vFwOqvQ&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?a=_li_VxVNzP0:WGd9k3fdKTg:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/Sysadmin1138?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Sysadmin1138/~4/_li_VxVNzP0&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 11 Mar 2010 23:41:25 +0000</pubDate>
</item>
<item>
	<title>The Blog of Ben Rockwood: OpenSolaris Elections: Go Vote!</title>
	<guid>tag:cuddletechblogs,2010:theblogofbenrockwood.1116</guid>
	<link>http://www.cuddletech.com/blog/pivot/entry.php?id=1116</link>
	<description>&lt;p&gt;
It's that time, make sure you don't forget to &lt;a href=&quot;https://poll.opensolaris.org/&quot;&gt;Vote in the OpenSolaris annual elections&lt;/a&gt;.   You'll notice that I'm not going to comment on the issue of the constitution this year, but I do ask for you to consider Octave Orgeron, Joerg Schilling, Peter Tribble, Moinak Ghosh, and all the community guys for OGB.  There is a great list of folks on the ballot, including also John Plocher and Dennis Clarke who are fantastic enthusiastic folks.&lt;/p&gt;</description>
	<pubDate>Thu, 11 Mar 2010 21:41:00 +0000</pubDate>
</item>

</channel>
</rss>
