<div dir="ltr"><div><div>I tried below code, but still it is not detaching the network<br><br>          HostNICs nicsApi = api.getHosts().get(&quot;venus-vdsb&quot;).getHostNics();<br>          List&lt;HostNIC&gt; nics = nicsApi.list();<br>
          HostNIC nic = api.getHosts().get(&quot;rhevhost&quot;).getHostNics().get(&quot;bond1.1231&quot;); //logical network network name is &quot;testLNw&quot;<br>          nic.setNetwork(null);<br>         <br><br><b>Result of executing this line</b>:  nicsApi.setupnetworks(createSetupNetworksParams(nics)); <br>
<br></div><div><b>Result:</b><br>code  : 400<br>reason: Bad Request<br>detail: Cannot setup Networks. The following VMs are actively using the Logical Network: greyvm, vmLogicalTest1, OmVM1. Please stop the VMs and try again., Cannot setup Networks. The following Bonds consist of less than two Network Interfaces: bond0., Cannot setup Networks. The following Network Interfaces were specified more than once: eth0, eth3, eth1, eth2.<br>
</div><div><br></div>Can you post the complete code?<br><br></div><br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Mar 10, 2014 at 6:54 PM, Moti Asayag <span dir="ltr">&lt;<a href="mailto:masayag@redhat.com" target="_blank">masayag@redhat.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
<br>
----- Original Message -----<br>
&gt; From: &quot;Tejesh M&quot; &lt;<a href="mailto:tejeshmk@gmail.com">tejeshmk@gmail.com</a>&gt;<br>
&gt; To: &quot;Moti Asayag&quot; &lt;<a href="mailto:masayag@redhat.com">masayag@redhat.com</a>&gt;, &quot;users@oVirt.org&quot; &lt;<a href="mailto:users@ovirt.org">users@ovirt.org</a>&gt;<br>
&gt; Sent: Monday, March 10, 2014 1:22:08 PM<br>
&gt; Subject: Delete &amp; Detach Logical Network<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&gt; I&#39;m able to delete the logical network but this logical network after<br>
&gt; deletion shows as unmanaged network in &quot;Setup Host Networks&quot; against the<br>
&gt; hostnic.<br>
&gt;<br>
&gt; I tried with this code to detach the logical network.<br>
&gt;<br>
&gt; *Code 1:*<br>
&gt; HostNIC nic = api.getHosts().get(&quot;rhevhost&quot;).getHostNics().get(&quot;eth1&quot;);<br>
&gt; Action action = new Action();<br>
&gt; action.setNetwork(api.getNetworks().get(nw_name));<br>
&gt; action.setDetach(true);<br>
&gt; action.setCheckConnectivity(false);<br>
&gt; nic.detach(action);<br>
&gt;<br>
&gt; *Returns*:<br>
&gt; code  : 409<br>
&gt; reason: Conflict<br>
&gt; detail: Network Interface is not attached to Logical Network.<br>
&gt;<br>
<br>
I can guess by the error message that the logical network &#39;rhevhost&#39; is vlan,<br>
so the proper interface should be the vlan device.<br>
<br>
<br>
&gt; *Code 2:*<br>
&gt; HostNIC nic = api.getHosts().get(&quot;rhevhost&quot;).getHostNics().get(&quot;eth1.1345&quot;);<br>
&gt; Action action = new Action();<br>
&gt; action.setNetwork(api.getNetworks().get(nw_name));<br>
&gt; action.setDetach(true);<br>
&gt; action.setCheckConnectivity(false);<br>
&gt; nic.detach(action);<br>
&gt;<br>
&gt; *Returns*:<br>
&gt; code  : 409<br>
&gt; reason: Conflict<br>
&gt; detail: Cannot edit Network while Host is Active, change the Host to<br>
&gt; Maintenance mode and try again.<br>
&gt;<br>
<br>
This is the 3.0 api which required the host to be in maintenance for network<br>
operations on the host. You could use setup networks instead which is the<br>
recommended api and doesn&#39;t require the host to be in maintenance.<br>
<br>
you can modify the example from [1] and set null for the network name you<br>
wish to detach from the specific interface.<br>
<br>
Try by replacing only lines 28-41 with:<br>
HostNIC nic = nicsByNames.get(&quot;eth1.1345&quot;);<br>
nic.setNetwork(null);<br>
<br>
[1] <a href="https://motiasayag.wordpress.com/2014/02/24/invoke-setup-networks-from-the-java-sdk/" target="_blank">https://motiasayag.wordpress.com/2014/02/24/invoke-setup-networks-from-the-java-sdk/</a><br>
<span class="HOEnZb"><font color="#888888"><br>
&gt;<br>
&gt; --<br>
&gt; Thanks &amp; Regards<br>
&gt; Tejesh<br>
&gt;<br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br><div>Thanks &amp; Regards</div>
<div>Tejesh</div>
</div>