<?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 on: Virtualized Oracle RAC and more&#8230;</title>
	<atom:link href="http://www.oracle-base.com/blog/2012/09/23/virtualized-oracle-rac-and-more/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oracle-base.com/blog/2012/09/23/virtualized-oracle-rac-and-more/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=virtualized-oracle-rac-and-more</link>
	<description>Oracle related rants (and lots of off-topic stuff)...</description>
	<lastBuildDate>Fri, 24 May 2013 21:10:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Gilbert Standen</title>
		<link>http://www.oracle-base.com/blog/2012/09/23/virtualized-oracle-rac-and-more/comment-page-1/#comment-199892</link>
		<dc:creator>Gilbert Standen</dc:creator>
		<pubDate>Fri, 26 Apr 2013 19:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracle-base.com/blog/?p=2952#comment-199892</guid>
		<description><![CDATA[Recently I found out how to establish host-guest networking when you are using openvswitch as your complete VM switching solution for example for VirtualBox VMs.  It is based on this page here:  https://www.virtualbox.org/wiki/Advanced_Networking_Linux
So, for example, I have an openvswitch &quot;sw1&quot; and a tap &quot;s1&quot;.  I want to be able to connect to all my VirtualBox VMs which have a bridged adapter assigned to &quot;s1&quot; with &quot;allow all&quot; enabled as the promiscuity setting.  Here&#039;s how you do it:

tunctl -t s1
ip link set s1 up
ovs-vsctl add-br sw1
ovs-vsctl add-port sw1 s1
ip link set up dev sw1
ip addr add 10.207.39.1/24 dev sw1

That&#039;s it, now you have 2-way ssh between host and guest.  You can look at your sw1 settings by command &quot;ifconfig sw1&quot;.  Now you can ssh to any guest VM which has an IP in that subnet which is on a bridged adapter assigned to any other non-vlan&#039;d tap on the switch.  Note:  don&#039;t put a &quot;tag=###&#039; where ### is a VLAN on the ports used for host-guest comm because so far, I haven&#039;t found the way to get it to work when a VLAN is assigned.

HTH,
Gil Standen]]></description>
		<content:encoded><![CDATA[<p>Recently I found out how to establish host-guest networking when you are using openvswitch as your complete VM switching solution for example for VirtualBox VMs.  It is based on this page here:  <a href="https://www.virtualbox.org/wiki/Advanced_Networking_Linux" rel="nofollow">https://www.virtualbox.org/wiki/Advanced_Networking_Linux</a><br />
So, for example, I have an openvswitch &#8220;sw1&#8243; and a tap &#8220;s1&#8243;.  I want to be able to connect to all my VirtualBox VMs which have a bridged adapter assigned to &#8220;s1&#8243; with &#8220;allow all&#8221; enabled as the promiscuity setting.  Here&#8217;s how you do it:</p>
<p>tunctl -t s1<br />
ip link set s1 up<br />
ovs-vsctl add-br sw1<br />
ovs-vsctl add-port sw1 s1<br />
ip link set up dev sw1<br />
ip addr add 10.207.39.1/24 dev sw1</p>
<p>That&#8217;s it, now you have 2-way ssh between host and guest.  You can look at your sw1 settings by command &#8220;ifconfig sw1&#8243;.  Now you can ssh to any guest VM which has an IP in that subnet which is on a bridged adapter assigned to any other non-vlan&#8217;d tap on the switch.  Note:  don&#8217;t put a &#8220;tag=###&#8217; where ### is a VLAN on the ports used for host-guest comm because so far, I haven&#8217;t found the way to get it to work when a VLAN is assigned.</p>
<p>HTH,<br />
Gil Standen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilbert Standen</title>
		<link>http://www.oracle-base.com/blog/2012/09/23/virtualized-oracle-rac-and-more/comment-page-1/#comment-189623</link>
		<dc:creator>Gilbert Standen</dc:creator>
		<pubDate>Tue, 22 Jan 2013 00:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracle-base.com/blog/?p=2952#comment-189623</guid>
		<description><![CDATA[Another quick post on the usefulness of openvswitch.  Again, since I am using the openvswitch as a layer 2 switch, I can put different RAC deployments ontop of the same switch.  The switch that I built for the 11gR2 virtual RAC is exactly the same switch I use for a 10gR2 legacy RAC which we are currently prototyping for some upgrade migration work.  This means that once I have an openvswitch built which has in my case 4 dedicated VLANs (interconnect, public, DNS, and storage) I can use the taps for each of those VLANs without any reconfiguration needed.  I like to build my prototypes of our production systems as close to actual, so I always use the actual IPs and actual static routes, etc.  If I were using vboxnets, I&#039;d have to have an ever-increasing number of vboxnets to accomodate all my RACs with different IP ranges.  But with openvswitch used as layer 2 switch, just these 4 VLANs can support any RAC virtualized prototype no matter what the IP ranges are. Very useful.]]></description>
		<content:encoded><![CDATA[<p>Another quick post on the usefulness of openvswitch.  Again, since I am using the openvswitch as a layer 2 switch, I can put different RAC deployments ontop of the same switch.  The switch that I built for the 11gR2 virtual RAC is exactly the same switch I use for a 10gR2 legacy RAC which we are currently prototyping for some upgrade migration work.  This means that once I have an openvswitch built which has in my case 4 dedicated VLANs (interconnect, public, DNS, and storage) I can use the taps for each of those VLANs without any reconfiguration needed.  I like to build my prototypes of our production systems as close to actual, so I always use the actual IPs and actual static routes, etc.  If I were using vboxnets, I&#8217;d have to have an ever-increasing number of vboxnets to accomodate all my RACs with different IP ranges.  But with openvswitch used as layer 2 switch, just these 4 VLANs can support any RAC virtualized prototype no matter what the IP ranges are. Very useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilbert Standen</title>
		<link>http://www.oracle-base.com/blog/2012/09/23/virtualized-oracle-rac-and-more/comment-page-1/#comment-189377</link>
		<dc:creator>Gilbert Standen</dc:creator>
		<pubDate>Mon, 21 Jan 2013 01:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracle-base.com/blog/?p=2952#comment-189377</guid>
		<description><![CDATA[Wanted to quickly post a note on an interesting application of openvswitch.  Recently we had to move a production 11gR2 2-node RAC to a new network.  This meant the public IPs, VIPs, and SCAN IPs had to all be moved to the new IP range.  I tested it out on my 2-node virtualized RAC which uses openvswitch for the networking (instead of virtualbox &quot;vboxnets&quot;).  The beauty of openvswitch was that there was no need to change anything at the switching or networking layer.  The bridged adapters are attached to the linux &quot;taps&quot; which are assigned to the VLANs.  Since all the switching is handled by the openvswitch layer 2 switching device using VLANs on the ports (the &quot;taps&quot;) there was no need to change anything whatsoever on openvswitch.  Like a rose, is a rose, is a rose, so a VLAN, is a VLAN, is a VLAN and you can push whatever IP you want over it.  So re-IP of the RAC involved simply following the instructions in Oracle Support Docs 276434.1 and 952903.1 all done on the linux server.  If I had been using the vboxnets I would have had to re-IP my vboxnets.  I will try to find time to add new posts at Wordpress about this.]]></description>
		<content:encoded><![CDATA[<p>Wanted to quickly post a note on an interesting application of openvswitch.  Recently we had to move a production 11gR2 2-node RAC to a new network.  This meant the public IPs, VIPs, and SCAN IPs had to all be moved to the new IP range.  I tested it out on my 2-node virtualized RAC which uses openvswitch for the networking (instead of virtualbox &#8220;vboxnets&#8221;).  The beauty of openvswitch was that there was no need to change anything at the switching or networking layer.  The bridged adapters are attached to the linux &#8220;taps&#8221; which are assigned to the VLANs.  Since all the switching is handled by the openvswitch layer 2 switching device using VLANs on the ports (the &#8220;taps&#8221;) there was no need to change anything whatsoever on openvswitch.  Like a rose, is a rose, is a rose, so a VLAN, is a VLAN, is a VLAN and you can push whatever IP you want over it.  So re-IP of the RAC involved simply following the instructions in Oracle Support Docs 276434.1 and 952903.1 all done on the linux server.  If I had been using the vboxnets I would have had to re-IP my vboxnets.  I will try to find time to add new posts at WordPress about this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stevaldo18</title>
		<link>http://www.oracle-base.com/blog/2012/09/23/virtualized-oracle-rac-and-more/comment-page-1/#comment-178539</link>
		<dc:creator>stevaldo18</dc:creator>
		<pubDate>Mon, 24 Sep 2012 18:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracle-base.com/blog/?p=2952#comment-178539</guid>
		<description><![CDATA[Virtualized Oracle RAC and more… http://t.co/VV4edSXJ]]></description>
		<content:encoded><![CDATA[<p>Virtualized Oracle RAC and more… <a href="http://t.co/VV4edSXJ" rel="nofollow">http://t.co/VV4edSXJ</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oraclebase</title>
		<link>http://www.oracle-base.com/blog/2012/09/23/virtualized-oracle-rac-and-more/comment-page-1/#comment-178426</link>
		<dc:creator>oraclebase</dc:creator>
		<pubDate>Sun, 23 Sep 2012 07:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.oracle-base.com/blog/?p=2952#comment-178426</guid>
		<description><![CDATA[Virtualized Oracle RAC and more… &#124; The ORACLE-BASE Blog http://t.co/bQGpbp8I]]></description>
		<content:encoded><![CDATA[<p>Virtualized Oracle RAC and more… | The ORACLE-BASE Blog <a href="http://t.co/bQGpbp8I" rel="nofollow">http://t.co/bQGpbp8I</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
