<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for onvox.net</title>
	<atom:link href="http://onvox.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://onvox.net</link>
	<description></description>
	<lastBuildDate>Mon, 12 Sep 2011 21:17:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on How to create IPv4 GRE tunnels in Ubuntu by Quora</title>
		<link>http://onvox.net/linux/how-to-create-ipv4-gre-tunnels-in-ubuntu/comment-page-1#comment-20</link>
		<dc:creator>Quora</dc:creator>
		<pubDate>Mon, 12 Sep 2011 21:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://onvox.net/?p=94#comment-20</guid>
		<description>&lt;strong&gt;What Saas or Free/Opensource SSL VPN solutions are available that connect cloud servers and local area network servers/desktops?...&lt;/strong&gt;

Also check out this article on setting up GRE tunnels in Ubuntu http://onvox.net/linux/how-to-create-ipv4-gre-tunnels-in-ubuntu...</description>
		<content:encoded><![CDATA[<p><strong>What Saas or Free/Opensource SSL VPN solutions are available that connect cloud servers and local area network servers/desktops?&#8230;</strong></p>
<p>Also check out this article on setting up GRE tunnels in Ubuntu <a href="http://onvox.net/linux/how-to-create-ipv4-gre-tunnels-in-ubuntu.." rel="nofollow">http://onvox.net/linux/how-to-create-ipv4-gre-tunnels-in-ubuntu..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to enable 802.1Q VLAN tagging in Ubuntu by Virtual Machines on Ubuntu Server 10.04 (with bond and Vlan) &#171; sasipra</title>
		<link>http://onvox.net/linux/how-to-enable-8021q-vlan-tagging-in-ubuntu/comment-page-1#comment-18</link>
		<dc:creator>Virtual Machines on Ubuntu Server 10.04 (with bond and Vlan) &#171; sasipra</dc:creator>
		<pubDate>Thu, 26 May 2011 21:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://dev.onvox.net/?p=3#comment-18</guid>
		<description>[...] http://onvox.net/linux/how-to-enable-8021q-vlan-tagging-in-ubuntu [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://onvox.net/linux/how-to-enable-8021q-vlan-tagging-in-ubuntu" rel="nofollow">http://onvox.net/linux/how-to-enable-8021q-vlan-tagging-in-ubuntu</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create IPv4 GRE tunnels in Ubuntu by GRE Tunnel &#124; wiki&#039;ed</title>
		<link>http://onvox.net/linux/how-to-create-ipv4-gre-tunnels-in-ubuntu/comment-page-1#comment-17</link>
		<dc:creator>GRE Tunnel &#124; wiki&#039;ed</dc:creator>
		<pubDate>Wed, 19 Jan 2011 20:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://onvox.net/?p=94#comment-17</guid>
		<description>[...] GRE tunnels can incapsulate IPv4/IPv6 unicast/multicast traffic, so it is de-facto tunnel standard for dynamic routed networks. You can setup up to 64K tunnels for an unique tunnel endpoints pair. It can work with FreeBSD and cisco IOS. Kernel module is &#8216;ip_gre&#8217;. Server_1  $ modprobe ip_gre $ ip tunnel add gre1 mode gre local 10.20.30.40 remote 50.60.70.80 $ ip address add dev gre1 192.168.1.2 peer 192.168.1.1/30 $ ip link set dev gre1 up $ ip route add 172.16.10.0/24 via 192.168.1.1  $ ip link show gre1 $ ifconfig gre1 Server_2  $ modprobe ip_gre $ ip tunnel add gre1 mode gre local 50.60.70.80 remote 10.20.30.40 $ ip address add dev gre1 192.168.1.1 peer 192.168.1.2/30 $ ip link set dev gre1 up $ ip route add 172.16.20.0/24 via 192.168.1.2  $ ip link show gre1 $ ifconfig gre1  $ ping 192.168.1.2 PING 192.168.1.2 &#040;192.168.1.2&#041; 56&#040;84&#041; bytes of data. 64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=201 ms $ ip tunnel del gre1 $ rmmod ip_gre Ubuntu: http://onvox.net/linux/how-to-create-ipv4-gre-tunnels-in-ubuntu [...]</description>
		<content:encoded><![CDATA[<p>[...] GRE tunnels can incapsulate IPv4/IPv6 unicast/multicast traffic, so it is de-facto tunnel standard for dynamic routed networks. You can setup up to 64K tunnels for an unique tunnel endpoints pair. It can work with FreeBSD and cisco IOS. Kernel module is &#8216;ip_gre&#8217;. Server_1  $ modprobe ip_gre $ ip tunnel add gre1 mode gre local 10.20.30.40 remote 50.60.70.80 $ ip address add dev gre1 192.168.1.2 peer 192.168.1.1/30 $ ip link set dev gre1 up $ ip route add 172.16.10.0/24 via 192.168.1.1  $ ip link show gre1 $ ifconfig gre1 Server_2  $ modprobe ip_gre $ ip tunnel add gre1 mode gre local 50.60.70.80 remote 10.20.30.40 $ ip address add dev gre1 192.168.1.1 peer 192.168.1.2/30 $ ip link set dev gre1 up $ ip route add 172.16.20.0/24 via 192.168.1.2  $ ip link show gre1 $ ifconfig gre1  $ ping 192.168.1.2 PING 192.168.1.2 &#040;192.168.1.2&#041; 56&#040;84&#041; bytes of data. 64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=201 ms $ ip tunnel del gre1 $ rmmod ip_gre Ubuntu: <a href="http://onvox.net/linux/how-to-create-ipv4-gre-tunnels-in-ubuntu" rel="nofollow">http://onvox.net/linux/how-to-create-ipv4-gre-tunnels-in-ubuntu</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create 6in4 tunnels in Ubuntu by Assign IPV6 to external vps/clients</title>
		<link>http://onvox.net/linux/how-to-create-6in4-tunnels-in-ubuntu/comment-page-1#comment-15</link>
		<dc:creator>Assign IPV6 to external vps/clients</dc:creator>
		<pubDate>Sun, 21 Nov 2010 10:26:02 +0000</pubDate>
		<guid isPermaLink="false">http://onvox.net/?p=45#comment-15</guid>
		<description>[...] are two tutorials for Ubuntu, respectively for 6to4 and GRE tunnels. What you want is something [...]</description>
		<content:encoded><![CDATA[<p>[...] are two tutorials for Ubuntu, respectively for 6to4 and GRE tunnels. What you want is something [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stateful Cisco IOS Firewalls by Stateful inspection firewall (SPI) &#8211; draytek help</title>
		<link>http://onvox.net/networking/stateful-cisco-ios-firewalls/comment-page-1#comment-12</link>
		<dc:creator>Stateful inspection firewall (SPI) &#8211; draytek help</dc:creator>
		<pubDate>Mon, 19 Apr 2010 14:29:28 +0000</pubDate>
		<guid isPermaLink="false">http://onvox.net/?p=183#comment-12</guid>
		<description>[...] onvox.net » Stateful Cisco IOS Firewalls [...]</description>
		<content:encoded><![CDATA[<p>[...] onvox.net » Stateful Cisco IOS Firewalls [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

