<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title><![CDATA[[SecurityRatty] tag: dir]]></title>
    <link>http://securityratty.com/tag/dir</link>
    <description></description>
    <pubDate>Wed, 09 Jan 2008 01:53:00 +0000</pubDate>
    <generator>iRatty Engine</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[[OT rant] Are there any home WiFi routers that DON'T SUCK?]]></title>
      <link>http://securityratty.com/article/2110e94e736fbe5f32088eee09481bee</link>
      <guid>http://securityratty.com/article/2110e94e736fbe5f32088eee09481bee</guid>
      <description><![CDATA[Warning: rant ahead, and names named
When I'm not traveling, I like to work from home some days rather than endure the trek from Seattle to Redmond (although it's much better now that our own employee...]]></description>
      <content:encoded><![CDATA[<p><em>Warning: rant ahead, and names named.</em></p>  <p>When I'm not traveling, I like to work from home some days rather than endure the trek from Seattle to Redmond (although it's much better now that our own <a href="http://seattlepi.nwsource.com/business/332970_msftbus25.html" target="_blank">employee transit service</a> has expanded into my neighborhood -- the existence of which is sad commentary on the availability and reliability of Seattle's public transit companies).</p>  <p>This means, of course, that I need fast and stable network connections. Comcast with their PowerBoost is working very well for me. But I just can't find a decent wireless router at all. My Lenovo T61p (with Intel 4965abgn adapter) just won't stay connected to my D-Link DIR-628 and IT'S DRIVING ME CRAZY! (Yes, I've tried various driver versions, from both Lenovo and Intel.)</p>  <p>My house is in an area with a lot of wireless activity -- sometimes I can see nine or ten SSIDs. I'm running draft N on 2.4GHz (which occupies two non-adjacent channels, currently 1 and 4), and I suspect the problem is collision interference. I could shift the router to 5.2GHz, which I probably would help, but then the rest of the computers in my house won't connect. Why, you ask? Well get this: the DIR-628 is part of <a href="http://www.dlink.com/products/category.asp?cid=1&amp;sec=1#cid_103" target="_blank">D-Link's RangeBooster N family</a>. So I stayed in the family and got two DWA-542 adapters for the desktop computers. Yet they only do 2.4GHz! Silly me, I assumed that being in the same family means full support of the router's capabilities.</p>  <p>I'm very tempted to replace my router again -- and I'm thinking that the best option is to get one with dual radios. That way I can move my T61p to 5.2GHz and replace the desktop adapters, while still having single-channel 802.11b/g on 2.4GHz for the Wii and my PlayStation Portable.</p>  <p>Now my request: tell me about your experience with home routers. What do you really like, and why? What should I buy?</p><img src="http://blogs.technet.com/aggbug.aspx?PostID=3110595" width="1" height="1">]]></content:encoded>
      <pubDate>Fri, 22 Aug 2008 20:12:38 +0000</pubDate>
      <category domain="http://securityratty.com/tag/decent wireless router">decent wireless router</category>
      <category domain="http://securityratty.com/tag/home">home</category>
      <category domain="http://securityratty.com/tag/router">router</category>
      <category domain="http://securityratty.com/tag/lenovo">lenovo</category>
      <category domain="http://securityratty.com/tag/d-link dir-628">d-link dir-628</category>
      <category domain="http://securityratty.com/tag/lenovo t61p">lenovo t61p</category>
      <category domain="http://securityratty.com/tag/intel">intel</category>
      <category domain="http://securityratty.com/tag/dir-628">dir-628</category>
      <category domain="http://securityratty.com/tag/intel 4965abgn adapter">intel 4965abgn adapter</category>
      <source url="http://blogs.technet.com/steriley/archive/2008/08/22/ot-rant-are-there-any-home-wifi-routers-that-don-t-suck.aspx">[OT rant] Are there any home WiFi routers that DON'T SUCK?</source>
    </item>
    <item>
      <title><![CDATA[Setting file ACLs with PowerShell part 5]]></title>
      <link>http://securityratty.com/article/90d19b6de7fa7182ead7249b95991eda</link>
      <guid>http://securityratty.com/article/90d19b6de7fa7182ead7249b95991eda</guid>
      <description><![CDATA[In my previous post in this series, I showed how easy it is to work with enumerations in PowerShell. Here's the code I've been walking through in this series
dacl = (dir foo.txt).GetAccessControl...]]></description>
      <content:encoded><![CDATA[<p>In my <a href="http://pluralsight.com/blogs/keith/archive/2007/11/29/49320.aspx">previous post</a> in this series, I showed how easy it is to work with enumerations in PowerShell. Here's the code I've been walking through in this series:  <p><tt>$dacl = (dir foo.txt).GetAccessControl()<br>$newRule = New-Object Security.AccessControl.FileSystemAccessRule "keith", Modify, Allow<br>$modified = $false<br>$dacl.ModifyAccessRule("Add", $newRule, [ref]$modified)<br>(dir foo.txt).SetAccessControl($dacl)<br></tt> <p>All I've got left to explain is the last line of code. It's important to note that when you're tweaking ACLs, there are basically three steps you have to take:  <ol> <li>Read the ACL from an object.  <li>Tweak it however you like.  <li>Write the ACL back to the object.</li></ol> <p>In this last line of code, I'm applying the new, tweaked ACL back to the file foo.txt. At this point the new access control policy takes effect.</p> <p>Navigate posts in this series: <a href="http://pluralsight.com/blogs/keith/archive/2007/11/29/49320.aspx">prev</a></p><img src ="http://pluralsight.com/blogs/keith/aggbug/49855.aspx" width = "1" height = "1" />]]></content:encoded>
      <pubDate>Wed, 09 Jan 2008 01:53:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/object">object</category>
      <category domain="http://securityratty.com/tag/new-object security">new-object security</category>
      <category domain="http://securityratty.com/tag/dir foo">dir foo</category>
      <category domain="http://securityratty.com/tag/txt">txt</category>
      <category domain="http://securityratty.com/tag/series">series</category>
      <category domain="http://securityratty.com/tag/code">code</category>
      <category domain="http://securityratty.com/tag/acl">acl</category>
      <category domain="http://securityratty.com/tag/dacl">dacl</category>
      <category domain="http://securityratty.com/tag/newrule">newrule</category>
      <source url="http://pluralsight.com/blogs/keith/archive/2008/01/09/49855.aspx">Setting file ACLs with PowerShell part 5</source>
    </item>
  </channel>
</rss>
