{"id":3517,"date":"2012-06-10T00:52:33","date_gmt":"2012-06-10T04:52:33","guid":{"rendered":"http:\/\/onlineappsdba.com\/?p=3517"},"modified":"2012-06-10T00:52:33","modified_gmt":"2012-06-10T04:52:33","slug":"how-to-change-public-vip-address-in-11gr2-rac","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/","title":{"rendered":"How to change Public VIP Address in 11gR2 RAC"},"content":{"rendered":"<p><strong>Public VIP Address<\/strong>: An interface that can be used for communication with components external to Oracle RAC instances, such as Oracle Net and Virtual Internet Protocol (VIP) addresses.<br \/>\nWe can change VIP with any outage. We will change it node by node.<\/p>\n<p><strong>Step 1: Check which service is running on current which VIP , we want to change<\/strong><br \/>\n[oracle@test1 ~]$ srvctl status service -s &lt;database&gt;<br \/>\n[oracle@test1 ~]$ srvctl status service -d orcl<br \/>\nService dev is running on instance(s) orcl1<br \/>\nService taxi is running on instance(s) orcl1<br \/>\nService web is running on instance(s) orcl1<\/p>\n<p><strong>Step 2: Stop these services<\/strong><br \/>\n[oracle@test1 ~]$ srvctl stop service -d &lt;DB_NAME&gt; -s &lt;Service_name1,Service_name2&gt; -n &lt;hostname&gt;<\/p>\n<p>[oracle@test1 ~]$ srvctl stop service -d orcl -s dev,taxi,web -n test1<\/p>\n<p><strong>Step 3: Find VIP address:<\/strong><br \/>\n[oracle@test1 ~]$ srvctl config\u00a0 vip -n &lt;host_name&gt;<br \/>\n[oracle@test1 ~]$ srvctl config vip -n test1<br \/>\nVIP exists: \/test1-vip\/192.168.1.106\/192.168.1.0\/255.255.255.0\/eth0, hosting node test1<\/p>\n<p><strong>Step 4: Stop VIP of current node<\/strong><br \/>\n[oracle@test1 ~]$ srvctl stop\u00a0 vip -n &lt;host_name&gt;<br \/>\n[oracle@test1 ~]$ srvctl stop\u00a0 vip -n test1<br \/>\nPRCR-1014 : Failed to stop resource ora.test1.vip<br \/>\nPRCR-1065 : Failed to stop resource ora.test1.vip<br \/>\nCRS-2529: Unable to act on &#8216;ora.test1.vip&#8217; because that would require stopping or relocating &#8216;ora.LISTENER.lsnr&#8217;, but the force option was not specified.<\/p>\n<p><strong>CRS-2529:<\/strong> There is some\u00a0 dependent services on VIP of this node.<\/p>\n<p>Stop VIP forcefully on this node.<\/p>\n<p><strong><em>[oracle@test1 ~]$ srvctl stop\u00a0 vip -n test1 -f<\/em><\/strong><\/p>\n<p>(-f :: forcefully)<\/p>\n<p><strong>Step 5: Verify VIP is down:<\/strong><\/p>\n<p>[oracle@test1 ~]$<br \/>\n[oracle@test1 ~]$\u00a0 \/sbin\/ifconfig -a | egrep &#8216;(eth0|Mask)&#8217;<br \/>\neth0\u00a0\u00a0\u00a0\u00a0\u00a0 Link encap:Ethernet\u00a0 HWaddr 00:0C:29:39:72:AD<br \/>\ninet addr:192.168.1.105\u00a0 Bcast:192.168.1.255\u00a0 Mask:255.255.255.0<br \/>\ninet addr:172.16.0.10\u00a0 Bcast:172.16.255.255\u00a0 Mask:255.255.0.0<br \/>\ninet addr:169.254.250.202\u00a0 Bcast:169.254.255.255\u00a0 Mask:255.255.0.0<br \/>\ninet addr:127.0.0.1\u00a0 Mask:255.0.0.0<\/p>\n<p><strong>Step 6: Modify VIP<\/strong><br \/>\n[oracle@test1 ~]$ srvctl modify nodeapps -n test1 -A 192.168.1.115\/255.255.255.0\/eth0<\/p>\n<p><strong>Step 7: Make changes into \/etc\/hosts file on all nodes and domain name server,<\/strong><br \/>\nNew IP address with their respective host name.<\/p>\n<p><strong>Step 8: Start VIP<\/strong><\/p>\n<p>[oracle@test1 ~]$ srvctl start\u00a0 vip -n test1<\/p>\n<p><strong>Step 8: Verify VIP<\/strong><br \/>\n[oracle@test1 ~]$ \/sbin\/ifconfig -a | egrep &#8216;(eth0|Mask)&#8217;<br \/>\neth0\u00a0\u00a0\u00a0\u00a0\u00a0 Link encap:Ethernet\u00a0 HWaddr 00:0C:29:39:72:AD<br \/>\ninet addr:192.168.1.105\u00a0 Bcast:192.168.1.255\u00a0 Mask:255.255.255.0<br \/>\neth0:1\u00a0\u00a0\u00a0 Link encap:Ethernet\u00a0 HWaddr 00:0C:29:39:72:AD<br \/>\ninet addr:192.168.1.115\u00a0 Bcast:192.168.1.255\u00a0 Mask:255.255.255.0<br \/>\ninet addr:172.16.0.10\u00a0 Bcast:172.16.255.255\u00a0 Mask:255.255.0.0<br \/>\ninet addr:169.254.250.202\u00a0 Bcast:169.254.255.255\u00a0 Mask:255.255.0.0<br \/>\ninet addr:127.0.0.1\u00a0 Mask:255.0.0.0<\/p>\n<p><strong>Step 9: Start dependent services<\/strong><br \/>\n[oracle@test1 ~]$ srvctl start service -d orcl -s dev,taxi,web<\/p>\n<p>Check services status<br \/>\n[oracle@test1 ~]$ srvctl status service -d orcl -s dev,taxi,web<br \/>\nService dev is running on instance(s) orcl1<br \/>\nService taxi is running on instance(s) orcl1<br \/>\nService web is running on instance(s) orcl1<\/p>\n<p><strong>Step 10: Repeat step-1 to step-9 on the other nodes.<\/strong><\/p>\n<p><strong>Step 11: Verify Node connectivity between all nodes:<\/strong><br \/>\n[oracle@test1 ~]$ cluvfy comp nodecon -n all -verbose<br \/>\nVerifying node connectivity<br \/>\nChecking node connectivity&#8230;<br \/>\nChecking hosts config file&#8230;<br \/>\nNode Name\u00a0\u00a0\u00a0\u00a0 Status\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Comment<br \/>\n&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>\ntest2\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 passed<br \/>\ntest1\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 passed<br \/>\nVerification of the hosts config file successful<br \/>\nInterface information for node &#8220;test2&#8221;<br \/>\nName\u00a0\u00a0 IP Address\u00a0\u00a0\u00a0\u00a0\u00a0 Subnet\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Gateway\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Def. Gateway\u00a0\u00a0\u00a0 HW Address\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 MTU<br \/>\n&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;<br \/>\neth0\u00a0\u00a0 192.168.1.107\u00a0\u00a0 192.168.1.0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:39:72:AD 1500<br \/>\neth0\u00a0\u00a0 192.168.1.116\u00a0\u00a0 192.168.1.0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:39:72:AD 1500<br \/>\neth1\u00a0\u00a0 172.16.0.11\u00a0\u00a0\u00a0\u00a0 172.16.0.0\u00a0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:39:72:B7 1500<br \/>\neth1\u00a0\u00a0 169.254.250.202 169.254.0.0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:39:72:B7 1500<br \/>\nInterface information for node &#8220;test1&#8221;<br \/>\nName\u00a0\u00a0 IP Address\u00a0\u00a0\u00a0\u00a0\u00a0 Subnet\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Gateway\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Def. Gateway\u00a0\u00a0\u00a0 HW Address\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 MTU<br \/>\n&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;<br \/>\neth0\u00a0\u00a0 192.168.1.105\u00a0\u00a0 192.168.1.0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:F9:B9:1C 1500<br \/>\neth0\u00a0\u00a0 192.168.1.109\u00a0\u00a0 192.168.1.0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:F9:B9:1C 1500<br \/>\neth0\u00a0\u00a0 192.168.1.115\u00a0\u00a0 192.168.1.0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:F9:B9:1C 1500<br \/>\neth1\u00a0\u00a0 172.16.0.10\u00a0\u00a0\u00a0\u00a0 172.16.0.0\u00a0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:F9:B9:26 1500<br \/>\neth1\u00a0\u00a0 169.254.41.177\u00a0 169.254.0.0\u00a0\u00a0\u00a0\u00a0 0.0.0.0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 192.168.1.1\u00a0\u00a0\u00a0\u00a0 00:0C:29:F9:B9:26 1500<br \/>\nCheck: Node connectivity of subnet &#8220;192.168.1.0&#8221;<br \/>\nSource\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Destination\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connected?<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\ntest2[192.168.1.107]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test2[192.168.1.116]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest2[192.168.1.107]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.105]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest2[192.168.1.107]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.109]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest2[192.168.1.107]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.115]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest2[192.168.1.116]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.105]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest2[192.168.1.116]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.109]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest2[192.168.1.116]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.115]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest1[192.168.1.105]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.109]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest1[192.168.1.105]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.115]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\ntest1[192.168.1.109]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[192.168.1.115]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\nResult: Node connectivity passed for subnet &#8220;192.168.1.0&#8221; with node(s) test2,test1<br \/>\nCheck: TCP connectivity of subnet &#8220;192.168.1.0&#8221;<br \/>\nSource\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Destination\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connected?<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\ntest1:192.168.1.105\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test2:192.168.1.107\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 passed<br \/>\ntest1:192.168.1.105\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test2:192.168.1.116\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 passed<br \/>\ntest1:192.168.1.105\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1:192.168.1.109\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 passed<br \/>\ntest1:192.168.1.105\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1:192.168.1.115\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 passed<br \/>\nResult: TCP connectivity check passed for subnet &#8220;192.168.1.0&#8221;<br \/>\nCheck: Node connectivity of subnet &#8220;172.16.0.0&#8221;<br \/>\nSource\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Destination\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connected?<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\ntest2[172.16.0.11]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[172.16.0.10]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\nResult: Node connectivity passed for subnet &#8220;172.16.0.0&#8221; with node(s) test2,test1<br \/>\nCheck: TCP connectivity of subnet &#8220;172.16.0.0&#8221;<br \/>\nSource\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Destination\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connected?<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\ntest1:172.16.0.10\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test2:172.16.0.11\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 passed<br \/>\nResult: TCP connectivity check passed for subnet &#8220;172.16.0.0&#8221;<br \/>\nCheck: Node connectivity of subnet &#8220;169.254.0.0&#8221;<br \/>\nSource\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Destination\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connected?<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\ntest2[169.254.250.202]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test1[169.254.41.177]\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 yes<br \/>\nResult: Node connectivity passed for subnet &#8220;169.254.0.0&#8221; with node(s) test2,test1<br \/>\nCheck: TCP connectivity of subnet &#8220;169.254.0.0&#8221;<br \/>\nSource\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Destination\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connected?<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\u00a0 &#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\ntest1:169.254.41.177\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 test2:169.254.250.202\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 passed<br \/>\nResult: TCP connectivity check passed for subnet &#8220;169.254.0.0&#8221;<br \/>\nInterfaces found on subnet &#8220;192.168.1.0&#8221; that are likely candidates for VIP are:<br \/>\ntest2 eth0:192.168.1.107 eth0:192.168.1.116<br \/>\ntest1 eth0:192.168.1.105 eth0:192.168.1.109 eth0:192.168.1.115<\/p>\n<p>Interfaces found on subnet &#8220;169.254.0.0&#8221; that are likely candidates for VIP are:<br \/>\ntest2 eth1:169.254.250.202<br \/>\ntest1 eth1:169.254.41.177<\/p>\n<p>Interfaces found on subnet &#8220;172.16.0.0&#8221; that are likely candidates for a private interconnect are:<br \/>\ntest2 eth1:172.16.0.11<br \/>\ntest1 eth1:172.16.0.10<\/p>\n<p>Result: Node connectivity check passed<\/p>\n<p>Verification of node connectivity was successful.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Public VIP Address: An interface that can be used for communication with components external to Oracle RAC instances, such as [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[36],"tags":[],"class_list":["post-3517","post","type-post","status-publish","format-standard","hentry","category-rac"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to change Public VIP Address in 11gR2 RAC -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to change Public VIP Address in 11gR2 RAC -\" \/>\n<meta property=\"og:description\" content=\"Public VIP Address: An interface that can be used for communication with components external to Oracle RAC instances, such as [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-06-10T04:52:33+00:00\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/\",\"name\":\"How to change Public VIP Address in 11gR2 RAC -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"datePublished\":\"2012-06-10T04:52:33+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to change Public VIP Address in 11gR2 RAC\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to change Public VIP Address in 11gR2 RAC -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/","og_locale":"en_US","og_type":"article","og_title":"How to change Public VIP Address in 11gR2 RAC -","og_description":"Public VIP Address: An interface that can be used for communication with components external to Oracle RAC instances, such as [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/","article_published_time":"2012-06-10T04:52:33+00:00","author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/","url":"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/","name":"How to change Public VIP Address in 11gR2 RAC -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"datePublished":"2012-06-10T04:52:33+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2012\/06\/10\/how-to-change-public-vip-address-in-11gr2-rac\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"How to change Public VIP Address in 11gR2 RAC"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/3517","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=3517"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/3517\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=3517"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=3517"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=3517"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}