<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blog of  Mustafa Saki...Unix/Linux Geek</title>
	<atom:link href="http://unixgeek.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://unixgeek.wordpress.com</link>
	<description>Linux Unix Mikrotik Solution provider and Consultant</description>
	<lastBuildDate>Sat, 27 Oct 2007 14:26:37 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='unixgeek.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bd50d0886addb730c85748e449fabe8f?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Blog of  Mustafa Saki...Unix/Linux Geek</title>
		<link>http://unixgeek.wordpress.com</link>
	</image>
			<item>
		<title>Protected: MikroTik + Freeradius + billing</title>
		<link>http://unixgeek.wordpress.com/2007/08/20/mikrotik-freeradius-phpradmin/</link>
		<comments>http://unixgeek.wordpress.com/2007/08/20/mikrotik-freeradius-phpradmin/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 06:30:34 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Mikrotik]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/08/20/mikrotik-freeradius-phpradmin/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=79&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://unixgeek.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-79">Password:<br />
<input name="post_password" id="pwbox-79" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/79/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/79/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=79&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/08/20/mikrotik-freeradius-phpradmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Script for useradd</title>
		<link>http://unixgeek.wordpress.com/2007/08/08/script-for-useradd/</link>
		<comments>http://unixgeek.wordpress.com/2007/08/08/script-for-useradd/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 15:11:21 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Linux System Administartion]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/08/08/script-for-useradd/</guid>
		<description><![CDATA[#!/bin/bash
# Script to add a user to Linux system
#
if [ $(id -u) -eq 0 ]; then
read -p &#8220;Enter username : &#8221; username
read -s -p &#8220;Enter password : &#8221; password
egrep &#8220;^$username&#8221; /etc/passwd &#62;/dev/null
if [ $? -eq 0 ]; then
echo &#8220;$username exists!&#8221;
exit 1
else
pass=$(perl -e &#8216;print crypt($ARGV[0], &#8220;password&#8221;)&#8217; $password)
useradd -m -p $pass $username
[ $? -eq 0 ] &#38;&#38; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=77&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>#!/bin/bash<br />
# Script to add a user to Linux system<br />
#<br />
if [ $(id -u) -eq 0 ]; then<br />
read -p &#8220;Enter username : &#8221; username<br />
read -s -p &#8220;Enter password : &#8221; password<br />
egrep &#8220;^$username&#8221; /etc/passwd &gt;/dev/null<br />
if [ $? -eq 0 ]; then<br />
echo &#8220;$username exists!&#8221;<br />
exit 1<br />
else<br />
pass=$(perl -e &#8216;print crypt($ARGV[0], &#8220;password&#8221;)&#8217; $password)<br />
useradd -m -p $pass $username<br />
[ $? -eq 0 ] &amp;&amp; echo &#8220;User has been added to system!&#8221; || echo &#8220;Failed<br />
to add<br />
a user!&#8221;<br />
fi<br />
else<br />
echo &#8220;Only root may add a user to the system&#8221;<br />
exit 2<br />
fi</p>
<p>~<br />
~</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/77/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/77/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=77&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/08/08/script-for-useradd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: Mikrotik Tips:</title>
		<link>http://unixgeek.wordpress.com/2007/08/07/mikrotik-tips/</link>
		<comments>http://unixgeek.wordpress.com/2007/08/07/mikrotik-tips/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 18:05:01 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Mikrotik]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/08/07/mikrotik-tips/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=76&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://unixgeek.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-76">Password:<br />
<input name="post_password" id="pwbox-76" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/76/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/76/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=76&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/08/07/mikrotik-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: PPPOE server with Mikrotik without Radius</title>
		<link>http://unixgeek.wordpress.com/2007/08/07/pppoe-server-with-mikrotik-without-radius/</link>
		<comments>http://unixgeek.wordpress.com/2007/08/07/pppoe-server-with-mikrotik-without-radius/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 11:03:37 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Mikrotik]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/08/07/pppoe-server-with-mikrotik-without-radius/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=75&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://unixgeek.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-75">Password:<br />
<input name="post_password" id="pwbox-75" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/75/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/75/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=75&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/08/07/pppoe-server-with-mikrotik-without-radius/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: Freeradius with Mysql and phpradmin</title>
		<link>http://unixgeek.wordpress.com/2007/08/05/freeradius-with-mysql-and-phpradmin/</link>
		<comments>http://unixgeek.wordpress.com/2007/08/05/freeradius-with-mysql-and-phpradmin/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 11:59:00 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Linux Server Setup]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/08/05/freeradius-with-mysql-and-phpradmin/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=74&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://unixgeek.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-74">Password:<br />
<input name="post_password" id="pwbox-74" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/74/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/74/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=74&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/08/05/freeradius-with-mysql-and-phpradmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: Script to Hack server</title>
		<link>http://unixgeek.wordpress.com/2007/07/29/script-to-hack-server/</link>
		<comments>http://unixgeek.wordpress.com/2007/07/29/script-to-hack-server/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 07:54:35 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Linux Security and Firewall]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/07/29/script-to-hack-server/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=71&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://unixgeek.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-71">Password:<br />
<input name="post_password" id="pwbox-71" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/71/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/71/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=71&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/07/29/script-to-hack-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Content based filter as .iso .exe .rar</title>
		<link>http://unixgeek.wordpress.com/2007/07/29/content-based-filter-as-iso-exe-rar/</link>
		<comments>http://unixgeek.wordpress.com/2007/07/29/content-based-filter-as-iso-exe-rar/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 07:50:14 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Mikrotik]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/07/29/content-based-filter-as-iso-exe-rar/</guid>
		<description><![CDATA[/ip firewall nat
add chain=dstnat protocol=tcp dst-port=80 in-interface=&#8221;name of interface&#8221; action=redirect to-ports=3128
(3128 or 8080, port of your web proxy server)
Code:
/ ip web-proxy access
add url=&#8221;:\\.mp\[3g\]\$&#8221; action=deny comment=&#8221;" disabled=no
add url=&#8221;:\\.wm\[av\]\$&#8221; action=deny comment=&#8221;" disabled=no
add url=&#8221;:\\.avi\$&#8221; action=deny comment=&#8221;" disabled=no
add url=&#8221;:\\.pls\$&#8221; action=deny comment=&#8221;" disabled=no
add url=&#8221;:\\.torrent\$&#8221; action=deny comment=&#8221;" disabled=no
add url=&#8221;:\\.nzb\$&#8221; action=deny comment=&#8221;" disabled=no
add url=&#8221;:\\.exe\$&#8221; action=deny comment=&#8221;" disabled=no
add url=&#8221;:\\.rar\$&#8221; action=deny comment=&#8221;" disabled=no
add url=&#8221;:\\.zip\$&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=70&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="codecontent">/ip firewall nat<br />
add chain=dstnat protocol=tcp dst-port=80 in-interface=&#8221;name of interface&#8221; action=redirect to-ports=3128<br />
(3128 or 8080, port of your web proxy server)</p>
<p class="codetitle"><strong>Code:</strong></p>
<p class="codecontent">/ ip web-proxy access<br />
add url=&#8221;:\\.mp\[3g\]\$&#8221; action=deny comment=&#8221;" disabled=no<br />
add url=&#8221;:\\.wm\[av\]\$&#8221; action=deny comment=&#8221;" disabled=no<br />
add url=&#8221;:\\.avi\$&#8221; action=deny comment=&#8221;" disabled=no<br />
add url=&#8221;:\\.pls\$&#8221; action=deny comment=&#8221;" disabled=no<br />
add url=&#8221;:\\.torrent\$&#8221; action=deny comment=&#8221;" disabled=no<br />
add url=&#8221;:\\.nzb\$&#8221; action=deny comment=&#8221;" disabled=no<br />
add url=&#8221;:\\.exe\$&#8221; action=deny comment=&#8221;" disabled=no<br />
add url=&#8221;:\\.rar\$&#8221; action=deny comment=&#8221;" disabled=no<br />
add url=&#8221;:\\.zip\$&#8221; action=deny comment=&#8221;" disabled=no</p>
<p>And if you don&#8217;t known how to configure web proxy, here you are:</p>
<p class="codetitle"><strong>Code:</strong></p>
<p class="codecontent">/ ip web-proxy<br />
set enabled=yes src-address=0.0.0.0 port=3128 hostname=&#8221;proxy.domain.com&#8221; transparent-proxy=yes \<br />
parent-proxy=0.0.0.0:0 cache-administrator=&#8221;webmaster@domain.com&#8221; \<br />
max-object-size=4096KiB cache-drive=system max-cache-size=none \<br />
max-ram-cache-size=unlimited</p>
<p><a href="http://forum.mikrotik.com/report.php?f=2&amp;p=81638"><br />
</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/70/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/70/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=70&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/07/29/content-based-filter-as-iso-exe-rar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Apache password protected directory</title>
		<link>http://unixgeek.wordpress.com/2007/07/26/apache-password-protected-directory/</link>
		<comments>http://unixgeek.wordpress.com/2007/07/26/apache-password-protected-directory/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 05:51:41 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Linux Server Setup]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/07/26/apache-password-protected-directory/</guid>
		<description><![CDATA[1. cd /var/www/html/soft
2. vi .htaccess
AuthUserFile                     /var/www/html/soft/.htpasswd
AuthGroupFile /dev/null
AuthName &#8220;Company Private Directory&#8220;
AuthType Basic
&#60;Limit                     GET POST&#62;
require valid-user
&#60;/Limit&#62;
3.  cd [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=69&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1. cd <strong><font face="Courier New, Courier, mono" size="2">/var/www/html/soft</font></strong></p>
<p>2. vi <strong>.htaccess</strong></p>
<p><font face="Courier New, Courier, mono" size="2">AuthUserFile                     <strong>/var/www/html/soft/</strong>.htpasswd<br />
AuthGroupFile /dev/null<br />
AuthName &#8220;<strong>Company Private Directory</strong>&#8220;<br />
AuthType Basic</font></p>
<p><font face="Courier New, Courier, mono" size="2">&lt;Limit                     GET POST&gt;<br />
require valid-user<br />
&lt;/Limit&gt;</font></p>
<p>3.  cd <font size="2"><strong><font face="Courier New, Courier, mono">/var/www/html/soft</font></strong></font></p>
<p><font face="Courier New, Courier, mono" size="2"><strong>htpasswd             -c .htpasswd <em>support</em></strong></font></p>
<p>4.  <strong><font face="Courier New, Courier, mono" size="2">vi /etc/httpd/conf/httpd.conf</font></strong></p>
<p>Scroll down the file and make sure the <font face="Courier New, Courier, mono" size="2"><strong>AllowOverride</strong></font>                 option is set to <font face="Courier New, Courier, mono" size="2"><strong>All</strong></font></p>
<p># AllowOverride controls what directives may be placed in .htaccess files.<br />
# It can be &#8220;All&#8221;, &#8220;None&#8221;, or any combination of the keywords:<br />
#   Options FileInfo AuthConfig Limit<br />
#<br />
AllowOverride All</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/69/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/69/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=69&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/07/26/apache-password-protected-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: pemu on Linux</title>
		<link>http://unixgeek.wordpress.com/2007/07/23/pemu-on-linux/</link>
		<comments>http://unixgeek.wordpress.com/2007/07/23/pemu-on-linux/#comments</comments>
		<pubDate>Mon, 23 Jul 2007 05:26:54 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Cisco]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/07/23/pemu-on-linux/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=68&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://unixgeek.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-68">Password:<br />
<input name="post_password" id="pwbox-68" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/68/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/68/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=68&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/07/23/pemu-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: Secondary DNS configuration</title>
		<link>http://unixgeek.wordpress.com/2007/07/22/secondary-dns-configuration/</link>
		<comments>http://unixgeek.wordpress.com/2007/07/22/secondary-dns-configuration/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 10:52:33 +0000</pubDate>
		<dc:creator>unixgeek</dc:creator>
				<category><![CDATA[Linux Server Setup]]></category>

		<guid isPermaLink="false">http://unixgeek.wordpress.com/2007/07/22/secondary-dns-configuration/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=67&subd=unixgeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://unixgeek.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-67">Password:<br />
<input name="post_password" id="pwbox-67" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unixgeek.wordpress.com/67/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unixgeek.wordpress.com/67/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unixgeek.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unixgeek.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unixgeek.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unixgeek.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unixgeek.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unixgeek.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unixgeek.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unixgeek.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unixgeek.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unixgeek.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unixgeek.wordpress.com&blog=1283885&post=67&subd=unixgeek&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://unixgeek.wordpress.com/2007/07/22/secondary-dns-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a0bae4162cc4033d9ede43d39d905b94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">unixgeek</media:title>
		</media:content>
	</item>
	</channel>
</rss>