<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: how do I find the range of IPs belonging to a domain</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/</link>
	<description></description>
	<pubDate>Fri, 25 May 2012 21:55:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: sonyfreek</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/#comment-38996</link>
		<dc:creator>sonyfreek</dc:creator>
		<pubDate>Mon, 01 May 2006 18:27:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-38996</guid>
		<description>Another option is Websense or SurfControl.  They have proxy avoidance as a category to prevent walking around your blocked sites.  You can either maintain lots of blocks yourself or "pay them" to surf, seek out, and properly classify them for you.  It became a big problem for us as well and Websense seemed the most logical/cost effective solution.

Wayne</description>
		<content:encoded><![CDATA[<p>Another option is Websense or SurfControl.  They have proxy avoidance as a category to prevent walking around your blocked sites.  You can either maintain lots of blocks yourself or &#8220;pay them&#8221; to surf, seek out, and properly classify them for you.  It became a big problem for us as well and Websense seemed the most logical/cost effective solution.</p>
<p>Wayne</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: astronomer</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/#comment-38997</link>
		<dc:creator>astronomer</dc:creator>
		<pubDate>Mon, 01 May 2006 13:07:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-38997</guid>
		<description>Wayne:
Up til now we have done blocking on our PIX. I started looking at squid for this just last week. 
We have an issue with myspace.com. Several instructors requested we block it because of the disruption it causes in the classrooms and library. 
Blocking the myspace ranges worked for a while. Now the determined students are using public proxies to bypass our rules. I started blocking public proxies. Finding the range really helps there. Now the problem is escalating. The out-going rules started out nearly empty but now have grown to larger than the incoming rules. I found some open proxy lists amounting to hundreds of addresses. This is completely unmanagable by the pix.
I'm looking at building an open proxy block list for the squid and updating it when we get additional complaints. The domain option will help here. 
Another possibility I would like to try would involve regular expressions but I don't know quite where to begin. If squid can block the request going to the open proxy I wouldn't need a massive open proxy block list. That would be an elegant solution. 
The problem here is I don't expect the destination URL to be in the normal location. This is an area I know next to nothing about and would require significant investigation. This would be fun to track down but I question whether I can invest the required level of time. Given my other duties as network engineer, I may have to go with the blunderbus approach with the huge list.
Eventually I expect to purchase one of those layer 7 filters. Hopefully it will know how to screen the public proxies.
Thanks for pointing out the relevant instructions. I plan on using them.
rt</description>
		<content:encoded><![CDATA[<p>Wayne:<br />
Up til now we have done blocking on our PIX. I started looking at squid for this just last week.<br />
We have an issue with&nbsp;&lt;a href="http://myspace.com" title="http://myspace. " target="_blank"&gt;myspace.com&lt;/a&gt;. Several instructors requested we block it because of the disruption it causes in the classrooms and library.<br />
Blocking the myspace ranges worked for a while. Now the determined students are using public proxies to bypass our rules. I started blocking public proxies. Finding the range really helps there. Now the problem is escalating. The out-going rules started out nearly empty but now have grown to larger than the incoming rules. I found some open proxy lists amounting to hundreds of addresses. This is completely unmanagable by the pix.<br />
I&#8217;m looking at building an open proxy block list for the squid and updating it when we get additional complaints. The domain option will help here.<br />
Another possibility I would like to try would involve regular expressions but I don&#8217;t know quite where to begin. If squid can block the request going to the open proxy I wouldn&#8217;t need a massive open proxy block list. That would be an elegant solution.<br />
The problem here is I don&#8217;t expect the destination URL to be in the normal location. This is an area I know next to nothing about and would require significant investigation. This would be fun to track down but I question whether I can invest the required level of time. Given my other duties as network engineer, I may have to go with the blunderbus approach with the huge list.<br />
Eventually I expect to purchase one of those layer 7 filters. Hopefully it will know how to screen the public proxies.<br />
Thanks for pointing out the relevant instructions. I plan on using them.<br />
rt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sonyfreek</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/#comment-38998</link>
		<dc:creator>sonyfreek</dc:creator>
		<pubDate>Sat, 29 Apr 2006 23:22:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-38998</guid>
		<description>Astronomer,

I think that you may be approaching this problem the wrong way.  Instead of blocking the destination IP ranges, you should be blocking anything that attempts to connect to that domain.  I don't know how you're setup, but if you have a proxy server between your users and the Internet, such as squid, you can set it to deny based on domain name, IP Address/Range, regular expressions (extremely cool), time, url regular expressions, ports, protocols, method, browser, user id, and the list goes on.  In your case, you'd setup the following (domain based):
; Define ACLs
acl deny_g dstdomain .google.com   ; Match domain google.com
acl deny_g_rex url_regex -i google ; Match regular expression, which is case insensitive

; Implement ACLs
http_access deny deny_g        ; Blocks access to google domain
http_access deny deny_g_rex    ; Blocks word google within the URL - case-insensitive

Here's the only Squid book you'll ever need:
http://squid.visolve.com/squid/squid24s1/access_controls.htm

Wayne</description>
		<content:encoded><![CDATA[<p>Astronomer,</p>
<p>I think that you may be approaching this problem the wrong way.  Instead of blocking the destination IP ranges, you should be blocking anything that attempts to connect to that domain.  I don&#8217;t know how you&#8217;re setup, but if you have a proxy server between your users and the Internet, such as squid, you can set it to deny based on domain name, IP Address/Range, regular expressions (extremely cool), time, url regular expressions, ports, protocols, method, browser, user id, and the list goes on.  In your case, you&#8217;d setup the following (domain based):<br />
; Define ACLs<br />
acl deny_g dstdomain&nbsp;&lt;a href="http://.google.com" title="http://.google. " target="_blank"&gt;.google.com&lt;/a&gt;   ; Match domain&nbsp;&lt;a href="http://google.com" title="http://google. " target="_blank"&gt;google.com&lt;/a&gt;<br />
acl deny_g_rex url_regex -i google ; Match regular expression, which is case insensitive</p>
<p>; Implement ACLs<br />
http_access deny deny_g        ; Blocks access to google domain<br />
http_access deny deny_g_rex    ; Blocks word google within the URL - case-insensitive</p>
<p>Here&#8217;s the only Squid book you&#8217;ll ever need:<br />
&lt;a href="http://squid.visolve.com/squid/squid24s1/access_controls.htm" rel="nofollow"&gt;http://squid.visolve.com/squid/squid24s1/access_controls.htm&lt;/a&gt;</p>
<p>Wayne</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: astronomer</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/#comment-38999</link>
		<dc:creator>astronomer</dc:creator>
		<pubDate>Fri, 28 Apr 2006 13:53:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-38999</guid>
		<description>Thanks Joshua:
That is how I did it the last time. When I stumbled across it the first time I didn't think about it as a special method. Now I know better. I'm going to write this down and tell my friends so I don't forget again.
rt</description>
		<content:encoded><![CDATA[<p>Thanks Joshua:<br />
That is how I did it the last time. When I stumbled across it the first time I didn&#8217;t think about it as a special method. Now I know better. I&#8217;m going to write this down and tell my friends so I don&#8217;t forget again.<br />
rt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joshua2</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/#comment-39000</link>
		<dc:creator>joshua2</dc:creator>
		<pubDate>Fri, 28 Apr 2006 13:04:18 +0000</pubDate>
		<guid isPermaLink="false">#comment-39000</guid>
		<description>
To see their entire subnet, you take the IP address(es) from the nslookup (of their A record) and put that address into a Whois at www.arin.net.  The results from arin will show the entire subnet.  For instance:
1) A record on www.network-tools.com is 66.98.244.117
2) Arin.net whois for 66.98.244.117 shows a CIDR of 66.98.128.0/17.

Go to www.dnsstuff.com or www.network-tools.com for some graphical lookup tools.  </description>
		<content:encoded><![CDATA[<p>To see their entire subnet, you take the IP address(es) from the nslookup (of their A record) and put that address into a Whois at &lt;a href="http://www.arin.net" rel="nofollow"&gt;http://www.arin.net&lt;/a&gt;.  The results from arin will show the entire subnet.  For instance:<br />
1) A record on &lt;a href="http://www.network-tools.com" rel="nofollow"&gt;http://www.network-tools.com&lt;/a&gt; is 66.98.244.117<br />
2)&nbsp;&lt;a href="http://Arin.net" title="http://Arin. " target="_blank"&gt;Arin.net&lt;/a&gt; whois for 66.98.244.117 shows a CIDR of 66.98.128.0/17.</p>
<p>Go to &lt;a href="http://www.dnsstuff.com" rel="nofollow"&gt;http://www.dnsstuff.com&lt;/a&gt; or &lt;a href="http://www.network-tools.com" rel="nofollow"&gt;http://www.network-tools.com&lt;/a&gt; for some graphical lookup tools.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: petkoa</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/#comment-39001</link>
		<dc:creator>petkoa</dc:creator>
		<pubDate>Fri, 28 Apr 2006 11:19:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-39001</guid>
		<description>Hi astronomer,

You probably did this years ago when it was generally accepted to allow zone transfers without much fuss... You may use any of:

host -l some.domain.name ,

dig -t axfr some.domain.name , or

"ls some.domain.name" in the interactive shell of nslookup

but odds that yol'll get an answer are tiny.

BR and good luck,

Petko
</description>
		<content:encoded><![CDATA[<p>Hi astronomer,</p>
<p>You probably did this years ago when it was generally accepted to allow zone transfers without much fuss&#8230; You may use any of:</p>
<p>host -l&nbsp;&lt;a href="http://some.domain.name" title="http://some.domain. " target="_blank"&gt;some.domain.name&lt;/a&gt; ,</p>
<p>dig -t axfr&nbsp;&lt;a href="http://some.domain.name" title="http://some.domain. " target="_blank"&gt;some.domain.name&lt;/a&gt; , or</p>
<p>&#8220;ls&nbsp;&lt;a href="http://some.domain.name" title="http://some.domain. " target="_blank"&gt;some.domain.name&lt;/a&gt;&#8221; in the interactive shell of nslookup</p>
<p>but odds that yol&#8217;ll get an answer are tiny.</p>
<p>BR and good luck,</p>
<p>Petko</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rjournitz574</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/#comment-39002</link>
		<dc:creator>rjournitz574</dc:creator>
		<pubDate>Thu, 27 Apr 2006 17:26:18 +0000</pubDate>
		<guid isPermaLink="false">#comment-39002</guid>
		<description>Hi:

I am not sure if this will get all of what you need but you could try to do a DNS lookup from the command line for example 

nslookup myspace.com

returned 4 address spaces as follows

63.208.226.43, 63.208.226.40, 63.208.226.41, 63.208.226.42.

You could pipe the return information into a log file that you can then parse for whatever use you may need.

Let us know if this works for you.

RWJ</description>
		<content:encoded><![CDATA[<p>Hi:</p>
<p>I am not sure if this will get all of what you need but you could try to do a DNS lookup from the command line for example </p>
<p>nslookup&nbsp;&lt;a href="http://myspace.com" title="http://myspace. " target="_blank"&gt;myspace.com&lt;/a&gt;</p>
<p>returned 4 address spaces as follows</p>
<p>63.208.226.43, 63.208.226.40, 63.208.226.41, 63.208.226.42.</p>
<p>You could pipe the return information into a log file that you can then parse for whatever use you may need.</p>
<p>Let us know if this works for you.</p>
<p>RWJ</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: astronomer</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-find-the-range-of-ips-belonging-to-a-domain/#comment-39003</link>
		<dc:creator>astronomer</dc:creator>
		<pubDate>Thu, 27 Apr 2006 17:00:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-39003</guid>
		<description>I did it before. I was able to discover that a certain domain was linked to two independant class C nets and a group of four contiguous class Cs. 
The really irritating thing is I don't remember where I went to get this information.
rt</description>
		<content:encoded><![CDATA[<p>I did it before. I was able to discover that a certain domain was linked to two independant class C nets and a group of four contiguous class Cs.<br />
The really irritating thing is I don&#8217;t remember where I went to get this information.<br />
rt</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- dynamic -->
