<?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>jfrank &#187; Uncategorized</title>
	<atom:link href="http://www.joshuafrankamp.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joshuafrankamp.com/blog</link>
	<description>technology and some random stuff</description>
	<lastBuildDate>Fri, 12 Feb 2010 21:11:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>how to count connections on windows command line</title>
		<link>http://www.joshuafrankamp.com/blog/how-to-count-connections-on-windows-command-line/</link>
		<comments>http://www.joshuafrankamp.com/blog/how-to-count-connections-on-windows-command-line/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 23:20:26 +0000</pubDate>
		<dc:creator>jfrank</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.joshuafrankamp.com/blog/?p=48</guid>
		<description><![CDATA[At work I am troubleshooting apache/tomcat/coldfusion/magnolia stack on windows. It is the most fun thing you can imagine. I was messing with apache&#8217;s configuration on mod_proxy_balancer and I needed to a way to test if my settings were having the desired effect.
I ran into a *nix shell script that did this, but not one for [...]]]></description>
			<content:encoded><![CDATA[<p>At work I am troubleshooting apache/tomcat/coldfusion/magnolia stack on windows. It is the most fun thing you can imagine. I was messing with apache&#8217;s configuration on mod_proxy_balancer and I needed to a way to test if my settings were having the desired effect.</p>
<p>I ran into a *nix shell script that did this, but not one for windows. This is super simple way to count connections against your localhost&#8217;s port 80, web server. It shows established and waiting connections.</p>
<p>Save this as a  .bat file and it will output them. It could be optimized in a number of ways, but who cares!</p>
<p><code><br />
echo port 80:<br />
netstat -a -n | find "TCP    127.0.0.1:80 "  | find /C "ESTAB"<br />
netstat -a -n | find "TCP    127.0.0.1:80 "  | find /C "TIME_WAIT"<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joshuafrankamp.com/blog/how-to-count-connections-on-windows-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
