 




<?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>IT Answers &#187; IT Knowledge Exchange</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/it-knowledge-exchange/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 21:33:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Become Admin</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/become-admin/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/become-admin/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 01:03:54 +0000</pubDate>
		<dc:creator>jinteik</dc:creator>
				<category><![CDATA[IT Knowledge Exchange]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/become-admin/</guid>
		<description><![CDATA[New Discussion Post by ekardris]]></description>
				<content:encoded><![CDATA[New Discussion Post by ekardris]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/become-admin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Example Contest Script: iptables Helper</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/example-contest-script-iptables-helper/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/example-contest-script-iptables-helper/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 14:09:17 +0000</pubDate>
		<dc:creator>ITKE</dc:creator>
				<category><![CDATA[Contests]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[IT Knowledge Exchange]]></category>
		<category><![CDATA[IT Scripts]]></category>
		<category><![CDATA[Nintendo 3DS]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Answer by]]></description>
				<content:encoded><![CDATA[New Answer by ]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/example-contest-script-iptables-helper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example Contest Script: Port Checker</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/port-checker-script/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/port-checker-script/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 14:04:54 +0000</pubDate>
		<dc:creator>ITKE</dc:creator>
				<category><![CDATA[Contests]]></category>
		<category><![CDATA[IT Knowledge Exchange]]></category>
		<category><![CDATA[IT Scripts]]></category>
		<category><![CDATA[Nintendo 3DS]]></category>
		<category><![CDATA[Port Checker]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This IT script was submitted by Eric Hansen as an example for IT Knowledge Exchange&#8217;s new contest: Is Your Script 3-Dimensional? To submit your own script, create a new post, and use the CODE button on the far right of the text editor menu. Be sure to tag it IT Scripts. Entries not tagged IT [...]]]></description>
				<content:encoded><![CDATA[<p>This IT script was submitted by <a target="_blank" href="../../security-admin/">Eric Hansen</a> as an example for IT Knowledge Exchange&#8217;s new contest: <a target="_blank" href="../../itke-community-blog/it-knowledge-exchanges-newest-contest/">Is Your Script 3-Dimensional</a>? To submit your own script, <a target="_blank">create a new post</a>, and use the CODE button on the far right of the text editor menu. Be sure to tag it <a target="_blank" href="../tag/IT-scripts/">IT Scripts</a>. Entries not tagged IT Scripts will not be considered. </p>
<p>Be sure to comment on <a target="_blank" href="../tag/IT-scripts/">other entries</a>; your comment could <a target="_blank" href="../../itke-community-blog/it-knowledge-exchanges-newest-contest/">win you a Nintendo 3DS</a>!  </p>
<p>Name: Port Checker<br />
Language: Bash<br />
Purpose: Check to see if a port is available based on either the port # or program name passed.<br />
Notes: Requires root privileges due to &#8220;p&#8221; switch being used in netstat</p>
<p>[/pre]</p>
<pre>
 
 #!/bin/bash
 
 # Script is used to determine if a port is used.
 # Usage: portcheck 
 # Executes netstat -ntlup | grep  to do checking.
 # Returned text is stored in a variable.  If variable is empty,
 # port is not in used.  Otherwise, port is being used.
 
 # Get the username of the person running script
 USER=`id -un`
 
 # Root is required to run netstat -ntlup
 if [ "$USER" != "root" ]; then
 	echo "Root privileges required."
 else
 	NET=`netstat -ntlup | grep $1`
 
 	if [ -z "$NET" ]; then
 		echo "Port is free"
 	else
 		echo $NET
 	fi
 fi[/port][/port][/pre]
[/pre]</pre>
<p>[/pre]</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/port-checker-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I cancel a subscription?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/subscription-cancelled/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/subscription-cancelled/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 18:14:37 +0000</pubDate>
		<dc:creator>Mygrams</dc:creator>
				<category><![CDATA[IT Knowledge Exchange]]></category>
		<category><![CDATA[IT Knowledge Questions]]></category>
		<category><![CDATA[ITKE]]></category>
		<category><![CDATA[ITKE Community]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How can I get a subscription cancalled?]]></description>
				<content:encoded><![CDATA[<p>How can I get a subscription cancalled?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/subscription-cancelled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unsubscribing from IT Knowledge Exchange</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unsubscribe-6/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/unsubscribe-6/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 14:43:41 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[IT Knowledge Exchange]]></category>
		<category><![CDATA[IT Knowledge Exchange User Interface]]></category>
		<category><![CDATA[IT Knowledge Questions]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[how in the heck does one unsubscribe from this site? I&#8217;ve spent 30 minutes trying to figure it out with no success.]]></description>
				<content:encoded><![CDATA[<p>how in the heck does one unsubscribe from this site? I&#8217;ve spent 30 minutes trying to figure it out with no success.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/unsubscribe-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IT Knowledge Exchange. Account Update Screen error</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/it-knowledge-exchange-account-update-screen-error/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/it-knowledge-exchange-account-update-screen-error/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 15:59:15 +0000</pubDate>
		<dc:creator>Pwcky</dc:creator>
				<category><![CDATA[IT Knowledge Exchange]]></category>
		<category><![CDATA[IT Knowledge Exchange User Interface]]></category>
		<category><![CDATA[ITKE]]></category>
		<category><![CDATA[ITKE Community]]></category>
		<category><![CDATA[ITKE Feedback]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;m trying to update my Account on the Account Update Screen (http://itknowledgeexchange.techtarget.com/settings/account/) but I cannot save any updates.  The edits say the Handle must be at least one character, however there is no editable Handle field.  I cannot enter at least one character if there is no where to put it! ]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m trying to update my Account on the Account Update Screen (<a href="http://itknowledgeexchange.techtarget.com/settings/account/">http://itknowledgeexchange.techtarget.com/settings/account/</a>) but I cannot save any updates.  The edits say the Handle must be at least one character, however there is no editable Handle field.  I cannot enter at least one character if there is no where to put it! </p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/it-knowledge-exchange-account-update-screen-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Point System and Rankings</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/new-point-system-and-rankings/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/new-point-system-and-rankings/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 21:25:29 +0000</pubDate>
		<dc:creator>CharlieBrowne</dc:creator>
				<category><![CDATA[IT Knowledge Exchange]]></category>
		<category><![CDATA[ITKE]]></category>
		<category><![CDATA[ITKE Community]]></category>
		<category><![CDATA[ITKE Feedback]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I do like the new point system but parts of it are confusing.[o:p][/o:p] When you display ranking by topic it is confusing because the columns for questions asked, answered and knowledge points is a total value not an indication of amounts for that particular topic. Thus someone does not have any idea the true topic [...]]]></description>
				<content:encoded><![CDATA[<p>I do like the new point system but parts of it are confusing.[o:p][/o:p]<br/><br/> When you display ranking by topic it is confusing because the columns for questions asked, answered and knowledge points is a total value not an indication of amounts for that particular topic. Thus someone does not have any idea the true topic level of the members. [o:p][/o:p]<br/><br/> It would be nice if the Top 50 Member Rankings page only had the totals for that topic.[o:p][/o:p]<br/><br/> Then on the individual profile page it would be nice to include the knowledge points for each topic on the line, Also include topics and points for all areas including those where the member has not yet reached Nerd level. This then gives people a better overall view of the members involvement and expertise</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/new-point-system-and-rankings/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IT Knowledge Exchange website change</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/itknowledgeexchange-website/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/itknowledgeexchange-website/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 03:22:46 +0000</pubDate>
		<dc:creator>jinteik</dc:creator>
				<category><![CDATA[IT Knowledge Exchange]]></category>
		<category><![CDATA[IT Knowledge Exchange User Interface]]></category>
		<category><![CDATA[ITKE]]></category>
		<category><![CDATA[ITKE Community]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Did the website just change? looks different now]]></description>
				<content:encoded><![CDATA[<p>Did the website just change? looks different now</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/itknowledgeexchange-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Network Interop 2010 Coverage</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/network-interop-2010-coverage/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/network-interop-2010-coverage/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 14:09:02 +0000</pubDate>
		<dc:creator>EmNichs</dc:creator>
				<category><![CDATA[Interop Las Vegas 2010]]></category>
		<category><![CDATA[IT Knowledge Exchange]]></category>
		<category><![CDATA[ITKE Community]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Question Edited by Serena3]]></description>
				<content:encoded><![CDATA[Question Edited by Serena3]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/network-interop-2010-coverage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/16 queries in 0.024 seconds using memcached
Object Caching 861/950 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 06:51:19 -->