<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px;">
<div style="font-family: Calibri, sans-serif;">Hi,</div>
<div style="font-family: Calibri, sans-serif;"><br>
</div>
<div>I tried the host nic and bond sample code in&nbsp;<a href="http://www.ovirt.org/develop/api/pythonapi">http://www.ovirt.org/develop/api/pythonapi</a>/. In gui, I am able to create bond and vlan network without issues.</div>
<div><br>
</div>
<div>here is my code</div>
<div><br>
</div>
<div><br>
</div>
<div>
<p style="margin: 0px; font-family: Menlo;">if __name__ == '__main__':</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; url = 'https://huhe-rhev-m.cisco.com/ovirt-engine/api'</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; usr = 'admin@internal'</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; pwd = 'nbv12345'</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; ca_file = '/home/huhe/workspace/ansible/crt/ca.der'</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">&nbsp;&nbsp; &nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; api = API(url=url, username=usr, password=pwd, ca_file=ca_file, debug=True)</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; print api.get_product_info().name</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">&nbsp; &nbsp; &nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; nic0 = params.HostNIC(name = 'enp6s0', network =&nbsp; params.Network(), boot_protocol='none', ip=params.IP(address='', netmask='', gateway=''))</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; nic1 = params.HostNIC(name = 'enp7s0', network =&nbsp; params.Network(), boot_protocol='none', ip=params.IP(address='', netmask='', gateway=''))</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; nic2 = params.HostNIC(name = 'enp8s0', network =&nbsp; params.Network(), boot_protocol='none', ip=params.IP(address='', netmask='', gateway=''))</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; nic3 = params.HostNIC(name = 'enp9s0', network =&nbsp; params.Network(), boot_protocol='none', ip=params.IP(address='', netmask='', gateway=''))</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">&nbsp;&nbsp; &nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; bond = params.Bonding(</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp;&nbsp; &nbsp; &nbsp; slaves = params.Slaves(host_nic = [ nic0, nic1, nic2, nic3 ]),</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; options = params.Options(</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; option = [</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; params.Option(name = 'miimon', value = '100'),</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; params.Option(name = 'mode', value = '1'),</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; params.Option(name = 'primary', value = 'enp6s0')]</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; )</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; )</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">&nbsp;&nbsp; &nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; managementNetwork = params.HostNIC(network = params.Network(name = 'ovirtmgmt'),</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; name = 'bond0',</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; boot_protocol = 'static',</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ip = params.IP(</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; address = '20.200.10.172',</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; netmask = '255.255.255.0',</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gateway = '20.200.10.254'),</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; override_configuration = 1,</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; bonding = bond)</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">&nbsp;&nbsp; &nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; networkName = 'my_vm_db'</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; clusterNetwork = api.clusters.get('my_cluster').networks.get(name = networkName)</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; vlanNetwork = params.HostNIC(network = params.Network(name = networkName), name = &quot;bond0.%s&quot; % clusterNetwork.vlan.id)</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">&nbsp;&nbsp; &nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; host = api.hosts.get('host-172')</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; host.nics.setupnetworks(params.Action(force = 0,</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; check_connectivity = 1,</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; host_nics = params.HostNics(host_nic = [ managementNetwork,&nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vlanNetwork])))</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">&nbsp;&nbsp; &nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; api.disconnect()</p>
<p style="margin: 0px; font-family: Menlo;"><br>
</p>
</div>
<div><br>
</div>
<div>The following is the console output</div>
<div><br>
</div>
<div>
<p style="margin: 0px; font-family: Menlo;">&gt; &lt;action&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &lt;host_nics&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;name&gt;bond0&lt;/name&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;network&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;name&gt;ovirtmgmt&lt;/name&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/network&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ip netmask=&quot;255.255.255.0&quot; gateway=&quot;20.200.10.254&quot; address=&quot;20.200.10.172&quot;/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;bonding&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;options&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option name=&quot;miimon&quot; value=&quot;100&quot;/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option name=&quot;mode&quot; value=&quot;1&quot;/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option name=&quot;primary&quot; value=&quot;enp6s0&quot;/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/options&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;slaves&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;name&gt;enp6s0&lt;/name&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;network/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ip netmask=&quot;&quot; gateway=&quot;&quot; address=&quot;&quot;/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;boot_protocol&gt;none&lt;/boot_protocol&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;name&gt;enp7s0&lt;/name&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;network/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ip netmask=&quot;&quot; gateway=&quot;&quot; address=&quot;&quot;/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;boot_protocol&gt;none&lt;/boot_protocol&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;name&gt;enp8s0&lt;/name&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;network/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ip netmask=&quot;&quot; gateway=&quot;&quot; address=&quot;&quot;/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;boot_protocol&gt;none&lt;/boot_protocol&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;name&gt;enp9s0&lt;/name&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;network/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ip netmask=&quot;&quot; gateway=&quot;&quot; address=&quot;&quot;/&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;boot_protocol&gt;none&lt;/boot_protocol&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/slaves&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/bonding&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;boot_protocol&gt;static&lt;/boot_protocol&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;override_configuration&gt;1&lt;/override_configuration&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;name&gt;bond0.101&lt;/name&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;network&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;name&gt;my_vm_db&lt;/name&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/network&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/host_nic&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &lt;/host_nics&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &lt;check_connectivity&gt;1&lt;/check_connectivity&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &nbsp; &nbsp; &lt;force&gt;0&lt;/force&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&gt; &lt;/action&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&lt; HTTP/1.1 404 Not Found</p>
<p style="margin: 0px; font-family: Menlo;">&lt; Date: Fri, 05 Aug 2016 17:55:54 GMT</p>
<p style="margin: 0px; font-family: Menlo;">&lt; Server: Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips</p>
<p style="margin: 0px; font-family: Menlo;">&lt; Content-Length: 0</p>
<p style="margin: 0px; font-family: Menlo;">&lt;&nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">* Connection #0 to host huhe-rhev-m.cisco.com left intact</p>
<p style="margin: 0px; font-family: Menlo;">Traceback (most recent call last):</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; File &quot;/home/huhe/workspace/ansible/src/ovirt_hostnic.py&quot;, line 57, in &lt;module&gt;</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; vlanNetwork])))</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; File &quot;/usr/local/lib/python2.7/site-packages/ovirtsdk/infrastructure/brokers.py&quot;, line 16672, in setupnetworks</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; headers={&quot;Correlation-Id&quot;:correlation_id}</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; File &quot;/usr/local/lib/python2.7/site-packages/ovirtsdk/infrastructure/proxy.py&quot;, line 122, in request</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; persistent_auth=self.__persistent_auth</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; File &quot;/usr/local/lib/python2.7/site-packages/ovirtsdk/infrastructure/connectionspool.py&quot;, line 79, in do_request</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; persistent_auth)</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; File &quot;/usr/local/lib/python2.7/site-packages/ovirtsdk/infrastructure/connectionspool.py&quot;, line 156, in __do_request</p>
<p style="margin: 0px; font-family: Menlo;">&nbsp; &nbsp; raise errors.RequestError(response_code, response_reason, response_body)</p>
<p style="margin: 0px; font-family: Menlo;">ovirtsdk.infrastructure.errors.RequestError:&nbsp;</p>
<p style="margin: 0px; font-family: Menlo;">status: 404</p>
<p style="margin: 0px; font-family: Menlo;">reason: Not Found</p>
<p style="margin: 0px; font-family: Menlo;">detail:&nbsp;</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;"><br>
</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">Any idea what is wrong? It is ovirt v3</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;"><br>
</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">Thanks,</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;">Huan</p>
<p style="margin: 0px; font-family: Menlo; min-height: 16px;"><br>
</p>
</div>
<font face="Calibri,sans-serif"><a href="http://www.ovirt.org/develop/api/pythonapi/"></a><a href="http://www.ovirt.org/develop/api/pythonapi/"></a><a href="http://www.ovirt.org/develop/api/pythonapi/"></a></font>
</body>
</html>