<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Huddled Masses &#187; dns</title>
	<atom:link href="http://huddledmasses.org/tag/dns/feed/" rel="self" type="application/rss+xml" />
	<link>http://huddledmasses.org</link>
	<description>You can do more than breathe for free...</description>
	<lastBuildDate>Tue, 31 Aug 2010 04:13:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<cloud domain='huddledmasses.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Update to PoshNet and Get-DNS</title>
		<link>http://huddledmasses.org/update-to-poshnet-and-get-dns/</link>
		<comments>http://huddledmasses.org/update-to-poshnet-and-get-dns/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 06:15:26 +0000</pubDate>
		<dc:creator>Joel 'Jaykul' Bennett</dc:creator>
				<category><![CDATA[Huddled]]></category>
		<category><![CDATA[dig]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[NsLookup]]></category>
		<category><![CDATA[PoshNet]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://huddledmasses.org/?p=815</guid>
		<description><![CDATA[This is just a short note about Get-DNS (my dig for PowerShell cmdlet). Someone emailed me to ask how they could specify the dns servers, and the answer was that you couldn&#8217;t. So then I looked a bit deeper, and realized that the code I copied from CodeProject already had support for that, so I [...]]]></description>
			<content:encoded><![CDATA[	<p>This is just a short note about Get-<span class="caps">DNS</span> (my <a href="http://huddledmasses.org/powershell-dig-nslookup-cmdlet/">dig for PowerShell</a> cmdlet).  Someone emailed me to ask how they could specify the dns servers, and the answer was that you couldn&#8217;t.  So then I looked a bit deeper, and realized that the code I copied from <a href="http://www.codeproject.com/KB/IP/DNS_NET_Resolver.aspx">CodeProject</a> already had support for that, so I whipped up a new version which you can <a href="http://HuddledMasses.org/downloads/PoshNet.zip">download here</a> (<a href="http://HuddledMasses.org/downloads/PoshNet.7z">source here</a> under <span class="caps">GPL</span>).</p>

	<p>The only real difference is the addition of a -DnsServers parameter which accepts one or more dns server ip addresses. NOTE: they must be IP Addresses, not domain names (sorry, I was lazy, Maybe if someone I&#8217;ll make sure that gets tweaked eventually). You may include the port (eg: 71.6.202.220:53) but you don&#8217;t have to unless it&#8217;s non-standard (ie: not port 53).  You may specify multiple servers if you need a fallback &#8230; and as always, if you leave it off, the cmdlet will use your default <span class="caps">DNS</span> servers.</p>

	<p>Have fun, and uhm, feel free to tip the waiter.</p>]]></content:encoded>
			<wfw:commentRss>http://huddledmasses.org/update-to-poshnet-and-get-dns/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PowerShell dig (nslookup) Cmdlet!</title>
		<link>http://huddledmasses.org/powershell-dig-nslookup-cmdlet/</link>
		<comments>http://huddledmasses.org/powershell-dig-nslookup-cmdlet/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 00:12:00 +0000</pubDate>
		<dc:creator>Joel 'Jaykul' Bennett</dc:creator>
				<category><![CDATA[Huddled]]></category>
		<category><![CDATA[dig]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[NsLookup]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://HuddledMasses.org/?p=677</guid>
		<description><![CDATA[So, today someone came to #PowerShell on irc.freenode.net and asked how to do nslookup functionality natively in PowerShell, and nobody knew how &#8230; and then as the question evolved, it turned out that what they needed was to do a lookup for both MX and TXT records for a series of domains &#8230; To cut [...]]]></description>
			<content:encoded><![CDATA[	<p>So, today someone came to #PowerShell on irc.freenode.net and asked how to do nslookup functionality natively in PowerShell, and nobody knew how &#8230; and then as the question evolved, it turned out that what they needed was to do a lookup for <strong>both</strong> MX and <span class="caps">TXT</span> records for a series of domains &#8230;</p>

	<p>To cut a long story short, I took some code from <a href="http://www.codeproject.com/KB/IP/DNS_NET_Resolver.aspx">CodeProject</a> and whipped up <code>Get-DNS</code> and a PoshNet snapin module which you can <a href="http://HuddledMasses.org/downloads/PoshNet.zip">download here</a> (<a href="http://HuddledMasses.org/downloads/PoshNet.7z">source here</a> under <span class="caps">GPL</span>).</p>

	<p>It has an -EmulateDig switch to produce output similar to what you would see from the dig command, and otherwise produces an object with all the information in it.  I&#8217;ll be cleaning this up in the future, but for now the main use is quite simple:</p>

	<p><code>Get-Dns [-Name] &#60;String&#62; [[-Type] &#60;QueryType[]&#62;] [[-Class] &#60;QueryClass&#62;] [-DnsServers &#60;String[]&#62;] [-EmulateDigOutput]</code></p>

	<p>The mandatory parameter is the domain <strong>Name</strong> of the computer to look up, of course &#8230; which you can pass on the pipeline. Pretty much every <span class="caps">DNS</span> record <strong>type</strong> ever created is allowed, including dozens I&#8217;ve never heard of &#8212; you can get a list by calling <code>Get-DNS -Type &#34;&#34;</code>  <img src='http://huddledmasses.org/wordpress/wp-includes/images/smilies/../../../wp-content/plugins/smilingmasses/smile.gif' alt=':)' class='wp-smiley' />   And you can specify the <strong>class</strong> as IN, CS, CH, HS, or <span class="caps">ANY</span> (the default).</p>

	<h2> <img src='http://huddledmasses.org/wordpress/wp-includes/images/smilies/../../../wp-content/plugins/smilingmasses/new.gif' alt='[new]' class='wp-smiley' />  Update: <a href="http://huddledmasses.org/update-to-poshnet-and-get-dns/">Now with -DnsServers</a></h2>

	<p> <img src='http://huddledmasses.org/wordpress/wp-includes/images/smilies/../../../wp-content/plugins/smilingmasses/new.gif' alt='[new]' class='wp-smiley' />  In this new release (Nov 20, 2008) you have the -DnsServers parameter which accepts one or more dns server ip addresses. NOTE: they must be IP Addresses, not domain names (sorry, I was lazy, Maybe if someone I&#8217;ll make sure that gets tweaked eventually). You may include the port (eg: 71.6.202.220:53) but you don&#8217;t have to unless it&#8217;s non-standard (ie: not port 53).  You may specify multiple servers if you need a fallback &#8230; and as always, if you leave it off, the cmdlet will use your default <span class="caps">DNS</span> servers.</p>

	<h3>Installation</h3>

	<p>On CTP2 you can install this by just calling <code>Add-Module .PoshNet.dll</code> (or by putting it in a folder &#8230; DocumentsWindowsPowerShellPackagesPoshNet and then you can just <code>Add-Module PoshNet</code>). On the PowerShell 1.0 release, you need to use InstallUtil.exe to install it, so I&#8217;ve included a &#8220;Install.ps1&#8221; script which should let you call: <code>.\Install.ps1 PoshNet.dll</code> from an elevated console:</p>

	<div class="posh code posh" style="font-family:monospace;"><br />
Extract<span style="color: #66cc66;">-</span>Archive PoshNet.<span style="color: #003366;">zip</span> &nbsp; &nbsp; &nbsp;<span style="color: #666666; font-style: italic;"># Unzip the archive somewhere...</span><br />
.\Install.<span style="color: #003366;">ps1</span> PoshNet.<span style="color: #003366;">dll</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #666666; font-style: italic;"># Run InstallUtil.exe on the dll</span><br />
<span style="color: #0066cc; font-style: italic;">Get-<span style="font-style: normal;">PsSnapin</span></span> <span style="color: #000066;">-registered</span> PoshNet <span style="color: #666666; font-style: italic;"># Verify that PoshNet is installed</span><br />
<span style="color: #0066cc; font-style: italic;">Add-<span style="font-style: normal;">PsSnapin</span></span> PoshNet &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;"># Load it. (Add this to your profile?)</span><br />
<span style="color: #0066cc; font-style: italic;">Get-<span style="font-style: normal;">Command</span></span> <span style="color: #000066;">-PsSnapin</span> PoshNet &nbsp; &nbsp;<span style="color: #666666; font-style: italic;"># Verify that it is loaded...</span></div>

	<h3>Example uses</h3>

	<div class="bash code bash" style="font-family:monospace;"><br />
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>: Get-Dns HuddledMasses.org <span style="color: #660033;">-EmulateDig</span><br />
; <span style="color: #000000; font-weight: bold;">&lt;&lt;&gt;&gt;</span> Dig.Net 1.0.0.0 <span style="color: #000000; font-weight: bold;">&lt;&lt;&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">@</span>24.92.226.40 A HuddledMasses.org<br />
<span style="color: #000000; font-weight: bold;">;;</span> global options: printcmd<br />
<span style="color: #000000; font-weight: bold;">;;</span> Got answer:<br />
<span style="color: #000000; font-weight: bold;">;;</span> -<span style="color: #000000; font-weight: bold;">&gt;&gt;</span>HEADER<span style="color: #000000; font-weight: bold;">&lt;&lt;</span>- opcode: Query, status: NoError, <span style="color: #c20cb9; font-weight: bold;">id</span>: <span style="color: #000000;">20722</span><br />
<span style="color: #000000; font-weight: bold;">;;</span> flags: &nbsp;qr rd ra; QUERY: <span style="color: #000000;">1</span>, ANSWER: <span style="color: #000000;">1</span>, AUTHORITY: <span style="color: #000000;">3</span>, ADDITIONAL: <span style="color: #000000;">0</span><br />
<br />
<span style="color: #000000; font-weight: bold;">;;</span> QUESTION SECTION:<br />
;HuddledMasses.org. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IN &nbsp; &nbsp; &nbsp;A<br />
<br />
<span style="color: #000000; font-weight: bold;">;;</span> ANSWER SECTION:<br />
HuddledMasses.org. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">85847</span> &nbsp;IN &nbsp; &nbsp; &nbsp;A &nbsp; &nbsp; &nbsp; 72.232.199.162<br />
<br />
<span style="color: #000000; font-weight: bold;">;;</span> AUTHORITY SECTION:<br />
HuddledMasses.org. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">85252</span> &nbsp;IN &nbsp; &nbsp; &nbsp;NS &nbsp; &nbsp; &nbsp;ns2.us.editdns.net.<br />
HuddledMasses.org. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">85252</span> &nbsp;IN &nbsp; &nbsp; &nbsp;NS &nbsp; &nbsp; &nbsp;ns3.us.editdns.net.<br />
HuddledMasses.org. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">85252</span> &nbsp;IN &nbsp; &nbsp; &nbsp;NS &nbsp; &nbsp; &nbsp;ns1.us.editdns.net.<br />
<br />
<span style="color: #000000; font-weight: bold;">;;</span> Query <span style="color: #000000; font-weight: bold;">time</span>: <span style="color: #000000;">23</span> msec<br />
<span style="color: #000000; font-weight: bold;">;;</span> SERVER: 24.92.226.40<span style="color: #666666; font-style: italic;">#53(24.92.226.40)</span><br />
<span style="color: #000000; font-weight: bold;">;;</span> WHEN: Thu Sep <span style="color: #000000;">18</span> <span style="color: #000000;">21</span>:<span style="color: #000000;">18</span>:<span style="color: #000000;">22</span> <span style="color: #000000;">2008</span><br />
<span style="color: #000000; font-weight: bold;">;;</span> MSG SIZE rcvd: <span style="color: #000000;">119</span></div>

	<p>You can also ask for multiple record types at once, to solve the original question that was asked on IRC:</p>

	<div class="bash code bash" style="font-family:monospace;"><br />
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>: Get-DNS HuddledMasses.org MX,TXT <span style="color: #000000; font-weight: bold;">|</span> fl RecordsMX,RecordsTxt,MessageSize,TimeStamp<br />
<br />
RecordsMX &nbsp; : <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #000000;">1</span> aspmx.l.google.com., <span style="color: #000000;">5</span> alt1.aspmx.l.google.com., <span style="color: #000000;">5</span> alt2.aspmx.l.google.com.,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">10</span> aspmx2.googlemail.com., <span style="color: #000000;">10</span> aspmx3.googlemail.com., <span style="color: #000000;">10</span> aspmx4.googlemail.com.,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">10</span> aspmx5.googlemail.com.<span style="color: #7a0874; font-weight: bold;">&#125;</span><br />
RecordsTXT &nbsp;: <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #ff0000;">&quot;v=spf1 include:_spf.google.com -all&quot;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span><br />
MessageSize : <span style="color: #000000;">458</span><br />
TimeStamp &nbsp; : <span style="color: #000000;">9</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">18</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2008</span> <span style="color: #000000;">9</span>:<span style="color: #000000;">22</span>:<span style="color: #000000;">40</span> PM</div>

	<p>Of course, the other part of the request is that you need to be able to query a whole list of servers, so you can do that, for instance, by having a file with a domain per line, or whatever.  Also, for the sake of this last example, recall that unlike the linux &#8220;dig&#8221; command, we can output everything as an object (like we did above) and all of the Records* types are collections of objects, so you can expand them, and enumerate or format them.  Play with the &#8220;Answers&#8221; collection:</p>

	<div class="bash code bash" style="font-family:monospace;"><br />
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">3</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>: <span style="color: #c20cb9; font-weight: bold;">cat</span> Servers.txt <span style="color: #000000; font-weight: bold;">|</span> get-dns <span style="color: #660033;">-type</span> MX,TXT <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #000000; font-weight: bold;">select</span> <span style="color: #660033;">-expand</span> Answers <span style="color: #000000; font-weight: bold;">|</span> ft <span style="color: #660033;">-auto</span><br />
<br />
&nbsp; TTL NAME &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Type Class RDLENGTH RECORD &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TimeLived<br />
&nbsp; <span style="color: #660033;">---</span> <span style="color: #660033;">----</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #660033;">----</span> <span style="color: #660033;">-----</span> <span style="color: #660033;">--------</span> <span style="color: #660033;">------</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #660033;">---------</span><br />
&nbsp;<span style="color: #000000;">3600</span> geoshell.org. &nbsp; &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">25</span> <span style="color: #000000;">10</span> ASPMX4.GOOGLEMAIL.COM. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> geoshell.org. &nbsp; &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> ASPMX5.GOOGLEMAIL.COM. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> geoshell.org. &nbsp; &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">24</span> <span style="color: #000000;">5</span> ALT1.ASPMX.L.GOOGLE.COM. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> geoshell.org. &nbsp; &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">5</span> ALT2.ASPMX.L.GOOGLE.COM. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> geoshell.org. &nbsp; &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">4</span> <span style="color: #000000;">1</span> ASPMX.L.GOOGLE.COM. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> geoshell.org. &nbsp; &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> ASPMX2.GOOGLEMAIL.COM. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> geoshell.org. &nbsp; &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> ASPMX3.GOOGLEMAIL.COM. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
<span style="color: #000000;">84628</span> huddledmasses.org. &nbsp; MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">25</span> <span style="color: #000000;">10</span> aspmx3.googlemail.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
<span style="color: #000000;">84628</span> huddledmasses.org. &nbsp; MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> aspmx4.googlemail.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
<span style="color: #000000;">84628</span> huddledmasses.org. &nbsp; MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> aspmx5.googlemail.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
<span style="color: #000000;">84628</span> huddledmasses.org. &nbsp; MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">19</span> <span style="color: #000000;">1</span> aspmx.l.google.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
<span style="color: #000000;">84628</span> huddledmasses.org. &nbsp; MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">5</span> alt1.aspmx.l.google.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">0</span><br />
<span style="color: #000000;">84628</span> huddledmasses.org. &nbsp; MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">5</span> alt2.aspmx.l.google.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">0</span><br />
<span style="color: #000000;">84628</span> huddledmasses.org. &nbsp; MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> aspmx2.googlemail.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
<span style="color: #000000;">86156</span> huddledmasses.org. &nbsp;TXT &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">36</span> <span style="color: #ff0000;">&quot;v=spf1 include:_spf.google.com -all&quot;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> helpfulmom.com. &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">22</span> <span style="color: #000000;">10</span> ASPMX2.GOOGLEMAIL.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> helpfulmom.com. &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> ASPMX3.GOOGLEMAIL.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> helpfulmom.com. &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> ASPMX4.GOOGLEMAIL.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> helpfulmom.com. &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">11</span> <span style="color: #000000;">10</span> ASPMX5.GOOGLEMAIL.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> helpfulmom.com. &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; <span style="color: #000000;">24</span> <span style="color: #000000;">5</span> ALT1.ASPMX.L.GOOGLE.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> helpfulmom.com. &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">5</span> ALT2.ASPMX.L.GOOGLE.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">0</span><br />
&nbsp;<span style="color: #000000;">3600</span> helpfulmom.com. &nbsp; &nbsp; &nbsp;MX &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">4</span> <span style="color: #000000;">1</span> ASPMX.L.GOOGLE.com. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">0</span></div>]]></content:encoded>
			<wfw:commentRss>http://huddledmasses.org/powershell-dig-nslookup-cmdlet/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
