<div dir="ltr"><div><div><div>Hi,<br><br></div>I&#39;m able to delete the logical network but this logical network after deletion shows as unmanaged network in &quot;Setup Host Networks&quot; against the hostnic.<br><br>I tried with this code to detach the logical network. <br>
<br><b>Code 1:</b><br>HostNIC nic = api.getHosts().get(&quot;rhevhost&quot;).getHostNics().get(&quot;eth1&quot;);<br>Action action = new Action();<br>action.setNetwork(api.getNetworks().get(nw_name));<br>action.setDetach(true);<br>
action.setCheckConnectivity(false);<br>nic.detach(action);<br><br></div><b>Returns</b>:<br>code  : 409<br>reason: Conflict<br>detail: Network Interface is not attached to Logical Network.<br><br></div><b>Code 2:</b><br>HostNIC nic = api.getHosts().get(&quot;rhevhost&quot;).getHostNics().get(&quot;eth1.1345&quot;);<br>
Action action = new Action();<br>action.setNetwork(api.getNetworks().get(nw_name));<br>action.setDetach(true);<br>action.setCheckConnectivity(false);<br>nic.detach(action);<br><br><b>Returns</b>:<br>code  : 409<br>reason: Conflict<br>
detail: Cannot edit Network while Host is Active, change the Host to Maintenance mode and try again.<br><br clear="all"><div><div><div><div><div><br>-- <br><div>Thanks &amp; Regards</div>
<div>Tejesh</div>
</div></div></div></div></div></div>