ubuntu@juju-855a82-coreycb2-14:~$ apt policy neutron-common neutron-common: Installed: 2:12.0.5-0ubuntu4~cloud0 Candidate: 2:12.0.5-0ubuntu4~cloud0 Version table: *** 2:12.0.5-0ubuntu4~cloud0 500 500 http://ubuntu-cloud.archive.canonical.com/ubuntu xenial-proposed/queens/main amd64 Packages 100 /var/lib/dpkg/status 2:8.4.0-0ubuntu7.3 500 500 http://nova.clouds.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages 2:8.0.0-0ubuntu1 500 500 http://nova.clouds.archive.ubuntu.com/ubuntu xenial/main amd64 Packages ubuntu@juju-855a82-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 | +--------------------------------------+---------+--------------------------------------+ | 208072c4-a72b-4d67-a522-4c87656eead7 | private | 21e34319-7022-42c9-a291-154da76d7350 | | a894d8e9-3ec0-493c-9f54-ab5e133059eb | ext_net | 8de7468c-fce5-4b30-9e7f-186432e09dae | +--------------------------------------+---------+--------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack subnet list +--------------------------------------+----------------+--------------------------------------+-----------------+ | ID | Name | Network | Subnet | +--------------------------------------+----------------+--------------------------------------+-----------------+ | 21e34319-7022-42c9-a291-154da76d7350 | private_subnet | 208072c4-a72b-4d67-a522-4c87656eead7 | 192.168.21.0/24 | | 8de7468c-fce5-4b30-9e7f-186432e09dae | ext_net_subnet | a894d8e9-3ec0-493c-9f54-ab5e133059eb | 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-08T14:48:24Z | | description | sec_group_A | | id | 2be8c89c-d9d7-481b-9c65-ff328dce2400 | | location | None | | name | sec_group_A | | project_id | b6e51e56a26c4e41ba3b06c83685bad3 | | revision_number | 2 | | rules | created_at='2019-05-08T14:48:24Z', direction='egress', ethertype='IPv6', id='cffdd9b3-81f1-46ac-9f6a-c41ddb19b11a', updated_at='2019-05-08T14:48:24Z' | | | created_at='2019-05-08T14:48:24Z', direction='egress', ethertype='IPv4', id='e7cb73f4-97cc-473c-b2f1-b0a06e95a41f', updated_at='2019-05-08T14:48:24Z' | | tags | [] | | updated_at | 2019-05-08T14:48:24Z | +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ (clients) ubuntu@coreycb-bastion:~/openstack-charm-testing$ openstack security group create sec_group_B +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ | Field | Value | +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ | created_at | 2019-05-08T14:48:29Z | | description | sec_group_B | | id | a7b0404f-a2eb-4708-bb01-1c0596624e53 | | location | None | | name | sec_group_B | | project_id | b6e51e56a26c4e41ba3b06c83685bad3 | | revision_number | 2 | | rules | created_at='2019-05-08T14:48:29Z', direction='egress', ethertype='IPv4', id='b80a93e2-e72a-445f-b078-68cab0eda672', updated_at='2019-05-08T14:48:29Z' | | | created_at='2019-05-08T14:48:29Z', direction='egress', ethertype='IPv6', id='d8dd0d2d-61f8-4ebd-9494-1f7e55723e89', updated_at='2019-05-08T14:48:29Z' | | tags | [] | | updated_at | 2019-05-08T14:48:29Z | +-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------+ (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-08T14:48:58Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | c92b1966-25af-4000-9723-f47f3446cafe | | location | None | | name | None | | port_range_max | 5682 | | port_range_min | 5682 | | project_id | b6e51e56a26c4e41ba3b06c83685bad3 | | protocol | tcp | | remote_group_id | None | | remote_ip_prefix | 0.0.0.0/0 | | revision_number | 0 | | security_group_id | 2be8c89c-d9d7-481b-9c65-ff328dce2400 | | tags | [] | | updated_at | 2019-05-08T14:48:58Z | +-------------------+--------------------------------------+ (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-08T14:49:03Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | 6011ae79-08f0-4391-be80-aad552ebe532 | | location | None | | name | None | | port_range_max | 5672 | | port_range_min | 5672 | | project_id | b6e51e56a26c4e41ba3b06c83685bad3 | | protocol | tcp | | remote_group_id | 2be8c89c-d9d7-481b-9c65-ff328dce2400 | | remote_ip_prefix | None | | revision_number | 0 | | security_group_id | a7b0404f-a2eb-4708-bb01-1c0596624e53 | | tags | [] | | updated_at | 2019-05-08T14:49:03Z | +-------------------+--------------------------------------+ (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-08T14:49:25Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | 980d8b89-ae43-4273-b498-3392caec8a5a | | location | None | | name | None | | port_range_max | None | | port_range_min | None | | project_id | b6e51e56a26c4e41ba3b06c83685bad3 | | protocol | tcp | | remote_group_id | 2be8c89c-d9d7-481b-9c65-ff328dce2400 | | remote_ip_prefix | None | | revision_number | 0 | | security_group_id | a7b0404f-a2eb-4708-bb01-1c0596624e53 | | tags | [] | | updated_at | 2019-05-08T14:49:25Z | +-------------------+--------------------------------------+ (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 | +--------------------------------------+-------------+----------+------------+--------------------------------------+ | 6011ae79-08f0-4391-be80-aad552ebe532 | tcp | None | 5672:5672 | 2be8c89c-d9d7-481b-9c65-ff328dce2400 | | 980d8b89-ae43-4273-b498-3392caec8a5a | tcp | None | | 2be8c89c-d9d7-481b-9c65-ff328dce2400 | | b80a93e2-e72a-445f-b078-68cab0eda672 | None | None | | None | | d8dd0d2d-61f8-4ebd-9494-1f7e55723e89 | 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 | GzVzG3ijBqSN | | config_drive | | | created | 2019-05-08T14:49:54Z | | flavor | m1.small (2) | | hostId | | | id | 35b6e2f9-d875-4a1f-8f35-9e1719111e8c | | image | xenial (683b4f9a-7564-4a2a-988f-6accc1abcecd) | | key_name | None | | name | x1 | | progress | 0 | | project_id | b6e51e56a26c4e41ba3b06c83685bad3 | | properties | | | security_groups | name='a7b0404f-a2eb-4708-bb01-1c0596624e53' | | status | BUILD | | updated | 2019-05-08T14:49:54Z | | user_id | c23d80422c054c9a883508d582ef9401 | | volumes_attached | | +-------------------------------------+-----------------------------------------------+ ubuntu@juju-855a82-coreycb2-14:~$ virsh list Id Name State ---------------------------------------------------- 1 instance-00000001 running ubuntu@juju-855a82-coreycb2-14:~$ sudo tail -n 100 /var/log/neutron/neutron-openvswitch-agent.log 2019-05-08 13:58:19.641 24659 INFO neutron.common.config [-] Logging enabled! 2019-05-08 13:58:19.641 24659 INFO neutron.common.config [-] /usr/bin/neutron-openvswitch-agent version 12.0.5 2019-05-08 13:58:19.642 24659 INFO ryu.base.app_manager [-] loading app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp 2019-05-08 13:58:20.105 24659 INFO ryu.base.app_manager [-] loading app ryu.app.ofctl.service 2019-05-08 13:58:20.106 24659 INFO ryu.base.app_manager [-] loading app ryu.controller.ofp_handler 2019-05-08 13:58:20.107 24659 INFO ryu.base.app_manager [-] instantiating app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp of OVSNeutronAgentRyuApp 2019-05-08 13:58:20.107 24659 INFO ryu.base.app_manager [-] instantiating app ryu.controller.ofp_handler of OFPHandler 2019-05-08 13:58:20.108 24659 INFO ryu.base.app_manager [-] instantiating app ryu.app.ofctl.service of OfctlService 2019-05-08 13:58:20.109 24659 INFO neutron.agent.agent_extensions_manager [-] Loaded agent extensions: [] 2019-05-08 13:58:20.354 24659 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [-] Bridge br-int has datapath-ID 00001e877ba88748 2019-05-08 13:58:59.389 26396 INFO neutron.common.config [-] Logging enabled! 2019-05-08 13:58:59.389 26396 INFO neutron.common.config [-] /usr/bin/neutron-openvswitch-agent version 12.0.5 2019-05-08 13:58:59.390 26396 INFO ryu.base.app_manager [-] loading app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp 2019-05-08 13:58:59.820 26396 INFO ryu.base.app_manager [-] loading app ryu.app.ofctl.service 2019-05-08 13:58:59.821 26396 INFO ryu.base.app_manager [-] loading app ryu.controller.ofp_handler 2019-05-08 13:58:59.821 26396 INFO ryu.base.app_manager [-] instantiating app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp of OVSNeutronAgentRyuApp 2019-05-08 13:58:59.822 26396 INFO ryu.base.app_manager [-] instantiating app ryu.controller.ofp_handler of OFPHandler 2019-05-08 13:58:59.822 26396 INFO ryu.base.app_manager [-] instantiating app ryu.app.ofctl.service of OfctlService 2019-05-08 13:58:59.823 26396 INFO neutron.agent.agent_extensions_manager [-] Loaded agent extensions: [] 2019-05-08 13:58:59.998 26396 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [-] Bridge br-int has datapath-ID 00001e877ba88748 2019-05-08 14:03:42.896 5450 INFO neutron.common.config [-] Logging enabled! 2019-05-08 14:03:42.896 5450 INFO neutron.common.config [-] /usr/bin/neutron-openvswitch-agent version 12.0.5 2019-05-08 14:03:42.897 5450 INFO ryu.base.app_manager [-] loading app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp 2019-05-08 14:03:43.332 5450 INFO ryu.base.app_manager [-] loading app ryu.app.ofctl.service 2019-05-08 14:03:43.333 5450 INFO ryu.base.app_manager [-] loading app ryu.controller.ofp_handler 2019-05-08 14:03:43.334 5450 INFO ryu.base.app_manager [-] instantiating app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp of OVSNeutronAgentRyuApp 2019-05-08 14:03:43.334 5450 INFO ryu.base.app_manager [-] instantiating app ryu.controller.ofp_handler of OFPHandler 2019-05-08 14:03:43.334 5450 INFO ryu.base.app_manager [-] instantiating app ryu.app.ofctl.service of OfctlService 2019-05-08 14:03:43.338 5450 INFO neutron.agent.agent_extensions_manager [-] Loaded agent extensions: ['qos'] 2019-05-08 14:03:43.483 5450 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [-] Bridge br-int has datapath-ID 00001e877ba88748 2019-05-08 14:04:14.238 6843 INFO neutron.common.config [-] Logging enabled! 2019-05-08 14:04:14.238 6843 INFO neutron.common.config [-] /usr/bin/neutron-openvswitch-agent version 12.0.5 2019-05-08 14:04:14.239 6843 INFO ryu.base.app_manager [-] loading app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp 2019-05-08 14:04:14.762 6843 INFO ryu.base.app_manager [-] loading app ryu.app.ofctl.service 2019-05-08 14:04:14.763 6843 INFO ryu.base.app_manager [-] loading app ryu.controller.ofp_handler 2019-05-08 14:04:14.763 6843 INFO ryu.base.app_manager [-] instantiating app neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_ryuapp of OVSNeutronAgentRyuApp 2019-05-08 14:04:14.764 6843 INFO ryu.base.app_manager [-] instantiating app ryu.controller.ofp_handler of OFPHandler 2019-05-08 14:04:14.764 6843 INFO ryu.base.app_manager [-] instantiating app ryu.app.ofctl.service of OfctlService 2019-05-08 14:04:14.767 6843 INFO neutron.agent.agent_extensions_manager [-] Loaded agent extensions: ['qos'] 2019-05-08 14:04:14.934 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [-] Bridge br-int has datapath-ID 00001e877ba88748 2019-05-08 14:04:16.332 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-318251da-b46f-4f9a-81c5-6a7532487000 - - - - -] Mapping physical network physnet1 to bridge br-data 2019-05-08 14:04:16.359 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [req-318251da-b46f-4f9a-81c5-6a7532487000 - - - - -] Bridge br-data has datapath-ID 00002ed06e566f43 2019-05-08 14:04:16.486 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.openflow.native.ovs_bridge [req-318251da-b46f-4f9a-81c5-6a7532487000 - - - - -] Bridge br-tun has datapath-ID 0000fa18fa033d43 2019-05-08 14:04:16.497 6843 INFO neutron.agent.agent_extensions_manager [req-318251da-b46f-4f9a-81c5-6a7532487000 - - - - -] Initializing agent extension 'qos' 2019-05-08 14:04:18.645 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Agent initialized successfully, now running... 2019-05-08 14:23:10.850 6843 INFO neutron.agent.securitygroups_rpc [req-91160ecc-5c97-4c2e-a180-ccddb3221cb5 c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['1abcf5d3-9e3f-441d-8daf-7986fa7790c0'] 2019-05-08 14:23:10.851 6843 INFO neutron.agent.securitygroups_rpc [req-91160ecc-5c97-4c2e-a180-ccddb3221cb5 c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['1abcf5d3-9e3f-441d-8daf-7986fa7790c0'] 2019-05-08 14:23:10.852 6843 INFO neutron.agent.securitygroups_rpc [req-91160ecc-5c97-4c2e-a180-ccddb3221cb5 c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['1abcf5d3-9e3f-441d-8daf-7986fa7790c0'] 2019-05-08 14:23:10.852 6843 INFO neutron.agent.securitygroups_rpc [req-91160ecc-5c97-4c2e-a180-ccddb3221cb5 c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['1abcf5d3-9e3f-441d-8daf-7986fa7790c0'] 2019-05-08 14:23:14.405 6843 INFO neutron.agent.securitygroups_rpc [req-d046d5ea-95ff-4952-b119-794a062a889b c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['fe095dc3-3959-44ba-b582-f85550fb71c4'] 2019-05-08 14:23:14.406 6843 INFO neutron.agent.securitygroups_rpc [req-d046d5ea-95ff-4952-b119-794a062a889b c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['fe095dc3-3959-44ba-b582-f85550fb71c4'] 2019-05-08 14:23:14.406 6843 INFO neutron.agent.securitygroups_rpc [req-d046d5ea-95ff-4952-b119-794a062a889b c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['fe095dc3-3959-44ba-b582-f85550fb71c4'] 2019-05-08 14:23:14.407 6843 INFO neutron.agent.securitygroups_rpc [req-d046d5ea-95ff-4952-b119-794a062a889b c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['fe095dc3-3959-44ba-b582-f85550fb71c4'] 2019-05-08 14:48:24.689 6843 INFO neutron.agent.securitygroups_rpc [req-2d0569a3-15dc-4bf2-a0f7-79e1d753810b c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['2be8c89c-d9d7-481b-9c65-ff328dce2400'] 2019-05-08 14:48:24.691 6843 INFO neutron.agent.securitygroups_rpc [req-2d0569a3-15dc-4bf2-a0f7-79e1d753810b c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['2be8c89c-d9d7-481b-9c65-ff328dce2400'] 2019-05-08 14:48:29.864 6843 INFO neutron.agent.securitygroups_rpc [req-29368ae8-4ddc-4875-a8f6-7feeea68e12e c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['a7b0404f-a2eb-4708-bb01-1c0596624e53'] 2019-05-08 14:48:29.865 6843 INFO neutron.agent.securitygroups_rpc [req-29368ae8-4ddc-4875-a8f6-7feeea68e12e c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['a7b0404f-a2eb-4708-bb01-1c0596624e53'] 2019-05-08 14:48:58.223 6843 INFO neutron.agent.securitygroups_rpc [req-26956de4-7f1c-495f-aa47-8fa7ef168f65 c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['2be8c89c-d9d7-481b-9c65-ff328dce2400'] 2019-05-08 14:49:03.785 6843 INFO neutron.agent.securitygroups_rpc [req-5ced2588-b1bc-4791-89fc-f55f567d425a c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['a7b0404f-a2eb-4708-bb01-1c0596624e53'] 2019-05-08 14:49:25.949 6843 INFO neutron.agent.securitygroups_rpc [req-457e1863-5d01-4c21-8cca-87ba6ad11a3f c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group rule updated ['a7b0404f-a2eb-4708-bb01-1c0596624e53'] 2019-05-08 14:49:58.522 6843 INFO neutron.agent.securitygroups_rpc [req-34c89825-7181-493d-b918-58cfc6335fa8 c23d80422c054c9a883508d582ef9401 b6e51e56a26c4e41ba3b06c83685bad3 - - -] Security group member updated set([u'a7b0404f-a2eb-4708-bb01-1c0596624e53']) 2019-05-08 14:50:25.926 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Port d11fc991-d6a2-4471-835d-971c59c8df50 updated. Details: {'profile': {}, 'network_qos_policy_id': None, 'qos_policy_id': None, 'allowed_address_pairs': [], 'admin_state_up': True, 'network_id': '208072c4-a72b-4d67-a522-4c87656eead7', 'segmentation_id': 5, 'fixed_ips': [{'subnet_id': '21e34319-7022-42c9-a291-154da76d7350', 'ip_address': '192.168.21.19'}], 'device_owner': u'compute:nova', 'physical_network': None, 'mac_address': 'fa:16:3e:aa:bf:ed', 'device': u'd11fc991-d6a2-4471-835d-971c59c8df50', 'port_security_enabled': True, 'port_id': 'd11fc991-d6a2-4471-835d-971c59c8df50', 'network_type': u'gre', 'security_groups': [u'a7b0404f-a2eb-4708-bb01-1c0596624e53']} 2019-05-08 14:50:25.926 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Assigning 1 as local vlan for net-id=208072c4-a72b-4d67-a522-4c87656eead7 2019-05-08 14:50:25.939 6843 INFO neutron.agent.securitygroups_rpc [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Preparing filters for devices set([u'd11fc991-d6a2-4471-835d-971c59c8df50']) 2019-05-08 14:50:27.909 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Configuration for devices up [u'd11fc991-d6a2-4471-835d-971c59c8df50'] and devices down [] completed. 2019-05-08 14:50:27.910 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Cleaning stale br-int flows 2019-05-08 14:50:27.920 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Cleaning stale br-data flows 2019-05-08 14:50:27.923 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Cleaning stale br-tun flows 2019-05-08 14:50:27.933 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Port d11fc991-d6a2-4471-835d-971c59c8df50 updated. Details: {'profile': {}, 'network_qos_policy_id': None, 'qos_policy_id': None, 'allowed_address_pairs': [], 'admin_state_up': True, 'network_id': '208072c4-a72b-4d67-a522-4c87656eead7', 'segmentation_id': 5, 'fixed_ips': [{'subnet_id': '21e34319-7022-42c9-a291-154da76d7350', 'ip_address': '192.168.21.19'}], 'device_owner': u'compute:nova', 'physical_network': None, 'mac_address': 'fa:16:3e:aa:bf:ed', 'device': u'd11fc991-d6a2-4471-835d-971c59c8df50', 'port_security_enabled': True, 'port_id': 'd11fc991-d6a2-4471-835d-971c59c8df50', 'network_type': u'gre', 'security_groups': [u'a7b0404f-a2eb-4708-bb01-1c0596624e53']} 2019-05-08 14:50:27.938 6843 INFO neutron.agent.securitygroups_rpc [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Refresh firewall rules 2019-05-08 14:50:29.573 6843 INFO neutron.plugins.ml2.drivers.openvswitch.agent.ovs_neutron_agent [req-80948db1-2f71-4237-a1c6-1720bed082cc - - - - -] Configuration for devices up [u'd11fc991-d6a2-4471-835d-971c59c8df50'] and devices down [] completed. 2019-05-08 14:50:53.623 6843 INFO neutron.agent.securitygroups_rpc [req-20d9c490-04b1-4337-bbd1-5f8d080581f1 550e806277ef43bd958d8246e9c22aee 7b8c026e139c420da935d20cf536f911 - - -] Security group rule updated ['cbea2f3b-662d-4f69-8919-0eef966d4f1e'] 2019-05-08 14:50:53.624 6843 INFO neutron.agent.securitygroups_rpc [req-20d9c490-04b1-4337-bbd1-5f8d080581f1 550e806277ef43bd958d8246e9c22aee 7b8c026e139c420da935d20cf536f911 - - -] Security group rule updated ['cbea2f3b-662d-4f69-8919-0eef966d4f1e'] 2019-05-08 14:50:53.624 6843 INFO neutron.agent.securitygroups_rpc [req-20d9c490-04b1-4337-bbd1-5f8d080581f1 550e806277ef43bd958d8246e9c22aee 7b8c026e139c420da935d20cf536f911 - - -] Security group rule updated ['cbea2f3b-662d-4f69-8919-0eef966d4f1e'] 2019-05-08 14:50:53.624 6843 INFO neutron.agent.securitygroups_rpc [req-20d9c490-04b1-4337-bbd1-5f8d080581f1 550e806277ef43bd958d8246e9c22aee 7b8c026e139c420da935d20cf536f911 - - -] Security group rule updated ['cbea2f3b-662d-4f69-8919-0eef966d4f1e']