コード例 #1
0
 def init_extension_manager(self, connection):
     l3_ext_manager.register_opts(self.conf)
     self.agent_api = l3_ext_api.L3AgentExtensionAPI(self.router_info)
     self.l3_ext_manager = (l3_ext_manager.L3AgentExtensionsManager(
         self.conf))
     self.l3_ext_manager.initialize(connection, lib_const.L3_AGENT_MODE,
                                    self.agent_api)
コード例 #2
0
 def init_extension_manager(self, connection):
     l3_ext_manager.register_opts(self.conf)
     self.agent_api = l3_ext_api.L3AgentExtensionAPI(self.router_info)
     self.l3_ext_manager = (
         l3_ext_manager.L3AgentExtensionsManager(self.conf))
     self.l3_ext_manager.initialize(
         connection, lib_const.L3_AGENT_MODE,
         self.agent_api)
コード例 #3
0
    def _get_config_opts(self):
        """Register default config options"""
        config = cfg.ConfigOpts()
        config.register_opts(common_config.core_opts)
        config.register_opts(common_config.core_cli_opts)
        config.register_opts(serviceprovider_opts, 'service_providers')
        config.register_opts(vpn_agent_opts, 'vpnagent')
        config.register_opts(ipsec.ipsec_opts, 'ipsec')
        config.register_opts(ipsec.openswan_opts, 'openswan')

        logging.register_options(config)
        agent_config.register_process_monitor_opts(config)
        ext_manager.register_opts(config)
        return config
コード例 #4
0
    def _get_config_opts(self):
        """Register default config options"""
        config = cfg.ConfigOpts()
        config.register_opts(common_config.core_opts)
        config.register_opts(common_config.core_cli_opts)
        config.register_opts(serviceprovider_opts, 'service_providers')
        config.register_opts(vpn_agent_opts, 'vpnagent')
        config.register_opts(ipsec.ipsec_opts, 'ipsec')
        config.register_opts(ipsec.openswan_opts, 'openswan')

        logging.register_options(config)
        agent_config.register_process_monitor_opts(config)
        ext_manager.register_opts(config)
        return config
コード例 #5
0
 def init_extension_manager(self, connection):
     l3_ext_manager.register_opts(self.conf)
     self.l3_ext_manager = (
         l3_ext_manager.L3AgentExtensionsManager(self.conf))
     self.l3_ext_manager.initialize(
         connection, l3_constants.L3_AGENT_MODE)