ubuntu@juju-544fc9-coreycb2-14:~$ apt policy neutron-common neutron-common: Installed: 2:12.0.5-0ubuntu4 Candidate: 2:12.0.5-0ubuntu4 Version table: *** 2:12.0.5-0ubuntu4 500 500 http://archive.ubuntu.com/ubuntu bionic-proposed/main amd64 Packages 100 /var/lib/dpkg/status 2:12.0.5-0ubuntu1 500 500 http://nova.clouds.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages 2:12.0.1-0ubuntu1 500 500 http://nova.clouds.archive.ubuntu.com/ubuntu bionic/main amd64 Packages ubuntu@juju-544fc9-coreycb2-14:~$ sudo vi /etc/neutron/plugins/ml2/openvswitch_agent.ini ... [securitygroup] enable_security_group = True firewall_driver = openvswitch (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack network list +--------------------------------------+---------+--------------------------------------+ | ID | Name | Subnets | +--------------------------------------+---------+--------------------------------------+ | a87a1b33-f662-493b-be1e-9a0259ba8bc6 | private | 3007b9c6-51ff-4875-b355-2da2ae48080e | | d0fffcc9-e76b-454a-bcba-76246eb5fbca | ext_net | 5110ce41-241d-4548-b976-634809b10657 | +--------------------------------------+---------+--------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack subnet list +--------------------------------------+----------------+--------------------------------------+-----------------+ | ID | Name | Network | Subnet | +--------------------------------------+----------------+--------------------------------------+-----------------+ | 3007b9c6-51ff-4875-b355-2da2ae48080e | private_subnet | a87a1b33-f662-493b-be1e-9a0259ba8bc6 | 192.168.21.0/24 | | 5110ce41-241d-4548-b976-634809b10657 | ext_net_subnet | d0fffcc9-e76b-454a-bcba-76246eb5fbca | 10.5.0.0/16 | +--------------------------------------+----------------+--------------------------------------+-----------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack security group create sec_group_A +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ | Field | Value | +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ | created_at | 2019-05-08T13:38:45Z | | description | sec_group_A | | id | 6ac978be-07de-4b9e-868f-30868f6c4b4c | | location | None | | name | sec_group_A | | project_id | 93a2394351334a1fb70c0dd9b96b2a05 | | revision_number | 2 | | rules | created_at='2019-05-08T13:38:45Z', direction='egress', ethertype='IPv4', id='24f2b13c-9db6-4c63-b857-df95231f8ca5', updated_at='2019-05-08T13:38:45Z' | | | created_at='2019-05-08T13:38:45Z', direction='egress', ethertype='IPv6', id='911211b3-59e5-49ee-9ed4-4c35e142d637', updated_at='2019-05-08T13:38:45Z' | | tags | [] | | updated_at | 2019-05-08T13:38:45Z | +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack security group create sec_group_B +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ | Field | Value | +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ | created_at | 2019-05-08T13:38:56Z | | description | sec_group_B | | id | b01db49a-7d5a-4de0-bf17-38d42643f2e1 | | location | None | | name | sec_group_B | | project_id | 93a2394351334a1fb70c0dd9b96b2a05 | | revision_number | 2 | | rules | created_at='2019-05-08T13:38:56Z', direction='egress', ethertype='IPv6', id='ad774140-1b92-4179-a68e-87f4a167613f', updated_at='2019-05-08T13:38:56Z' | | | created_at='2019-05-08T13:38:56Z', direction='egress', ethertype='IPv4', id='de5e3674-0f51-48d0-8bc5-8d3cf90f7bbf', updated_at='2019-05-08T13:38:56Z' | | tags | [] | | updated_at | 2019-05-08T13:38:56Z | +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack security group rule create --ingress --proto tcp --dst-port 5682:5682 --remote-ip 0.0.0.0/0 sec_group_A +-------------------+--------------------------------------+ | Field | Value | +-------------------+--------------------------------------+ | created_at | 2019-05-08T13:39:27Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | 4cf48f4f-ea62-49b8-9fb5-8eb4ce3bd9be | | location | None | | name | None | | port_range_max | 5682 | | port_range_min | 5682 | | project_id | 93a2394351334a1fb70c0dd9b96b2a05 | | protocol | tcp | | remote_group_id | None | | remote_ip_prefix | 0.0.0.0/0 | | revision_number | 0 | | security_group_id | 6ac978be-07de-4b9e-868f-30868f6c4b4c | | tags | [] | | updated_at | 2019-05-08T13:39:27Z | +-------------------+--------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack security group rule create --ingress --proto tcp --dst-port 5672:5672 --remote-group sec_group_A sec_group_B +-------------------+--------------------------------------+ | Field | Value | +-------------------+--------------------------------------+ | created_at | 2019-05-08T13:39:57Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | 6ad14bf9-9602-4aba-8f9d-dd5971c7919f | | location | None | | name | None | | port_range_max | 5672 | | port_range_min | 5672 | | project_id | 93a2394351334a1fb70c0dd9b96b2a05 | | protocol | tcp | | remote_group_id | 6ac978be-07de-4b9e-868f-30868f6c4b4c | | remote_ip_prefix | None | | revision_number | 0 | | security_group_id | b01db49a-7d5a-4de0-bf17-38d42643f2e1 | | tags | [] | | updated_at | 2019-05-08T13:39:57Z | +-------------------+--------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack security group rule create --ingress --proto tcp --remote-group sec_group_A sec_group_B +-------------------+--------------------------------------+ | Field | Value | +-------------------+--------------------------------------+ | created_at | 2019-05-08T13:44:24Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | 90588899-c809-46c8-853f-9de270bb4241 | | location | None | | name | None | | port_range_max | None | | port_range_min | None | | project_id | 93a2394351334a1fb70c0dd9b96b2a05 | | protocol | tcp | | remote_group_id | 6ac978be-07de-4b9e-868f-30868f6c4b4c | | remote_ip_prefix | None | | revision_number | 0 | | security_group_id | b01db49a-7d5a-4de0-bf17-38d42643f2e1 | | tags | [] | | updated_at | 2019-05-08T13:44:24Z | +-------------------+--------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack security group rule list sec_group_B +--------------------------------------+-------------+----------+------------+--------------------------------------+ | ID | IP Protocol | IP Range | Port Range | Remote Security Group | +--------------------------------------+-------------+----------+------------+--------------------------------------+ | 6ad14bf9-9602-4aba-8f9d-dd5971c7919f | tcp | None | 5672:5672 | 6ac978be-07de-4b9e-868f-30868f6c4b4c | | 90588899-c809-46c8-853f-9de270bb4241 | tcp | None | | 6ac978be-07de-4b9e-868f-30868f6c4b4c | | ad774140-1b92-4179-a68e-87f4a167613f | None | None | | None | | de5e3674-0f51-48d0-8bc5-8d3cf90f7bbf | None | None | | None | +--------------------------------------+-------------+----------+------------+--------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack server create x1 --image xenial --flavor m1.small --nic net-id=`openstack network list | grep private | awk '{ print $2 }'` --security-group sec_group_B +-------------------------------------+-----------------------------------------------+ | Field | Value | +-------------------------------------+-----------------------------------------------+ | OS-DCF:diskConfig | MANUAL | | OS-EXT-AZ:availability_zone | | | OS-EXT-SRV-ATTR:host | None | | OS-EXT-SRV-ATTR:hypervisor_hostname | None | | OS-EXT-SRV-ATTR:instance_name | | | OS-EXT-STS:power_state | NOSTATE | | OS-EXT-STS:task_state | scheduling | | OS-EXT-STS:vm_state | building | | OS-SRV-USG:launched_at | None | | OS-SRV-USG:terminated_at | None | | accessIPv4 | | | accessIPv6 | | | addresses | | | adminPass | b4vfMgPyoDUX | | config_drive | | | created | 2019-05-08T13:45:14Z | | flavor | m1.small (2) | | hostId | | | id | 8e46ec0f-62ef-4341-bcc3-5fe642d8dc3a | | image | xenial (fbac11b2-3bfb-4b24-b60b-fd45ce6b2a46) | | key_name | None | | name | x1 | | progress | 0 | | project_id | 93a2394351334a1fb70c0dd9b96b2a05 | | properties | | | security_groups | name='b01db49a-7d5a-4de0-bf17-38d42643f2e1' | | status | BUILD | | updated | 2019-05-08T13:45:14Z | | user_id | 56629dc17d454e219eda38484791fc67 | | volumes_attached | | +-------------------------------------+-----------------------------------------------+ ubuntu@juju-544fc9-coreycb2-14:~$ virsh list Id Name State ---------------------------------------------------- 1 instance-00000001 running ubuntu@juju-544fc9-coreycb2-14:~$ sudo tail -n 100 /var/log/neutron/neutron-openvswitch-agent.log 2019-05-08 13:04:34.734 22834 INFO neutron.common.config [-] Logging enabled! 2019-05-08 13:04:34.735 22834 INFO neutron.common.config [-] /usr/bin/neutron-openvswitch-agent version 12.0.5 2019-05-08 13:04:34.736 22834 INFO ryu.base.app_manager [-] loading app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp 2019-05-08 13:04:36.385 22834 INFO ryu.base.app_manager [-] loading app ryu.app.ofctl.service 2019-05-08 13:04:36.387 22834 INFO ryu.base.app_manager [-] loading app ryu.controller.ofp_handler 2019-05-08 13:04:36.388 22834 INFO ryu.base.app_manager [-] instantiating app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp of OVSNeutronAgentRyuApp 2019-05-08 13:04:36.389 22834 INFO ryu.base.app_manager [-] instantiating app ryu.controller.ofp_handler of OFPHandler 2019-05-08 13:04:36.389 22834 INFO ryu.base.app_manager [-] instantiating app ryu.app.ofctl.service of OfctlService 2019-05-08 13:04:36.395 22834 INFO neutron.agent.agent_extensions_manager [-] Loaded agent extensions: [] 2019-05-08 13:04:36.671 22834 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [-] Bridge br-int has datapath-ID 0000169049328949 2019-05-08 13:05:42.200 25639 INFO neutron.common.config [-] Logging enabled! 2019-05-08 13:05:42.201 25639 INFO neutron.common.config [-] /usr/bin/neutron-openvswitch-agent version 12.0.5 2019-05-08 13:05:42.202 25639 INFO ryu.base.app_manager [-] loading app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp 2019-05-08 13:05:43.063 25639 INFO ryu.base.app_manager [-] loading app ryu.app.ofctl.service 2019-05-08 13:05:43.065 25639 INFO ryu.base.app_manager [-] loading app ryu.controller.ofp_handler 2019-05-08 13:05:43.066 25639 INFO ryu.base.app_manager [-] instantiating app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp of OVSNeutronAgentRyuApp 2019-05-08 13:05:43.067 25639 INFO ryu.base.app_manager [-] instantiating app ryu.controller.ofp_handler of OFPHandler 2019-05-08 13:05:43.068 25639 INFO ryu.base.app_manager [-] instantiating app ryu.app.ofctl.service of OfctlService 2019-05-08 13:05:43.073 25639 INFO neutron.agent.agent_extensions_manager [-] Loaded agent extensions: [] 2019-05-08 13:05:43.365 25639 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [-] Bridge br-int has datapath-ID 0000169049328949 2019-05-08 13:06:49.085 28614 INFO neutron.common.config [-] Logging enabled! 2019-05-08 13:06:49.086 28614 INFO neutron.common.config [-] /usr/bin/neutron-openvswitch-agent version 12.0.5 2019-05-08 13:06:49.088 28614 INFO ryu.base.app_manager [-] loading app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp 2019-05-08 13:06:50.034 28614 INFO ryu.base.app_manager [-] loading app ryu.app.ofctl.service 2019-05-08 13:06:50.035 28614 INFO ryu.base.app_manager [-] loading app ryu.controller.ofp_handler 2019-05-08 13:06:50.036 28614 INFO ryu.base.app_manager [-] instantiating app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp of OVSNeutronAgentRyuApp 2019-05-08 13:06:50.037 28614 INFO ryu.base.app_manager [-] instantiating app ryu.controller.ofp_handler of OFPHandler 2019-05-08 13:06:50.037 28614 INFO ryu.base.app_manager [-] instantiating app ryu.app.ofctl.service of OfctlService 2019-05-08 13:06:50.047 28614 INFO neutron.agent.agent_extensions_manager [-] Loaded agent extensions: ['qos'] 2019-05-08 13:06:50.271 28614 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [-] Bridge br-int has datapath-ID 0000169049328949 2019-05-08 13:09:11.462 1182 INFO neutron.common.config [-] Logging enabled! 2019-05-08 13:09:11.462 1182 INFO neutron.common.config [-] /usr/bin/neutron-openvswitch-agent version 12.0.5 2019-05-08 13:09:11.463 1182 INFO ryu.base.app_manager [-] loading app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp 2019-05-08 13:09:12.147 1182 INFO ryu.base.app_manager [-] loading app ryu.app.ofctl.service 2019-05-08 13:09:12.148 1182 INFO ryu.base.app_manager [-] loading app ryu.controller.ofp_handler 2019-05-08 13:09:12.150 1182 INFO ryu.base.app_manager [-] instantiating app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp of OVSNeutronAgentRyuApp 2019-05-08 13:09:12.151 1182 INFO ryu.base.app_manager [-] instantiating app ryu.controller.ofp_handler of OFPHandler 2019-05-08 13:09:12.152 1182 INFO ryu.base.app_manager [-] instantiating app ryu.app.ofctl.service of OfctlService 2019-05-08 13:09:12.157 1182 INFO neutron.agent.agent_extensions_manager [-] Loaded agent extensions: ['qos'] 2019-05-08 13:09:12.355 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [-] Bridge br-int has datapath-ID 0000169049328949 2019-05-08 13:09:16.647 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-f86cffca-3c64-4255-8f57-624320be2169 - - - - -] Mapping physical network physnet1 to bridge br-data 2019-05-08 13:09:16.704 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [req-f86cffca-3c64-4255-8f57-624320be2169 - - - - -] Bridge br-data has datapath-ID 00005234a6cd1341 2019-05-08 13:09:17.863 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [req-f86cffca-3c64-4255-8f57-624320be2169 - - - - -] Bridge br-tun has datapath-ID 00003a52a1fbe343 2019-05-08 13:09:17.885 1182 INFO neutron.agent.agent_extensions_manager [req-f86cffca-3c64-4255-8f57-624320be2169 - - - - -] Initializing agent extension 'qos' 2019-05-08 13:09:21.195 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Agent initialized successfully, now running... 2019-05-08 13:23:05.690 1182 INFO neutron.agent.securitygroups_rpc [req-aa97fff7-0ea5-426a-9c21-aeb92dac6345 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['b61946e9-1b87-4991-8c10-06a7e5afce21'] 2019-05-08 13:23:05.691 1182 INFO neutron.agent.securitygroups_rpc [req-aa97fff7-0ea5-426a-9c21-aeb92dac6345 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['b61946e9-1b87-4991-8c10-06a7e5afce21'] 2019-05-08 13:23:05.692 1182 INFO neutron.agent.securitygroups_rpc [req-aa97fff7-0ea5-426a-9c21-aeb92dac6345 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['b61946e9-1b87-4991-8c10-06a7e5afce21'] 2019-05-08 13:23:05.692 1182 INFO neutron.agent.securitygroups_rpc [req-aa97fff7-0ea5-426a-9c21-aeb92dac6345 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['b61946e9-1b87-4991-8c10-06a7e5afce21'] 2019-05-08 13:23:08.862 1182 INFO neutron.agent.securitygroups_rpc [req-f47b776a-6723-4efc-b83e-821cf62f1ac0 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['e0227155-70d5-4b48-b012-e4c551fe7007'] 2019-05-08 13:23:08.863 1182 INFO neutron.agent.securitygroups_rpc [req-f47b776a-6723-4efc-b83e-821cf62f1ac0 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['e0227155-70d5-4b48-b012-e4c551fe7007'] 2019-05-08 13:23:08.864 1182 INFO neutron.agent.securitygroups_rpc [req-f47b776a-6723-4efc-b83e-821cf62f1ac0 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['e0227155-70d5-4b48-b012-e4c551fe7007'] 2019-05-08 13:23:08.864 1182 INFO neutron.agent.securitygroups_rpc [req-f47b776a-6723-4efc-b83e-821cf62f1ac0 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['e0227155-70d5-4b48-b012-e4c551fe7007'] 2019-05-08 13:38:45.995 1182 INFO neutron.agent.securitygroups_rpc [req-593867bb-9b79-43c3-a9ec-8007fd018749 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['6ac978be-07de-4b9e-868f-30868f6c4b4c'] 2019-05-08 13:38:45.997 1182 INFO neutron.agent.securitygroups_rpc [req-593867bb-9b79-43c3-a9ec-8007fd018749 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['6ac978be-07de-4b9e-868f-30868f6c4b4c'] 2019-05-08 13:38:56.845 1182 INFO neutron.agent.securitygroups_rpc [req-fa333f30-1274-4cc1-96a6-3fe05f01cfd5 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['b01db49a-7d5a-4de0-bf17-38d42643f2e1'] 2019-05-08 13:38:56.846 1182 INFO neutron.agent.securitygroups_rpc [req-fa333f30-1274-4cc1-96a6-3fe05f01cfd5 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['b01db49a-7d5a-4de0-bf17-38d42643f2e1'] 2019-05-08 13:39:27.500 1182 INFO neutron.agent.securitygroups_rpc [req-97074c75-99b1-4b47-94fe-a9db19337119 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['6ac978be-07de-4b9e-868f-30868f6c4b4c'] 2019-05-08 13:39:57.420 1182 INFO neutron.agent.securitygroups_rpc [req-fcfa901e-2da0-48c4-b82b-b0230dfbb380 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['b01db49a-7d5a-4de0-bf17-38d42643f2e1'] 2019-05-08 13:44:24.514 1182 INFO neutron.agent.securitygroups_rpc [req-a6074c77-94d5-461b-a99f-732bc95367e7 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group rule updated ['b01db49a-7d5a-4de0-bf17-38d42643f2e1'] 2019-05-08 13:45:18.201 1182 INFO neutron.agent.securitygroups_rpc [req-c3c20c33-28f8-49e9-8b52-87956d24cd67 56629dc17d454e219eda38484791fc67 93a2394351334a1fb70c0dd9b96b2a05 - - -] Security group member updated set([u'b01db49a-7d5a-4de0-bf17-38d42643f2e1']) 2019-05-08 13:45:44.158 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Port 3dddde30-17a8-426f-a3fa-80c2ec38bc8e updated. Details: {'profile': {}, 'network_qos_policy_id': None, 'qos_policy_id': None, 'allowed_address_pairs': [], 'admin_state_up': True, 'network_id': 'a87a1b33-f662-493b-be1e-9a0259ba8bc6', 'segmentation_id': 5, 'fixed_ips': [{'subnet_id': '3007b9c6-51ff-4875-b355-2da2ae48080e', 'ip_address': '192.168.21.17'}], 'device_owner': u'compute:nova', 'physical_network': None, 'mac_address': 'fa:16:3e:73:00:bd', 'device': u'3dddde30-17a8-426f-a3fa-80c2ec38bc8e', 'port_security_enabled': True, 'port_id': '3dddde30-17a8-426f-a3fa-80c2ec38bc8e', 'network_type': u'gre', 'security_groups': [u'b01db49a-7d5a-4de0-bf17-38d42643f2e1']} 2019-05-08 13:45:44.160 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Assigning 1 as local vlan for net-id=a87a1b33-f662-493b-be1e-9a0259ba8bc6 2019-05-08 13:45:44.175 1182 INFO neutron.agent.securitygroups_rpc [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Preparing filters for devices set([u'3dddde30-17a8-426f-a3fa-80c2ec38bc8e']) 2019-05-08 13:45:45.788 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Configuration for devices up [u'3dddde30-17a8-426f-a3fa-80c2ec38bc8e'] and devices down [] completed. 2019-05-08 13:45:45.789 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Cleaning stale br-int flows 2019-05-08 13:45:45.804 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Cleaning stale br-data flows 2019-05-08 13:45:45.808 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Cleaning stale br-tun flows 2019-05-08 13:45:46.157 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Port 3dddde30-17a8-426f-a3fa-80c2ec38bc8e updated. Details: {'profile': {}, 'network_qos_policy_id': None, 'qos_policy_id': None, 'allowed_address_pairs': [], 'admin_state_up': True, 'network_id': 'a87a1b33-f662-493b-be1e-9a0259ba8bc6', 'segmentation_id': 5, 'fixed_ips': [{'subnet_id': '3007b9c6-51ff-4875-b355-2da2ae48080e', 'ip_address': '192.168.21.17'}], 'device_owner': u'compute:nova', 'physical_network': None, 'mac_address': 'fa:16:3e:73:00:bd', 'device': u'3dddde30-17a8-426f-a3fa-80c2ec38bc8e', 'port_security_enabled': True, 'port_id': '3dddde30-17a8-426f-a3fa-80c2ec38bc8e', 'network_type': u'gre', 'security_groups': [u'b01db49a-7d5a-4de0-bf17-38d42643f2e1']} 2019-05-08 13:45:46.163 1182 INFO neutron.agent.securitygroups_rpc [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Refresh firewall rules 2019-05-08 13:45:48.533 1182 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-7eaaf6df-fc78-4f44-91f6-2384abcd9e9a - - - - -] Configuration for devices up [u'3dddde30-17a8-426f-a3fa-80c2ec38bc8e'] and devices down [] completed. 2019-05-08 13:46:19.568 1182 INFO neutron.agent.securitygroups_rpc [req-7ff04954-5e5c-4fb6-acd0-e36aeed42404 084aabf4eba143e281f906052a366d7f 38a3b296e7c34102a2c5641499c2d16f - - -] Security group rule updated ['678ad34b-d286-4a6d-8609-6b549cc83838'] 2019-05-08 13:46:19.569 1182 INFO neutron.agent.securitygroups_rpc [req-7ff04954-5e5c-4fb6-acd0-e36aeed42404 084aabf4eba143e281f906052a366d7f 38a3b296e7c34102a2c5641499c2d16f - - -] Security group rule updated ['678ad34b-d286-4a6d-8609-6b549cc83838'] 2019-05-08 13:46:19.569 1182 INFO neutron.agent.securitygroups_rpc [req-7ff04954-5e5c-4fb6-acd0-e36aeed42404 084aabf4eba143e281f906052a366d7f 38a3b296e7c34102a2c5641499c2d16f - - -] Security group rule updated ['678ad34b-d286-4a6d-8609-6b549cc83838'] 2019-05-08 13:46:19.570 1182 INFO neutron.agent.securitygroups_rpc [req-7ff04954-5e5c-4fb6-acd0-e36aeed42404 084aabf4eba143e281f906052a366d7f 38a3b296e7c34102a2c5641499c2d16f - - -] Security group rule updated ['678ad34b-d286-4a6d-8609-6b549cc83838']