<?xml version="1.0" encoding="UTF-8"?>

<rss version='2.0' 
     xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
     xmlns:doap="http://usefulinc.com/ns/doap#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

    <channel>
        <!-- This XML Feed shows details for the page manager 
             and everything recently tagged manager -->
        <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/
          </creativeCommons:license>
        <title>manager on SWiK</title>
        <doap:name>manager</doap:name>
        <doap:description></doap:description>
        <description></description> 
	  <!-- see doap:description for full description -->
        <link>http://swik.net/manager</link>
        <doap:homepage></doap:homepage>
        
        <pubDate></pubDate>
        <lastBuildDate></lastBuildDate>
            
        <item>
            <title>Redmine - Overview - Redmine</title>
            <link>http://swik.net/Subversion/del.icio.us%2Fpopular%2FSubversion/Redmine+-+Overview+-+Redmine/cb8jx</link>
            <description></description>
            
            <pubDate>Mon, 11 Aug 2008 16:04:11 -0700</pubDate>
        </item>
            
        <item>
            <title>Eclipse EventManager</title>
            <link>http://swik.net/Eclipse/del.icio.us%2Ftag%2Feclipse/Eclipse+EventManager/cgz3m</link>
            <description></description>
            
            <pubDate>Tue, 07 Oct 2008 01:48:08 -0700</pubDate>
        </item>
            
        <item>
            <title>mozdev.org - sessionmanager: documentation</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/mozdev.org+-+sessionmanager%3A+documentation/cgypl</link>
            <description></description>
            
            <pubDate>Mon, 06 Oct 2008 15:48:12 -0700</pubDate>
        </item>
            
        <item>
            <title>FlashGot - Best Firefox Download Manager Integration - Thanks for upgrading FlashGot! - InformAction</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/FlashGot+-+Best+Firefox+Download+Manager+Integration+-+Thanks+for+upgrading+FlashGot%21+-+InformAction/cgt5t</link>
            <description></description>
            
            <pubDate>Sun, 05 Oct 2008 10:46:55 -0700</pubDate>
        </item>
            
        <item>
            <title>Razuna - open source Digital Asset Management (DAM) / Media Asset Management (MAM) with integrated Web Content Management (CMS)</title>
            <link>http://swik.net/open-source/del.icio.us+tag%2Fopen-source/Razuna+-+open+source+Digital+Asset+Management+%28DAM%29+%2F+Media+Asset+Management+%28MAM%29+with+integrated+Web+Content+Management+%28CMS%29/cgqy5</link>
            <description></description>
            
            <pubDate>Sat, 04 Oct 2008 06:08:26 -0700</pubDate>
        </item>
            
        <item>
            <title>DownThemAll! :: Componenti aggiuntivi per Firefox</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/DownThemAll%21+%3A%3A+Componenti+aggiuntivi+per+Firefox/cgpiv</link>
            <description>componente aggiuntivo per Firefox che fa il download manager</description>
            
            <pubDate>Fri, 03 Oct 2008 16:09:41 -0700</pubDate>
        </item>
            
        <item>
            <title>Quick Linux and Windows OpenVPN HOWTO and tutorial, including VPN routing</title>
            <link>http://swik.net/User:davidapnic/Quick+Linux+and+Windows+OpenVPN+HOWTO+and+tutorial%2C+including+VPN+routing</link>
            <description>&lt;p&gt;http://www.adamsinfo.com/quick-linux-and-windows-openvpn-howto-and-tutorial-including-vpn-routing/&lt;/p&gt;


	&lt;p&gt;OpenVPN is a popular Windows/Linux &lt;span class=&quot;caps&quot;&gt;VPN&lt;/span&gt; Server/Client pair. I think there’s a separate &lt;span class=&quot;caps&quot;&gt;GUI&lt;/span&gt; available for it if you’re so minded. This howto will cover command line usage only.&lt;/p&gt;


	&lt;p&gt;I’ll provide example configuration based on a Linux server and a Windows client, however the same applies pretty easily if you wanted to mix and match.&lt;/p&gt;


	&lt;p&gt;On debian, apt-get install openvpn. On any other linux distro, use your own package manager or alternatively download from source and compile.&lt;/p&gt;


	&lt;p&gt;I create my config /etc/openvpn/myvpn.conf and enter the following:&lt;/p&gt;


	&lt;p&gt;dev tun
