<div dir="ltr"><div><div><div><div><div><div>Hi,<br><br></div>I have couple of doubts regarding gluon core plugin code, which are listed below<br><br>1) <a href="https://github.com/openstack/gluon/blob/master/gluon/plugin/core.py">https://github.com/openstack/gluon/blob/master/gluon/plugin/core.py</a> <br>    <br>def <b>create_subnet</b>(self, context, subnet): #Line 176-191<br>        """<br>        Comment<br>        """<br>        result = super(GluonPlugin, self).create_subnet(context, subnet)<br>        LOG.debug(result)<br>        return result<br><br>def <b>create_network</b>(self, context, network): #Line 350-365</div>        """Comment<br>        """<br>        result = super(GluonPlugin, self).create_network(context, network)<br>        LOG.debug(result)<br>        return result<br>def <b>create_port</b>(self, context, port):  #Line 466-481<br>        """<br>        Comment<br>        """<br>        <b>self.update_gluon_objects(context)</b><br>        result = super(GluonPlugin, self).create_port(context, port)<br>        LOG.debug(result)<br>        return result<br><b>def update_gluon_port(self, backend, id, port): </b>#Line 135-160<br>        result = dict()<br>        try:<br>            driver = self.backend_manager.get_backend_driver(<br>                backend, self.gluon_network, self.gluon_subnet)<br>            port_data = port["port"]<br>            host_id = port_data.get('binding:host_id', None)<br>            LOG.debug("host_id = %s" % host_id)<br>            if host_id is None:<br>                LOG.debug("Performing unbind")<br><br><br></div>why create network and subnet information only added to GluonPlugin(here Gluon work as core plugin). and it is not updated to any backend like how gluon create port does ?<br><br></div>2) As gluon network and subnet information not updated to backend. How SDN controller will realize network and subnet information from openstack controller node ? I think, after updating ml2 mechanism driver in ml2.ini file, right ?<br><br><br></div>Thanks and Regards,<br></div>Mohammad Shahid<br><div><div><div><div><div><div><br></div></div></div></div></div></div></div>