<?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>modern-geek.com</title>
	<atom:link href="http://modern-geek.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://modern-geek.com</link>
	<description>networking, linux, misc</description>
	<lastBuildDate>Sat, 25 Feb 2012 14:03:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Open ssh and telnet from firefox</title>
		<link>http://modern-geek.com/2012/02/24/open-ssh-and-telnet-from-firefox/</link>
		<comments>http://modern-geek.com/2012/02/24/open-ssh-and-telnet-from-firefox/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 11:50:24 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=520</guid>
		<description><![CDATA[How to open telnet/ssh sessions from firefox with putty? Simply add following script as application under Edit &#8211; Preferences &#8211; Applications. #!/usr/bin/perl # parse URL ($protocol,$host) = split /:\/\//, $ARGV[0]; ($host,$port) = split /:/, $host; # validate input if ( $protocol !~ /^(telnet&#124;ssh)$/ &#124;&#124; $host !~ /^[a-zA-Z0-9][a-zA-Z0-9.-]*$/ &#124;&#124; $port !~ /(^[a-zA-Z0-9][a-zA-Z0-9_-]*$&#124;^$)/ ) { warn "Invalid [...]]]></description>
			<content:encoded><![CDATA[<p>How to open telnet/ssh sessions from firefox with putty? Simply add following script as application under Edit &#8211; Preferences &#8211; Applications.</p>
<pre style="padding-left: 30px;"><strong>#!/usr/bin/perl</strong>
<strong># parse URL</strong>
<strong> ($protocol,$host) = split /:\/\//, $ARGV[0];</strong>
<strong> ($host,$port) = split /:/, $host;
</strong><strong># validate input
</strong><strong> if ( $protocol !~ /^(telnet|ssh)$/ ||
</strong><strong> $host !~ /^[a-zA-Z0-9][a-zA-Z0-9.-]*$/ ||
</strong><strong> $port !~ /(^[a-zA-Z0-9][a-zA-Z0-9_-]*$|^$)/ ) {
</strong><strong> warn "Invalid URL";
</strong><strong> exit 1;
</strong><strong> }
</strong><strong># if SSH, add -p argument
</strong><strong> if ( $protocol eq "ssh" &amp;&amp; $port != '' ) { $port = "-p $port" ; }
</strong><strong># call terminal emulator
</strong><strong> exec("putty -$protocol $host $port");
</strong><strong> exit;
</strong></pre>
<p>Script taken and modified from <a href="http://www.tolaris.com/2010/08/23/enabling-telnet-and-ssh-urls-in-firefox-for-linux/" target="_blank">tolaris</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2012/02/24/open-ssh-and-telnet-from-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netflow export on Cisco ASA</title>
		<link>http://modern-geek.com/2012/02/17/netflow-export-on-cisco-asa/</link>
		<comments>http://modern-geek.com/2012/02/17/netflow-export-on-cisco-asa/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 14:57:21 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=518</guid>
		<description><![CDATA[nice howto with screenshots at cisco support forums]]></description>
			<content:encoded><![CDATA[<p>nice howto with screenshots at <a href="https://supportforums.cisco.com/docs/DOC-6114" target="_blank">cisco support forums</a></p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2012/02/17/netflow-export-on-cisco-asa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rogue DHCP in your network</title>
		<link>http://modern-geek.com/2012/02/17/rogue-dhcp-in-your-network/</link>
		<comments>http://modern-geek.com/2012/02/17/rogue-dhcp-in-your-network/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 09:09:29 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=515</guid>
		<description><![CDATA[atpitude install dhcp_probe become root! dhcp_probe -f -o /home/user/dhcp.pcap eth0 or search in vlans! dhcp_probe -f -o /home/user/dhcp.pcap eth0 -Q &#60;vlan-id&#62;]]></description>
			<content:encoded><![CDATA[<p style="padding-left: 30px;">atpitude install dhcp_probe<br />
become root!<br />
dhcp_probe -f -o /home/user/dhcp.pcap eth0</p>
<p style="padding-left: 30px;">or search in vlans!</p>
<p style="padding-left: 30px;">dhcp_probe -f -o /home/user/dhcp.pcap eth0 -Q &lt;vlan-id&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2012/02/17/rogue-dhcp-in-your-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I keep forgetting</title>
		<link>http://modern-geek.com/2011/10/24/i-keep-forgetting/</link>
		<comments>http://modern-geek.com/2011/10/24/i-keep-forgetting/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 12:40:40 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=511</guid>
		<description><![CDATA[yum whatprovides &#60;name-of-the-file&#62;  ]]></description>
			<content:encoded><![CDATA[<p>yum whatprovides &lt;name-of-the-file&gt;   <img src='http://modern-geek.com/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2011/10/24/i-keep-forgetting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ipad impression</title>
		<link>http://modern-geek.com/2011/08/12/ipad-impression/</link>
		<comments>http://modern-geek.com/2011/08/12/ipad-impression/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 14:10:22 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=509</guid>
		<description><![CDATA[pros: - design - screen - fast - wifi cons: - no flash - no google documents full options - price - no bluetooth]]></description>
			<content:encoded><![CDATA[<p>pros:<br />
- design<br />
- screen<br />
- fast<br />
- wifi</p>
<p>cons:<br />
- no flash<br />
- no google documents full options<br />
- price<br />
- no bluetooth</p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2011/08/12/ipad-impression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu natty 11.04 + iphone 3GS + tethering</title>
		<link>http://modern-geek.com/2011/08/12/ubuntu-natty-11-04-iphone-3gs-tethering/</link>
		<comments>http://modern-geek.com/2011/08/12/ubuntu-natty-11-04-iphone-3gs-tethering/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 13:03:38 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=507</guid>
		<description><![CDATA[works on maverick but not on natty? sound familiar? ubuntu screwed something up, but the solution is quite simple: sudo add-apt-repository ppa:pmcenery/ppa sudo aptitude update &#38;&#38; sudo aptitude install  gvfs ipheth-dkms ipheth-utils works like a charm]]></description>
			<content:encoded><![CDATA[<p>works on maverick but not on natty? sound familiar? ubuntu screwed something up, but the solution is quite simple:</p>
<p style="padding-left: 30px;">sudo add-apt-repository ppa:pmcenery/ppa<br />
sudo aptitude update &amp;&amp; sudo aptitude install  gvfs ipheth-dkms ipheth-utils</p>
<p>works like a charm <img src='http://modern-geek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2011/08/12/ubuntu-natty-11-04-iphone-3gs-tethering/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iphone + Virtualbox + linux</title>
		<link>http://modern-geek.com/2011/08/12/iphone-virtualbox-linux/</link>
		<comments>http://modern-geek.com/2011/08/12/iphone-virtualbox-linux/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 10:25:22 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=504</guid>
		<description><![CDATA[finally I managed to update my iphone via virtualbox! itunes version: 10.4.0.80 virtualbox version:  4.0.6-71344]]></description>
			<content:encoded><![CDATA[<p>finally I managed to update my iphone via virtualbox!<br />
itunes version: 10.4.0.80<br />
virtualbox version:  4.0.6-71344</p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2011/08/12/iphone-virtualbox-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make your BGP configuration in few clicks</title>
		<link>http://modern-geek.com/2011/05/23/make-your-bgp-configuration-in-few-clicks/</link>
		<comments>http://modern-geek.com/2011/05/23/make-your-bgp-configuration-in-few-clicks/#comments</comments>
		<pubDate>Mon, 23 May 2011 07:58:54 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=499</guid>
		<description><![CDATA[nice web form @ netconfigs.com &#160; also, showipbgp has configs ready to test them with gns3.]]></description>
			<content:encoded><![CDATA[<p>nice web form @ <a href="http://www.netconfigs.com/tools/bgp.htm">netconfigs.com</a></p>
<p>&nbsp;</p>
<p>also, <a title="showipbgp" href="http://showipbgp.com/bgp-configurations/cisco.html">showipbgp</a> has configs ready to test them with gns3.</p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2011/05/23/make-your-bgp-configuration-in-few-clicks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco PIX/ASA -&gt; VPN -&gt; 1 IP, 1 username, several connections</title>
		<link>http://modern-geek.com/2011/04/29/cisco-pixasa-vpn-1-ip-1-username-several-connections/</link>
		<comments>http://modern-geek.com/2011/04/29/cisco-pixasa-vpn-1-ip-1-username-several-connections/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 12:29:01 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=496</guid>
		<description><![CDATA[be sure to have &#8220;nat traversal&#8221; turned on!]]></description>
			<content:encoded><![CDATA[<p>be sure to have &#8220;nat traversal&#8221; turned on!</p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2011/04/29/cisco-pixasa-vpn-1-ip-1-username-several-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux packet managers commands</title>
		<link>http://modern-geek.com/2011/04/28/linux-packet-managers-commands/</link>
		<comments>http://modern-geek.com/2011/04/28/linux-packet-managers-commands/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 08:19:02 +0000</pubDate>
		<dc:creator>tini</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://modern-geek.com/?p=494</guid>
		<description><![CDATA[nicely put in one table &#8211; see equivalent commands for rpm, dpkg, emerge and pacman.]]></description>
			<content:encoded><![CDATA[<p>nicely put in <a href="http://wiki.openvz.org/Package_managers" target="_blank">one table</a> &#8211; see equivalent commands for rpm, dpkg, emerge and pacman.</p>
]]></content:encoded>
			<wfw:commentRss>http://modern-geek.com/2011/04/28/linux-packet-managers-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