proto udp
ifconfig 10.8.0.1 10.8.0.2
secret /etc/openvpn/static.key
comp-lzo
keepalive 10 60
daemon&lt;/p&gt;


	&lt;p&gt;In short, I’m specifying that we’ll use the ‘tun’ interface as opposed to ‘tap’, and that we’ll communicate over &lt;span class=&quot;caps&quot;&gt;UDP&lt;/span&gt;. Next I specify that this machine’s tun0 interface will have &lt;span class=&quot;caps&quot;&gt;IP 10&lt;/span&gt;.8.0.1 and the client will be given 10.8.0.2. My secret key is stored in /etc/openvpn/static.key which you can generate with openvpn –genkey –secret static.key. I’d like to use comp-lzo for compression and also specify a keepalive time to prevent problems on those networks that terminate idle connections. We’ll also have openvpn daemonize.
For the client:&lt;/p&gt;


	&lt;p&gt;remote XX.XXX.124.95 ;server IP address
dev tun
ifconfig 10.8.0.2 10.8.0.1
secret static.key
comp-lzo
keepalive 10 60&lt;/p&gt;


	&lt;p&gt;This configure is mostly identical to the server’s above.&lt;/p&gt;


	&lt;p&gt;Now copy the static.key that you generated on the server, to the client. Then just run ‘openvpn config.conf’ it’ll print the relevant debug messages and you’ll be there. At this point, you should be able to ping 10.8.0.1from your client and 10.8.0.2 from your server. If you can, all is good.&lt;/p&gt;


	&lt;p&gt;On your server, you’ll now need to allow routing so your client is able to route it’s traffic through the &lt;span class=&quot;caps&quot;&gt;VPN&lt;/span&gt;:&lt;/p&gt;


	&lt;p&gt;iptables -t nat -A &lt;span class=&quot;caps&quot;&gt;POSTROUTING&lt;/span&gt; -s 10.8.0.0/24 -o eth0 -j &lt;span class=&quot;caps&quot;&gt;MASQUERADE&lt;/span&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;FORWARD&lt;/span&gt; -i tun0 -s 10.8.0.0/24 -o eth0 -j &lt;span class=&quot;caps&quot;&gt;ACCEPT&lt;/span&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;FORWARD&lt;/span&gt; -i eth0 -o tun0 -m state –state &lt;span class=&quot;caps&quot;&gt;ESTABLISHED&lt;/span&gt;,RELATED -j &lt;span class=&quot;caps&quot;&gt;ACCEPT&lt;/span&gt;
echo 1 &amp;gt; /proc/sys/net/ipv4/ip_forward&lt;/p&gt;


	&lt;p&gt;…Or similar to suit your needs.&lt;/p&gt;


	&lt;p&gt;On your windows client, you’ll now need to change your default gateway:&lt;/p&gt;


	&lt;p&gt;Use route print and find out your current default gateway, then, assuming your current local default gateway is: 192.168.1.1 and server’s IP address is XX.XXX.124.95, issue the following commands:&lt;/p&gt;


	&lt;p&gt;route &lt;span class=&quot;caps&quot;&gt;DELETE 0&lt;/span&gt;.0.0.0
route &lt;span class=&quot;caps&quot;&gt;ADD XX&lt;/span&gt;.XXX.124.95 &lt;span class=&quot;caps&quot;&gt;MASK 255&lt;/span&gt;.255.255.255 192.168.1.1
route &lt;span class=&quot;caps&quot;&gt;ADD 0&lt;/span&gt;.0.0.0 &lt;span class=&quot;caps&quot;&gt;MASK 0&lt;/span&gt;.0.0.0 10.8.0.1&lt;/p&gt;


	&lt;p&gt;The first &lt;span class=&quot;caps&quot;&gt;ADD&lt;/span&gt; command is used to tell your client how to access the ‘new default gateway’. Without specifying your real default gateway, the client machine would have no idea how to reach your &lt;span class=&quot;caps&quot;&gt;VPN&lt;/span&gt; server. You can specify 10.8.0.1 as your default gateway, as it is now virtually on the same &lt;span class=&quot;caps&quot;&gt;LAN&lt;/span&gt; as your 10.8.0.2 adapter, but without the additional route to XX.XXX.124.95, your connection to the server would have to terminate and you’d lose your tun interface.&lt;/p&gt;


	&lt;p&gt;Now try and ping something &amp;#8211; it should be successful. If not, get onto the server and run tcpdump -n tun0. If the server is seeing your traffic but not forwarding it to the outside world, chances are your iptables and masquerading is set up incorrectly. If the server isn’t even seeing any traffic from you, then chances are your windows routing setup is incorrect.&lt;/p&gt;


	&lt;p&gt;Hope this was useful! Comments and feedback are welcome as always.&lt;/p&gt;
</description>
                        <category>linux</category>
            <category>apt-get</category>
            <category>udp</category>
            <category>interface</category>
            <category>Print</category>
            <category>tcpdump</category>
            <category>manager</category>
            <category>Debian</category>
            <category>Client</category>
            <category>routing</category>

            <pubDate>Fri, 03 Oct 2008 03:23:57 -0700</pubDate>
        </item>
            
        <item>
            <title>Project Manager Dexea</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Project+Manager+Dexea/cglaa</link>
            <description></description>
            
            <pubDate>Thu, 02 Oct 2008 13:57:01 -0700</pubDate>
        </item>
            
        <item>
            <title>Thunar Screenshots</title>
            <link>http://swik.net/Xfce/del.icio.us%2Ftag%2Fxfce/Thunar+Screenshots/cgk9p</link>
            <description></description>
            
            <pubDate>Thu, 02 Oct 2008 13:56:40 -0700</pubDate>
        </item>
            
        <item>
            <title>Gmail Manager :: Firefox Add-ons</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Gmail+Manager+%3A%3A+Firefox+Add-ons/cggdo</link>
            <description></description>
            
            <pubDate>Wed, 01 Oct 2008 10:25:58 -0700</pubDate>
        </item>
            
        <item>
            <title>Virtual Machine Manager: Screenshots</title>
            <link>http://swik.net/Xen/http%3A%2F%2Fdel.icio.us%2Frss%2Ftag%2Fxen/Virtual+Machine+Manager%3A+Screenshots/cgdor</link>
            <description></description>
            
            <pubDate>Tue, 30 Sep 2008 17:21:22 -0700</pubDate>
        </item>
            
        <item>
            <title>Hive Five: Five Best Download Managers</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Hive+Five%3A+Five+Best+Download+Managers/cgc4p</link>
            <description></description>
            
            <pubDate>Tue, 30 Sep 2008 14:16:26 -0700</pubDate>
        </item>
            
        <item>
            <title>Hive Five: Five Best Password Managers</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Hive+Five%3A+Five+Best+Password+Managers/cgc4n</link>
            <description></description>
            
            <pubDate>Tue, 30 Sep 2008 14:16:26 -0700</pubDate>
        </item>
            
        <item>
            <title>DownThemAll!</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/DownThemAll%21/cganh</link>
            <description></description>
            
            <pubDate>Tue, 30 Sep 2008 02:15:22 -0700</pubDate>
        </item>
            
        <item>
            <title>JDownloader</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/JDownloader/cf4sp</link>
            <description>JDownloader is open source, platform independent and written completely in Java. It simplifies downloading files from One-Click-Hosters like Rapidshare.com or Megaupload.com - not only for users with a premium account but also for users who don&amp;#039;t pay.</description>
            
            <pubDate>Sun, 28 Sep 2008 13:15:53 -0700</pubDate>
        </item>
            
        <item>
            <title>学会使用文献管理工具 - 考槃在涧</title>
            <link>http://swik.net/bibtex/del.icio.us%2Ftag%2Fbibtex/%E5%AD%A6%E4%BC%9A%E4%BD%BF%E7%94%A8%E6%96%87%E7%8C%AE%E7%AE%A1%E7%90%86%E5%B7%A5%E5%85%B7+-+%E8%80%83%E6%A7%83%E5%9C%A8%E6%B6%A7/cf3y7</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 06:15:45 -0700</pubDate>
        </item>
            
        <item>
            <title>Roboform Toolbar for Firefox :: Firefox Add-ons</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Roboform+Toolbar+for+Firefox+%3A%3A+Firefox+Add-ons/cf0s3</link>
            <description></description>
            
            <pubDate>Fri, 26 Sep 2008 23:14:16 -0700</pubDate>
        </item>
            
        <item>
            <title>Password Manager | Secure Login</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Password+Manager+%7C+Secure+Login/cf0bl</link>
            <description></description>
            
            <pubDate>Fri, 26 Sep 2008 18:14:42 -0700</pubDate>
        </item>
            
        <item>
            <title>phplist.com : Homepage : home</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/phplist.com+%3A+Homepage+%3A+home/cfz2v</link>
            <description></description>
            
            <pubDate>Fri, 26 Sep 2008 16:13:59 -0700</pubDate>
        </item>
            
        <item>
            <title>Maven Repository Manager Feature Matrix - Maven User - Codehaus</title>
            <link>http://swik.net/Maven/del.icio.us%2Ftag%2Fmaven/Maven+Repository+Manager+Feature+Matrix+-+Maven+User+-+Codehaus/cfun8</link>
            <description></description>
            
            <pubDate>Thu, 25 Sep 2008 08:17:38 -0700</pubDate>
        </item>
            
        <item>
            <title>ByOS Technologies - Home</title>
            <link>http://swik.net/Joomla/Del.icio.us+bookmarks+tagged+Joomla/ByOS+Technologies+-+Home/cfss9</link>
            <description>to specify that a piece of content may be assigned to a different &amp;quot;Access level&amp;quot;</description>
            
            <pubDate>Wed, 24 Sep 2008 21:10:38 -0700</pubDate>
        </item>
            
        <item>
            <title>Razuna - open source Digital Asset Management (DAM) / Media Asset Management (MAM) with integrated Web Content Management (CMS)</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Razuna+-+open+source+Digital+Asset+Management+%28DAM%29+%2F+Media+Asset+Management+%28MAM%29+with+integrated+Web+Content+Management+%28CMS%29/cfkdm</link>
            <description></description>
            
            <pubDate>Mon, 22 Sep 2008 20:09:41 -0700</pubDate>
        </item>
            
        <item>
            <title>Ion</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Ion/cfh2p</link>
            <description></description>
            
            <pubDate>Mon, 22 Sep 2008 06:59:35 -0700</pubDate>
        </item>
            
        <item>
            <title>Hibernate Entity Manager</title>
            <link>http://swik.net/JBoss/del.icio.us+tag%2Fjboss/Hibernate+Entity+Manager/cfge4</link>
            <description>Abstract

This book is a Hibernate Entity Manager user guide.</description>
            
            <pubDate>Sun, 21 Sep 2008 20:59:18 -0700</pubDate>
        </item>
            
        <item>
            <title>Hibernate Entity Manager</title>
            <link>http://swik.net/Hibernate/del.icio.us+tag%2Fhibernate/Hibernate+Entity+Manager/cfge0</link>
            <description>Abstract

This book is a Hibernate Entity Manager user guide.</description>
            
            <pubDate>Sun, 21 Sep 2008 20:59:16 -0700</pubDate>
        </item>
            
        <item>
            <title>All-in-One Sidebar has been installed! :: Sidebar Extension for Mozilla Firefox</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/All-in-One+Sidebar+has+been+installed%21+%3A%3A+Sidebar+Extension+for+Mozilla+Firefox/cfc1k</link>
            <description></description>
            
            <pubDate>Sat, 20 Sep 2008 13:59:03 -0700</pubDate>
        </item>
            
        <item>
            <title>i-FunBox</title>
            <link>http://swik.net/iphone/deli.cio.us%2Ftags%2Fiphone/i-FunBox/cfbxa</link>
            <description></description>
            
            <pubDate>Sat, 20 Sep 2008 03:58:51 -0700</pubDate>
        </item>
            
        <item>
            <title>XEmacs Window Manager</title>
            <link>http://swik.net/Emacs/del.icio.us+tag%2Femacs/XEmacs+Window+Manager/cfa97</link>
            <description></description>
            
            <pubDate>Fri, 19 Sep 2008 21:58:28 -0700</pubDate>
        </item>
            
        <item>
            <title>Main Page - Pyro Desktop</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Main+Page+-+Pyro+Desktop/cfa6s</link>
            <description></description>
            
            <pubDate>Fri, 19 Sep 2008 20:58:13 -0700</pubDate>
        </item>
            
        <item>
            <title>GPass: GNOME Password Manager</title>
            <link>http://swik.net/open-source/del.icio.us+tag%2Fopen-source/GPass%3A+GNOME+Password+Manager/ce9ge</link>
            <description>GPass is the password manegement software for GNOME2 desktop.
If GPass is used, your a large amount of password can be unitary managed. And a secure password can be easily made.</description>
            
            <pubDate>Fri, 19 Sep 2008 09:58:30 -0700</pubDate>
        </item>
                </channel>
</rss>
