I'm attaching a file Neutron-server-log It's logging while creating a instance (fails) If it's giving any lead to this problem?
-----Original Message----- From: Uwe Sauter [mailto:uwe.sauter...@gmail.com] Sent: 29. júní 2015 23:49 To: Yngvi Páll Þorfinnsson; YANG LI Cc: openstack@lists.openstack.org Subject: RE: [Openstack] network question on openstack installation You should use the same IP addresses that are configured for the tunnel. It is expected that this scan takes some time as it iterates over all available network protocols. It is a bit concerning that GRE is listed as filtered. But now we are moving into uncertain/unknown terrain. Perhaps somebody else can jump in now? Am 30. Juni 2015 01:35:14 MESZ, schrieb "Yngvi Páll Þorfinnsson" <yngv...@siminn.is>: >root@network2:/# nmap -sO compute5 > >Starting Nmap 6.40 ( http://nmap.org ) at 2015-06-29 23:29 GMT Nmap >scan report for compute5 (172.22.14.17) Host is up (0.00014s latency). >rDNS record for 172.22.14.17: compute5.siminn.is Not shown: 245 closed >protocols >PROTOCOL STATE SERVICE >1 open icmp >2 open|filtered igmp >6 open tcp >17 open udp >47 open|filtered gre >96 open scc-sp >103 open|filtered pim >136 open|filtered udplite >166 open unknown >182 open unknown >255 open|filtered unknown >MAC Address: 0C:C4:7A:1E:77:7E (Unknown) > >Nmap done: 1 IP address (1 host up) scanned in 310.51 seconds > > >-----Original Message----- >From: Yngvi Páll Þorfinnsson >Sent: 29. júní 2015 23:35 >To: 'Uwe Sauter'; 'YANG LI' >Cc: 'openstack@lists.openstack.org' >Subject: RE: [Openstack] network question on openstack installation > >It's taking up to 5 minutes to finish > >root@compute5:/# nmap -sO 172.22.14.14 > >Starting Nmap 6.40 ( http://nmap.org ) at 2015-06-29 23:28 GMT >Warning: 172.22.14.14 giving up on port because retransmission cap hit >(10). >Nmap scan report for network2.siminn.is (172.22.14.14) Host is up >(0.000091s latency). >Not shown: 246 closed protocols >PROTOCOL STATE SERVICE >1 open icmp >2 open|filtered igmp >6 open tcp >7 open|filtered cbt >17 open udp >36 open xtp >47 open|filtered gre >103 open|filtered pim >136 open|filtered udplite >255 open|filtered unknown >MAC Address: 0C:C4:7A:1E:77:3D (Unknown) > >Nmap done: 1 IP address (1 host up) scanned in 307.19 seconds > > > >-----Original Message----- >From: Yngvi Páll Þorfinnsson >Sent: 29. júní 2015 23:28 >To: 'Uwe Sauter'; YANG LI >Cc: openstack@lists.openstack.org >Subject: RE: [Openstack] network question on openstack installation > >Well this one finished finally > >Should I use the tunnel or mgmt IP ? > >root@compute5:/# nmap -sO 172.22.15.14 > >Starting Nmap 6.40 ( http://nmap.org ) at 2015-06-29 23:21 GMT >Warning: 172.22.15.14 giving up on port because retransmission cap hit >(10). >Nmap scan report for 172.22.15.14 >Host is up (0.00017s latency). >Not shown: 247 closed protocols >PROTOCOL STATE SERVICE >1 open icmp >2 open|filtered igmp >6 open tcp >17 open udp >47 open|filtered gre >54 open narp >103 open|filtered pim >136 open|filtered udplite >144 open unknown >MAC Address: 0C:C4:7A:1E:77:3D (Unknown) > >Nmap done: 1 IP address (1 host up) scanned in 297.15 seconds >root@compute5:/# > > > >-----Original Message----- >From: Uwe Sauter [mailto:uwe.sauter...@gmail.com] >Sent: 29. júní 2015 23:18 >To: Yngvi Páll Þorfinnsson; YANG LI >Cc: openstack@lists.openstack.org >Subject: RE: [Openstack] network question on openstack installation > >Hm, I'm running out of ideas. Can you run those two commands to verify >that GRE traffic can pass the firewalls: > >Network node: nmap -sO <IP of compute node> > >Compute node: nmap -sO <IP of network node> > >In both cases, that's a big o, not a zero. > >Am 30. Juni 2015 01:07:04 MESZ, schrieb "Yngvi Páll Þorfinnsson" ><yngv...@siminn.is>: >>OK, so I ran the command you sent me , and now it looks it‘s allowed, >> >>Controller: >> >>root@controller2:/# iptables -L -nv --line-numbers Chain INPUT (policy > >>ACCEPT 6437 packets, 2609K bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 54411 17M nova-api-INPUT all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 0 0 ACCEPT 47 -- * * 172.22.15.0/24 > >> 172.22.15.0/24 >> >>Chain FORWARD (policy ACCEPT 0 packets, 0 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 nova-filter-top all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 0 0 nova-api-FORWARD all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >> >>Chain OUTPUT (policy ACCEPT 6228 packets, 2573K bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 51439 16M nova-filter-top all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 51439 16M nova-api-OUTPUT all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >> >>Chain nova-api-FORWARD (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >>Chain nova-api-INPUT (1 references) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 ACCEPT tcp -- * * 0.0.0.0/0 > >> 172.22.14.22 tcp dpt:8775 >> >>Chain nova-api-OUTPUT (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >>Chain nova-api-local (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >>Chain nova-filter-top (2 references) >>num pkts bytes target prot opt in out source > >> destination >>1 51439 16M nova-api-local all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>root@controller2:/# >> >> >>Network: >> >>root@network2:/# iptables -L -nv --line-numbers Chain INPUT (policy >>ACCEPT 8 packets, 512 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 2215 700K neutron-openvswi-INPUT all -- * * >>0.0.0.0/0 0.0.0.0/0 >>2 0 0 ACCEPT 47 -- * * 172.22.15.0/24 > >> 172.22.15.0/24 >> >>Chain FORWARD (policy ACCEPT 0 packets, 0 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 neutron-filter-top all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 0 0 neutron-openvswi-FORWARD all -- * * >>0.0.0.0/0 0.0.0.0/0 >> >>Chain OUTPUT (policy ACCEPT 5 packets, 664 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 1827 332K neutron-filter-top all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 1827 332K neutron-openvswi-OUTPUT all -- * * >>0.0.0.0/0 0.0.0.0/0 >> >>Chain neutron-filter-top (2 references) >>num pkts bytes target prot opt in out source > >> destination >>1 1827 332K neutron-openvswi-local all -- * * >>0.0.0.0/0 0.0.0.0/0 >> >>Chain neutron-openvswi-FORWARD (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >>Chain neutron-openvswi-INPUT (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >>Chain neutron-openvswi-OUTPUT (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >>Chain neutron-openvswi-local (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >>Chain neutron-openvswi-sg-chain (0 references) >>num pkts bytes target prot opt in out source > >> destination >> >>Chain neutron-openvswi-sg-fallback (0 references) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 DROP all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>root@network2:/# >> >>compute: >> >>root@compute5:/# iptables -L -nv --line-numbers Chain INPUT (policy >>ACCEPT 24 packets, 7092 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 ACCEPT udp -- virbr0 * 0.0.0.0/0 > >> 0.0.0.0/0 udp dpt:53 >>2 0 0 ACCEPT 47 -- * * 172.22.15.0/24 > >> 172.22.15.0/24 >>3 0 0 ACCEPT tcp -- virbr0 * 0.0.0.0/0 > >> 0.0.0.0/0 tcp dpt:53 >>4 0 0 ACCEPT udp -- virbr0 * 0.0.0.0/0 > >> 0.0.0.0/0 udp dpt:67 >>5 0 0 ACCEPT tcp -- virbr0 * 0.0.0.0/0 > >> 0.0.0.0/0 tcp dpt:67 >> >>Chain FORWARD (policy ACCEPT 0 packets, 0 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 ACCEPT all -- * virbr0 0.0.0.0/0 > >> 192.168.122.0/24 ctstate RELATED,ESTABLISHED >>2 0 0 ACCEPT all -- virbr0 * 192.168.122.0/24 > >> 0.0.0.0/0 >>3 0 0 ACCEPT all -- virbr0 virbr0 0.0.0.0/0 > >> 0.0.0.0/0 >>4 0 0 REJECT all -- * virbr0 0.0.0.0/0 > >> 0.0.0.0/0 reject-with icmp-port-unreachable >>5 0 0 REJECT all -- virbr0 * 0.0.0.0/0 > >> 0.0.0.0/0 reject-with icmp-port-unreachable >> >>Chain OUTPUT (policy ACCEPT 14 packets, 2340 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 ACCEPT udp -- * virbr0 0.0.0.0/0 > >> 0.0.0.0/0 udp dpt:68 >> >> >>I tried once more to create an instance, but if failed as well >> >>Best regards >>Yngvi >> >>From: Uwe Sauter [mailto:uwe.sauter...@gmail.com] >>Sent: 29. júní 2015 23:01 >>To: Yngvi Páll Þorfinnsson; YANG LI >>Cc: openstack@lists.openstack.org >>Subject: RE: [Openstack] network question on openstack installation >> >>I'm not sure if there is something wrong but on both hosts I don't see > >>any rule that accepts GRE traffic. You need to allow GRE traffic on >>your internal network so that tunneling can actually work. Without >that >>it's like having your network configured but not plugged in... >>Am 30. Juni 2015 00:50:28 MESZ, schrieb "Yngvi Páll Þorfinnsson" >><yngv...@siminn.is<mailto:yngv...@siminn.is>>: >>Network node: >> >> >>root@network2:/# iptables -L -nv --line-numbers Chain INPUT (policy >>ACCEPT 1286 packets, 351K bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 1171 338K neutron-openvswi-INPUT all -- * * >>0.0.0.0/0 0.0.0.0/0 >> >> >>Chain FORWARD (policy ACCEPT 0 packets, 0 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 neutron-filter-top all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 0 0 neutron-openvswi-FORWARD all -- * * >>0.0.0.0/0 0.0.0.0/0 >> >> >>Chain OUTPUT (policy ACCEPT 1124 packets, 180K bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 988 164K neutron-filter-top all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 988 164K neutron-openvswi-OUTPUT all -- * * >>0.0.0.0/0 0.0.0.0/0 >> >> >>Chain neutron-filter-top (2 references) >>num pkts bytes target prot opt in out source > >> destination >>1 988 164K neutron-openvswi-local all -- * * >>0.0.0.0/0 0.0.0.0/0 >> >> >>Chain neutron-openvswi-FORWARD (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >> >>Chain neutron-openvswi-INPUT (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >> >>Chain neutron-openvswi-OUTPUT (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >> >>Chain neutron-openvswi-local (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >> >>Chain neutron-openvswi-sg-chain (0 references) >>num pkts bytes target prot opt in out source > >> destination >> >> >>Chain neutron-openvswi-sg-fallback (0 references) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 DROP all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>root@network2:/# >> >> >>Controller node >> >> >>root@controller2:/# iptables -L -nv --line-numbers Chain INPUT (policy > >>ACCEPT 25498 packets, 7540K bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 25498 7540K nova-api-INPUT all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >> >> >>Chain FORWARD (policy ACCEPT 0 packets, 0 bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 nova-filter-top all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 0 0 nova-api-FORWARD all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >> >> >>Chain OUTPUT (policy ACCEPT 24216 packets, 7244K bytes) >>num pkts bytes target prot opt in out source > >> destination >>1 24216 7244K nova-filter-top all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>2 24216 7244K nova-api-OUTPUT all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >> >> >>Chain nova-api-FORWARD (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >> >>Chain nova-api-INPUT (1 references) >>num pkts bytes target prot opt in out source > >> destination >>1 0 0 ACCEPT tcp -- * * 0.0.0.0/0 > >> 172.22.14.22 tcp dpt:8775 >> >> >>Chain nova-api-OUTPUT (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >> >>Chain nova-api-local (1 references) >>num pkts bytes target prot opt in out source > >> destination >> >> >>Chain nova-filter-top (2 references) >>num pkts bytes target prot opt in out source > >> destination >>1 24216 7244K nova-api-local all -- * * 0.0.0.0/0 > >> 0.0.0.0/0 >>root@controller2:/# >> >> >> >> >> >> >>From: Uwe Sauter [mailto:uwe.sauter...@gmail.com] >>Sent: 29. júní 2015 22:46 >>To: Yngvi Páll Þorfinnsson; YANG LI >>Cc: >openstack@lists.openstack.org<mailto:openstack@lists.openstack.org> >>Subject: RE: [Openstack] network question on openstack installation >> >> >>One more thing. Please provide >> >>iptables -L -nv --line-numbers >> >>for network and compute nodes. >>Am 30. Juni 2015 00:25:45 MESZ, schrieb "Yngvi Páll Þorfinnsson" >><yngv...@siminn.is<mailto:yngv...@siminn.is>>: >>In fact, I don‘t think I‘ll need more than one „external network“ so, >>am I on the wrong path here, i.e. when I‘m configuing the external >>network as a VLAN ? >> >> >>Best regards >>Yngvi >> >> >>From: Yngvi Páll Þorfinnsson >>Sent: 29. júní 2015 21:57 >>To: Uwe Sauter; YANG LI >>Cc: >openstack@lists.openstack.org<mailto:openstack@lists.openstack.org> >>Subject: Re: [Openstack] network question on openstack installation >> >> >>OK, I only found one fresh error >>Compute node; nova-compute.log ( as usually when I create instance) >> >> >>grep ERR nova-compute.log >>2015-06-29 21:11:11.801 4166 ERROR nova.compute.manager [-] [instance: >>af901a2b-2462-4c19-b1f1-237371fd8177] Instance failed to spawn >> >> >>I‘ve attached the neutron agent-show and neutron (sub)net-list in the > >>attached file. >> >> >>Best regards >>Yngvi >> >> >> >> >>From: Uwe Sauter [mailto:uwe.sauter...@gmail.com] >>Sent: 29. júní 2015 21:34 >>To: Yngvi Páll Þorfinnsson; YANG LI >>Cc: >openstack@lists.openstack.org<mailto:openstack@lists.openstack.org> >>Subject: RE: [Openstack] network question on openstack installation >> >> >>Can you check for ERRORs in: >>Network node: neutron server log, neutron openvswitch agent log, >>openvswitch log Nova controller node: nova api log, nova scheduler log > >>Compute node: nova compute log, neutron openvswitch agent log, >>openvswitch log >> >>Also please list again neutron agent-show for the different agents and > >>neutron net-show and neutron subnet-show for your (sub)networks. >>Am 29. Juni 2015 23:24:48 MESZ, schrieb "Yngvi Páll Þorfinnsson" >><yngv...@siminn.is<mailto:yngv...@siminn.is>>: >>Thanks a lot for your effort Uwe ;-) >>It‘s relly helpful ! >> >> >>Now , I keep creating instances, and have the same error. >>I still get a strange comment in the >>Neutron server.log file when I try to create an instance: >> >> >>2015-06-29 21:11:11.576 1960 DEBUG >>neutron.plugins.ml2.drivers.mech_openvswitch >>[req-1e603e4b-61e6-4896-8f81-208daba8569b None] Checking segment: >>{'segmentation_id': 1102L, 'physical_network': u'external', 'id': >>u'11fab5ad-c457-4175-9e5a-f505fc0e072d', 'network_type': u'vlan'} for >>mappings: {u'external': u'br-ex'} with tunnel_types: [u'gre'] >>check_segment_for_agent >>/usr/lib/python2.7/dist-packages/neutron/plugins/ml2/drivers/mech_open >>v >>switch.py:52 >> >> >>But still this segment is not listed for ‚neutron net-list‘ nor >>‚neutron-subnet-list‘ ! >> >> >> >> >>root@controller2:/# source admin-openrc.sh root@controller2:/# >>root@controller2:/# neutron net-list >>+--------------------------------------+-------------+-----------------------------------------------------+ >>| id | name | subnets > >> | >>+--------------------------------------+-------------+-----------------------------------------------------+ >>| b43da44a-42d5-4b1f-91c2-d06a923deb29 | ext_net1101 | >>c40fa8e3-cd8e-4566-ade6-5f3eabed121c 157.157.8.0/24 | >>| 3446e54b-346f-45e5-89a2-1ec4eef251ab | demo-net | >>2c79bb00-0ace-4319-8151-81210ee3dfb2 172.22.18.0/24 | >>+--------------------------------------+-------------+-----------------------------------------------------+ >>root@controller2:/# >>root@controller2:/# neutron subnet-list >>+--------------------------------------+--------------------+----------------+---------------------------------------------------+ >>| id | name | cidr > >> | allocation_pools | >>+--------------------------------------+--------------------+----------------+---------------------------------------------------+ >>| c40fa8e3-cd8e-4566-ade6-5f3eabed121c | ext_net1101-subnet | >>157.157.8.0/24 | {"start": "157.157.8.51", "end": "157.157.8.250"} | >>| 2c79bb00-0ace-4319-8151-81210ee3dfb2 | demo-subnet | >>172.22.18.0/24 | {"start": "172.22.18.2", "end": "172.22.18.254"} | >>+--------------------------------------+--------------------+----------------+---------------------------------------------------+ >> >> >> >> >>And the output of listing it is empty: >> >> >>root@controller2:/# neutron net-show >>11fab5ad-c457-4175-9e5a-f505fc0e072d >>Unable to find network with name >'11fab5ad-c457-4175-9e5a-f505fc0e072d' >>root@controller2:/# >>root@controller2:/# source demo-openrc.sh root@controller2:/# neutron >>net-show 11fab5ad-c457-4175-9e5a-f505fc0e072d >>Unable to find network with name >'11fab5ad-c457-4175-9e5a-f505fc0e072d' >> >> >>This is after I have dropped the neutron, and resynced.... >> >> >>Best regards >>Yngvi >> >> >>From: Uwe Sauter [mailto:uwe.sauter...@gmail.com] >>Sent: 29. júní 2015 21:16 >>To: Yngvi Páll Þorfinnsson; YANG LI >>Cc: >openstack@lists.openstack.org<mailto:openstack@lists.openstack.org> >>Subject: RE: [Openstack] network question on openstack installation >> >> >>Yes. Just keep in mind that if you extend your configuration with a >new >>config file, then you must change your init script / unit file to >>reference that file. And it would probably be a good idea to re-sync >>the DB with that additional file as an option. Or you keep your plugin > >>configuration in a single file and be happy with the current layout. >>Am 29. Juni 2015 22:47:22 MESZ, schrieb "Yngvi Páll Þorfinnsson" >><yngv...@siminn.is<mailto:yngv...@siminn.is>>: >> >>Hi Uwe >> >>I just ran this some minutes ago, i.e. did the "population of db" >>again, >>According to the manual. >>Should'nt this be enough ? >> >> >>root@controller2:/# su -s /bin/sh -c "neutron-db-manage --config-file >>/etc/neutron/neutron.conf \ >> >>--config-file /etc/neutron/plugins/ml2/ml2_conf.ini upgrade juno" >>neutron >> >>INFO [alembic.migration] Context impl MySQLImpl. >>INFO [alembic.migration] Will assume non-transactional DDL. >>INFO [alembic.migration] Running upgrade None -> havana, >>havana_initial INFO [alembic.migration] Running upgrade havana -> >>e197124d4b9, add unique constraint to members INFO >[alembic.migration] >>Running upgrade e197124d4b9 -> 1fcfc149aca4, Add a unique constraint >on >>(agent_type, host) columns to prevent a race condition when an agent >> >>entry is 'upserted'. >>INFO [alembic.migration] Running upgrade 1fcfc149aca4 -> >50e86cb2637a, >>nsx_mappings INFO [alembic.migration] Running upgrade 50e86cb2637a -> > >>1421183d533f, NSX DHCP/metadata support INFO [alembic.migration] >>Running upgrade 1421183d533f -> 3d3cb89d84ee, nsx_switch_mappings INFO > >>[alembic.migration] Running upgrade 3d3cb89d84ee -> 4ca36cfc898c, >>nsx_router_mappings INFO [alembic.migration] Running upgrade >>4ca36cfc898c -> 27cc183af192, ml2_vnic_type INFO [alembic.migration] >>Running upgrade 27cc183af192 -> 50d5ba354c23, >>ml2 binding:vif_details >>INFO [alembic.migration] Running upgrade 50d5ba354c23 -> >157a5d299379, >>ml2 binding:profile >>INFO [alembic.migration] Running upgrade 157a5d299379 -> >3d2585038b95, >>VMware NSX rebranding INFO [alembic.migration] Running upgrade >>3d2585038b95 -> abc88c33f74f, lb stats INFO >> >>[alembic.migration] >> >>Running upgrade abc88c33f74f -> 1b2580001654, >> >>nsx_sec_group_mapping >>INFO [alembic.migration] Running upgrade 1b2580001654 -> e766b19a3bb, > >>nuage_initial INFO [alembic.migration] Running upgrade e766b19a3bb -> > >>2eeaf963a447, floatingip_status INFO [alembic.migration] Running >>upgrade 2eeaf963a447 -> 492a106273f8, Brocade ML2 Mech. Driver INFO >>[alembic.migration] Running upgrade 492a106273f8 -> 24c7ea5160d7, >Cisco >>CSR VPNaaS INFO [alembic.migration] Running upgrade 24c7ea5160d7 -> >>81c553f3776c, bsn_consistencyhashes INFO [alembic.migration] Running >>upgrade 81c553f3776c -> 117643811bca, >>nec: delete old ofc mapping tables >>INFO [alembic.migration] Running upgrade 117643811bca -> >19180cf98af6, >>nsx_gw_devices INFO [alembic.migration] Running upgrade 19180cf98af6 >>-> 33dd0a9fa487, embrane_lbaas_driver INFO [alembic.migration] >Running >>upgrade 33dd0a9fa487 -> 2447ad0e9585, Add IPv6 Subnet properties INFO >>[alembic.migration] Running upgrade 2447ad0e9585 >> >>-> 538732fa21e1, NEC Rename quantum_id to neutron_id >>INFO [alembic.migration] Running upgrade 538732fa21e1 -> >5ac1c354a051, >>n1kv segment allocs for cisco n1kv plugin INFO [alembic.migration] >>Running upgrade 5ac1c354a051 -> icehouse, icehouse INFO >>[alembic.migration] Running upgrade icehouse -> 54f7549a0e5f, >>set_not_null_peer_address INFO [alembic.migration] Running upgrade >>54f7549a0e5f -> 1e5dd1d09b22, set_not_null_fields_lb_stats INFO >>[alembic.migration] Running upgrade 1e5dd1d09b22 -> b65aa907aec, >>set_length_of_protocol_field INFO [alembic.migration] Running upgrade > >>b65aa907aec -> 33c3db036fe4, set_length_of_description_field_metering >>INFO [alembic.migration] Running upgrade 33c3db036fe4 -> >4eca4a84f08a, >>Remove ML2 Cisco Credentials DB INFO [alembic.migration] Running >>upgrade 4eca4a84f08a -> d06e871c0d5, >>set_admin_state_up_not_null_ml2 >>INFO >> >>[alembic.migration] Running upgrade d06e871c0d5 -> >> >>6be312499f9, set_not_null_vlan_id_cisco INFO [alembic.migration] >>Running upgrade 6be312499f9 -> 1b837a7125a9, Cisco APIC Mechanism >>Driver INFO [alembic.migration] -- Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet.
5-06-29 23:59:11.080 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.22', 44601) 2015-06-29 23:59:11.081 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:11.081 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:11.082 1977 INFO urllib3.connectionpool [-] Starting new HTTP connection (1): controller2 2015-06-29 23:59:11.083 1977 DEBUG urllib3.connectionpool [-] Setting read timeout to None _make_request /usr/lib/python2.7/dist-packages/urllib3/connectionpool.py:390 2015-06-29 23:59:11.096 1977 DEBUG urllib3.connectionpool [-] "GET /v2.0/tokens/b17b69677d8e491784dfa7df17250c24 HTTP/1.1" 200 2469 _make_request /usr/lib/python2.7/dist-packages/urllib3/connectionpool.py:430 2015-06-29 23:59:11.097 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:11.097 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 01b6745f195246578e9fd7680a1d0fb6 with project_id : f976b7c713c64b028c0e89f3956795ed and roles: _member_ _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:11.098 1977 DEBUG routes.middleware [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 ] No route matched for GET /networks.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:11.099 1977 DEBUG routes.middleware [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 ] Matched GET /networks.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:11.099 1977 DEBUG routes.middleware [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 ] Route path: '/networks{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640429264 wrapping <function resource at 0x7f9eb6331a28>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:11.099 1977 DEBUG routes.middleware [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640429264 wrapping <function resource at 0x7f9eb6331a28>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:11.113 1977 DEBUG neutron.policy [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 None] Enforcing rules: ['get_network'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.114 1977 DEBUG neutron.policy [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 None] Enforcing rules: ['get_network:provider:physical_network'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.114 1977 DEBUG neutron.policy [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 None] Enforcing rules: ['get_network:provider:network_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.115 1977 DEBUG neutron.policy [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 None] Enforcing rules: ['get_network:router:external'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.115 1977 DEBUG neutron.policy [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 None] Enforcing rules: ['get_network:provider:segmentation_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.116 1977 INFO neutron.wsgi [req-8d23d14f-2270-46b5-ac35-0fc9bf8b1120 None] 172.22.14.22 - - [29/Jun/2015 23:59:11] "GET /v2.0/networks.json?id=3446e54b-346f-45e5-89a2-1ec4eef251ab HTTP/1.1" 200 461 0.035226 2015-06-29 23:59:11.120 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.22', 44603) 2015-06-29 23:59:11.121 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:11.121 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:11.122 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:11.122 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:11.123 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 01b6745f195246578e9fd7680a1d0fb6 with project_id : f976b7c713c64b028c0e89f3956795ed and roles: _member_ _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:11.123 1977 DEBUG routes.middleware [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 ] No route matched for GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:11.124 1977 DEBUG routes.middleware [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 ] Matched GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:11.124 1977 DEBUG routes.middleware [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 ] Route path: '/ports{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:11.125 1977 DEBUG routes.middleware [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:11.148 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.149 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.149 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.149 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.150 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.150 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.151 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.151 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.152 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port:binding:host_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.152 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port:binding:profile'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.152 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port:binding:vif_details'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.153 1977 DEBUG neutron.policy [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] Enforcing rules: ['get_port:binding:vif_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.154 1977 INFO neutron.wsgi [req-feb32925-c77b-4ff8-9734-a1f5fd4de1e2 None] 172.22.14.22 - - [29/Jun/2015 23:59:11] "GET /v2.0/ports.json?tenant_id=f976b7c713c64b028c0e89f3956795ed HTTP/1.1" 200 4735 0.033480 2015-06-29 23:59:11.157 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.22', 44604) 2015-06-29 23:59:11.158 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:11.158 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:11.159 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:11.160 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:11.160 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 01b6745f195246578e9fd7680a1d0fb6 with project_id : f976b7c713c64b028c0e89f3956795ed and roles: _member_ _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:11.161 1977 DEBUG routes.middleware [req-30c94f57-6176-44af-9ea8-475851ae8b84 ] Matched GET /quotas/f976b7c713c64b028c0e89f3956795ed.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:11.161 1977 DEBUG routes.middleware [req-30c94f57-6176-44af-9ea8-475851ae8b84 ] Route path: '/quotas/:(id).:(format)', defaults: {'action': u'show', 'controller': <wsgify at 140319638933648 wrapping <function resource at 0x7f9eb6331d70>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:11.162 1977 DEBUG routes.middleware [req-30c94f57-6176-44af-9ea8-475851ae8b84 ] Match dict: {'action': u'show', 'controller': <wsgify at 140319638933648 wrapping <function resource at 0x7f9eb6331d70>>, 'id': u'f976b7c713c64b028c0e89f3956795ed', 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:11.166 1977 INFO neutron.wsgi [req-30c94f57-6176-44af-9ea8-475851ae8b84 None] 172.22.14.22 - - [29/Jun/2015 23:59:11] "GET /v2.0/quotas/f976b7c713c64b028c0e89f3956795ed.json HTTP/1.1" 200 324 0.007872 2015-06-29 23:59:11.358 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.22', 44608) 2015-06-29 23:59:11.359 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:11.359 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:11.360 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:11.361 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:11.361 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 01b6745f195246578e9fd7680a1d0fb6 with project_id : f976b7c713c64b028c0e89f3956795ed and roles: _member_ _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:11.362 1977 DEBUG routes.middleware [req-64f10247-1a22-46e3-adb7-4bae2d9f9d95 ] No route matched for GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:11.363 1977 DEBUG routes.middleware [req-64f10247-1a22-46e3-adb7-4bae2d9f9d95 ] Matched GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:11.363 1977 DEBUG routes.middleware [req-64f10247-1a22-46e3-adb7-4bae2d9f9d95 ] Route path: '/ports{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:11.363 1977 DEBUG routes.middleware [req-64f10247-1a22-46e3-adb7-4bae2d9f9d95 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:11.380 1977 INFO neutron.wsgi [req-64f10247-1a22-46e3-adb7-4bae2d9f9d95 None] 172.22.14.22 - - [29/Jun/2015 23:59:11] "GET /v2.0/ports.json?device_id=d25e8b0e-9354-4013-bba8-5c5235d7af2e HTTP/1.1" 200 202 0.021548 2015-06-29 23:59:11.740 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50360) 2015-06-29 23:59:11.741 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:11.742 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:11.742 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:11.743 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:11.743 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 01b6745f195246578e9fd7680a1d0fb6 with project_id : f976b7c713c64b028c0e89f3956795ed and roles: _member_ _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:11.744 1977 DEBUG routes.middleware [req-35ef0664-b81f-4249-8e9d-034b25209141 ] No route matched for GET /networks.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:11.745 1977 DEBUG routes.middleware [req-35ef0664-b81f-4249-8e9d-034b25209141 ] Matched GET /networks.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:11.745 1977 DEBUG routes.middleware [req-35ef0664-b81f-4249-8e9d-034b25209141 ] Route path: '/networks{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640429264 wrapping <function resource at 0x7f9eb6331a28>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:11.745 1977 DEBUG routes.middleware [req-35ef0664-b81f-4249-8e9d-034b25209141 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640429264 wrapping <function resource at 0x7f9eb6331a28>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:11.761 1977 DEBUG neutron.policy [req-35ef0664-b81f-4249-8e9d-034b25209141 None] Enforcing rules: ['get_network'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.761 1977 DEBUG neutron.policy [req-35ef0664-b81f-4249-8e9d-034b25209141 None] Enforcing rules: ['get_network:provider:physical_network'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.762 1977 DEBUG neutron.policy [req-35ef0664-b81f-4249-8e9d-034b25209141 None] Enforcing rules: ['get_network:provider:network_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.762 1977 DEBUG neutron.policy [req-35ef0664-b81f-4249-8e9d-034b25209141 None] Enforcing rules: ['get_network:router:external'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.763 1977 DEBUG neutron.policy [req-35ef0664-b81f-4249-8e9d-034b25209141 None] Enforcing rules: ['get_network:provider:segmentation_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.764 1977 INFO neutron.wsgi [req-35ef0664-b81f-4249-8e9d-034b25209141 None] 172.22.14.17 - - [29/Jun/2015 23:59:11] "GET /v2.0/networks.json?id=3446e54b-346f-45e5-89a2-1ec4eef251ab HTTP/1.1" 200 461 0.022905 2015-06-29 23:59:11.768 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50361) 2015-06-29 23:59:11.769 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:11.769 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:11.770 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:11.770 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:11.771 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 01b6745f195246578e9fd7680a1d0fb6 with project_id : f976b7c713c64b028c0e89f3956795ed and roles: _member_ _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:11.772 1977 DEBUG routes.middleware [req-88e62ebd-b1b9-4f4e-bb6e-c0ab565e650f ] Matched GET /security-groups.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:11.772 1977 DEBUG routes.middleware [req-88e62ebd-b1b9-4f4e-bb6e-c0ab565e650f ] Route path: '/security-groups.:(format)', defaults: {'action': u'index', 'controller': <wsgify at 140319640296912 wrapping <function resource at 0x7f9eb6331b18>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:11.772 1977 DEBUG routes.middleware [req-88e62ebd-b1b9-4f4e-bb6e-c0ab565e650f ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640296912 wrapping <function resource at 0x7f9eb6331b18>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:11.787 1977 DEBUG neutron.policy [req-88e62ebd-b1b9-4f4e-bb6e-c0ab565e650f None] Enforcing rules: ['get_security_group'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.788 1977 INFO neutron.wsgi [req-88e62ebd-b1b9-4f4e-bb6e-c0ab565e650f None] 172.22.14.17 - - [29/Jun/2015 23:59:11] "GET /v2.0/security-groups.json?tenant_id=f976b7c713c64b028c0e89f3956795ed HTTP/1.1" 200 1726 0.019927 2015-06-29 23:59:11.794 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50362) 2015-06-29 23:59:11.795 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:11.795 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:11.796 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:11.797 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:11.797 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 4ca014810f644b8c97e0ac3936f3f8de with project_id : 929c02470c45421e938947fdaa34fe39 and roles: admin _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:11.798 1977 DEBUG routes.middleware [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c ] No route matched for POST /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:11.799 1977 DEBUG routes.middleware [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c ] Matched POST /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:11.799 1977 DEBUG routes.middleware [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c ] Route path: '/ports{.format}', defaults: {'action': u'create', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:11.800 1977 DEBUG routes.middleware [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c ] Match dict: {'action': u'create', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:11.801 1977 DEBUG neutron.api.v2.base [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Request body: {u'port': {u'binding:host_id': u'compute5', u'admin_state_up': True, u'network_id': u'3446e54b-346f-45e5-89a2-1ec4eef251ab', u'tenant_id': u'f976b7c713c64b028c0e89f3956795ed', u'device_owner': u'compute:None', u'security_groups': [u'd2ac478d-f89a-4055-8702-fadc8e3ed9b6'], u'device_id': u'd25e8b0e-9354-4013-bba8-5c5235d7af2e'}} prepare_request_body /usr/lib/python2.7/dist-packages/neutron/api/v2/base.py:582 2015-06-29 23:59:11.802 1977 DEBUG neutron.policy [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Enforcing rules: ['create_port', 'create_port:binding:host_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.862 1977 DEBUG neutron.db.db_base_plugin_v2 [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Generated mac for network 3446e54b-346f-45e5-89a2-1ec4eef251ab is fa:16:3e:a3:5d:2f _generate_mac /usr/lib/python2.7/dist-packages/neutron/db/db_base_plugin_v2.py:144 2015-06-29 23:59:11.863 1977 DEBUG neutron.notifiers.nova [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Ignoring state change previous_port_status: symbol('NO_VALUE') current_port_status: DOWN port_id 5e606e0a-ba9e-4f96-8e5e-07b3e52c657c record_port_status_changed /usr/lib/python2.7/dist-packages/neutron/notifiers/nova.py:211 2015-06-29 23:59:11.875 1977 DEBUG neutron.db.db_base_plugin_v2 [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Allocated IP - 172.22.18.9 from 172.22.18.9 to 172.22.18.254 _try_generate_ip /usr/lib/python2.7/dist-packages/neutron/db/db_base_plugin_v2.py:237 2015-06-29 23:59:11.875 1977 DEBUG neutron.db.db_base_plugin_v2 [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Allocated IP 172.22.18.9 (3446e54b-346f-45e5-89a2-1ec4eef251ab/2c79bb00-0ace-4319-8151-81210ee3dfb2/5e606e0a-ba9e-4f96-8e5e-07b3e52c657c) _store_ip_allocation /usr/lib/python2.7/dist-packages/neutron/db/db_base_plugin_v2.py:187 2015-06-29 23:59:11.915 1977 DEBUG neutron.db.l3_dvrscheduler_db [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] DVR: dvr_update_router_addvm None dvr_update_router_addvm /usr/lib/python2.7/dist-packages/neutron/db/l3_dvrscheduler_db.py:111 2015-06-29 23:59:11.916 1977 DEBUG neutron.common.rpc [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] neutron.plugins.ml2.rpc.AgentNotifierApi method fanout_cast called with arguments (<neutron.context.Context object at 0x7f9eb60ca750>, {'args': {'security_groups': [u'd2ac478d-f89a-4055-8702-fadc8e3ed9b6']}, 'namespace': None, 'method': 'security_groups_member_updated'}) {'topic': 'q-agent-notifier-security_group-update', 'version': '1.1'} wrapper /usr/lib/python2.7/dist-packages/neutron/common/log.py:33 2015-06-29 23:59:11.924 1977 DEBUG neutron.plugins.ml2.managers [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Attempting to bind port 5e606e0a-ba9e-4f96-8e5e-07b3e52c657c on host compute5 for vnic_type normal with profile bind_port /usr/lib/python2.7/dist-packages/neutron/plugins/ml2/managers.py:574 2015-06-29 23:59:11.925 1977 DEBUG neutron.plugins.ml2.drivers.mech_agent [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Attempting to bind port 5e606e0a-ba9e-4f96-8e5e-07b3e52c657c on network 3446e54b-346f-45e5-89a2-1ec4eef251ab bind_port /usr/lib/python2.7/dist-packages/neutron/plugins/ml2/drivers/mech_agent.py:57 2015-06-29 23:59:11.929 1977 DEBUG neutron.plugins.ml2.drivers.mech_agent [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Checking agent: {'binary': u'neutron-openvswitch-agent', 'description': None, 'admin_state_up': True, 'heartbeat_timestamp': datetime.datetime(2015, 6, 29, 23, 58, 47), 'alive': True, 'id': u'a5db48ab-c7bf-4fe1-8f8a-eddc82cecce5', 'topic': u'N/A', 'host': u'compute5', 'agent_type': u'Open vSwitch agent', 'started_at': datetime.datetime(2015, 6, 29, 22, 43, 16), 'created_at': datetime.datetime(2015, 6, 29, 20, 43, 46), 'configurations': {u'arp_responder_enabled': False, u'tunneling_ip': u'172.22.15.17', u'devices': 0, u'l2_population': False, u'tunnel_types': [u'gre'], u'enable_distributed_routing': False, u'bridge_mappings': {}}} bind_port /usr/lib/python2.7/dist-packages/neutron/plugins/ml2/drivers/mech_agent.py:65 2015-06-29 23:59:11.930 1977 DEBUG neutron.plugins.ml2.drivers.mech_openvswitch [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Checking segment: {'segmentation_id': 1102L, 'physical_network': u'external', 'id': u'11fab5ad-c457-4175-9e5a-f505fc0e072d', 'network_type': u'vlan'} for mappings: {} with tunnel_types: [u'gre'] check_segment_for_agent /usr/lib/python2.7/dist-packages/neutron/plugins/ml2/drivers/mech_openvswitch.py:52 2015-06-29 23:59:11.931 1977 WARNING neutron.plugins.ml2.managers [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Failed to bind port 5e606e0a-ba9e-4f96-8e5e-07b3e52c657c on host compute5 2015-06-29 23:59:11.932 1977 DEBUG neutron.openstack.common.lockutils [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Got semaphore "db-access" lock /usr/lib/python2.7/dist-packages/neutron/openstack/common/lockutils.py:168 2015-06-29 23:59:11.957 1977 DEBUG neutron.policy [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Enforcing rules: ['get_port:binding:host_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.958 1977 DEBUG neutron.policy [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Enforcing rules: ['get_port:binding:profile'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.958 1977 DEBUG neutron.policy [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Enforcing rules: ['get_port:binding:vif_details'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.959 1977 DEBUG neutron.policy [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Enforcing rules: ['get_port:binding:vif_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:11.984 1977 DEBUG neutron.scheduler.dhcp_agent_scheduler [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] Network 3446e54b-346f-45e5-89a2-1ec4eef251ab is hosted already schedule /usr/lib/python2.7/dist-packages/neutron/scheduler/dhcp_agent_scheduler.py:71 2015-06-29 23:59:11.985 1977 DEBUG neutron.common.rpc [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] neutron.api.rpc.agentnotifiers.dhcp_rpc_agent_api.DhcpAgentNotifyAPI method cast called with arguments (<neutron.context.Context object at 0x7f9eb60ca750>, {'args': {'payload': {'port': {'status': u'DOWN', 'binding:host_id': u'compute5', 'allowed_address_pairs': [], 'extra_dhcp_opts': [], 'device_owner': u'compute:None', 'binding:profile': {}, 'fixed_ips': [{'subnet_id': u'2c79bb00-0ace-4319-8151-81210ee3dfb2', 'ip_address': u'172.22.18.9'}], 'id': u'5e606e0a-ba9e-4f96-8e5e-07b3e52c657c', 'security_groups': [u'd2ac478d-f89a-4055-8702-fadc8e3ed9b6'], 'device_id': u'd25e8b0e-9354-4013-bba8-5c5235d7af2e', 'name': u'', 'admin_state_up': True, 'network_id': u'3446e54b-346f-45e5-89a2-1ec4eef251ab', 'tenant_id': u'f976b7c713c64b028c0e89f3956795ed', 'binding:vif_details': {}, 'binding:vnic_type': 'normal', 'binding:vif_type': 'binding_failed', 'mac_address': u'fa:16:3e:a3:5d:2f'}}}, 'namespace': None, 'method': 'port_create_end'}) {'topic': u'dhcp_agent.network2'} wrapper /usr/lib/python2.7/dist-packages/neutron/common/log.py:33 2015-06-29 23:59:11.989 1977 INFO neutron.wsgi [req-58b7fe81-7f56-4cb6-9edb-4b1ffc129d1c None] 172.22.14.17 - - [29/Jun/2015 23:59:11] "POST /v2.0/ports.json HTTP/1.1" 201 891 0.194856 2015-06-29 23:59:11.994 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50363) 2015-06-29 23:59:11.995 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:11.995 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:11.996 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:11.996 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:11.997 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 4ca014810f644b8c97e0ac3936f3f8de with project_id : 929c02470c45421e938947fdaa34fe39 and roles: admin _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:11.998 1977 DEBUG routes.middleware [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 ] No route matched for GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:11.998 1977 DEBUG routes.middleware [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 ] Matched GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:11.998 1977 DEBUG routes.middleware [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 ] Route path: '/ports{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:11.999 1977 DEBUG routes.middleware [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:12.017 1977 DEBUG neutron.policy [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.018 1977 DEBUG neutron.policy [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 None] Enforcing rules: ['get_port:binding:host_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.018 1977 DEBUG neutron.policy [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 None] Enforcing rules: ['get_port:binding:profile'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.019 1977 DEBUG neutron.policy [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 None] Enforcing rules: ['get_port:binding:vif_details'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.019 1977 DEBUG neutron.policy [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 None] Enforcing rules: ['get_port:binding:vif_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.020 1977 INFO neutron.wsgi [req-57ecd3b0-d504-401a-b0ac-33448cac97b7 None] 172.22.14.17 - - [29/Jun/2015 23:59:12] "GET /v2.0/ports.json?tenant_id=f976b7c713c64b028c0e89f3956795ed&device_id=d25e8b0e-9354-4013-bba8-5c5235d7af2e HTTP/1.1" 200 889 0.025660 2015-06-29 23:59:12.024 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50364) 2015-06-29 23:59:12.025 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:12.026 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:12.027 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:12.027 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:12.028 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 4ca014810f644b8c97e0ac3936f3f8de with project_id : 929c02470c45421e938947fdaa34fe39 and roles: admin _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:12.029 1977 DEBUG routes.middleware [req-146f4ec5-a178-4a88-bd3b-fe2dbf373167 ] Matched GET /floatingips.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:12.029 1977 DEBUG routes.middleware [req-146f4ec5-a178-4a88-bd3b-fe2dbf373167 ] Route path: '/floatingips.:(format)', defaults: {'action': u'index', 'controller': <wsgify at 140319639001488 wrapping <function resource at 0x7f9eb6331f50>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:12.030 1977 DEBUG routes.middleware [req-146f4ec5-a178-4a88-bd3b-fe2dbf373167 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319639001488 wrapping <function resource at 0x7f9eb6331f50>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:12.034 1977 INFO neutron.wsgi [req-146f4ec5-a178-4a88-bd3b-fe2dbf373167 None] 172.22.14.17 - - [29/Jun/2015 23:59:12] "GET /v2.0/floatingips.json?fixed_ip_address=172.22.18.9&port_id=5e606e0a-ba9e-4f96-8e5e-07b3e52c657c HTTP/1.1" 200 208 0.008316 2015-06-29 23:59:12.037 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50365) 2015-06-29 23:59:12.038 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:12.039 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:12.039 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:12.040 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:12.040 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 01b6745f195246578e9fd7680a1d0fb6 with project_id : f976b7c713c64b028c0e89f3956795ed and roles: _member_ _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:12.041 1977 DEBUG routes.middleware [req-eb06c424-f81e-4620-b8d7-ca013eee8439 ] No route matched for GET /subnets.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:12.042 1977 DEBUG routes.middleware [req-eb06c424-f81e-4620-b8d7-ca013eee8439 ] Matched GET /subnets.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:12.042 1977 DEBUG routes.middleware [req-eb06c424-f81e-4620-b8d7-ca013eee8439 ] Route path: '/subnets{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640390800 wrapping <function resource at 0x7f9eb6331938>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:12.042 1977 DEBUG routes.middleware [req-eb06c424-f81e-4620-b8d7-ca013eee8439 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640390800 wrapping <function resource at 0x7f9eb6331938>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:12.054 1977 DEBUG neutron.policy [req-eb06c424-f81e-4620-b8d7-ca013eee8439 None] Enforcing rules: ['get_subnet'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.055 1977 INFO neutron.wsgi [req-eb06c424-f81e-4620-b8d7-ca013eee8439 None] 172.22.14.17 - - [29/Jun/2015 23:59:12] "GET /v2.0/subnets.json?id=2c79bb00-0ace-4319-8151-81210ee3dfb2 HTTP/1.1" 200 633 0.016832 2015-06-29 23:59:12.058 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50366) 2015-06-29 23:59:12.059 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:12.060 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:12.060 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:12.061 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:12.062 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 01b6745f195246578e9fd7680a1d0fb6 with project_id : f976b7c713c64b028c0e89f3956795ed and roles: _member_ _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:12.062 1977 DEBUG routes.middleware [req-9a986d97-7f1f-4032-973e-0838c48bfa95 ] No route matched for GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:12.063 1977 DEBUG routes.middleware [req-9a986d97-7f1f-4032-973e-0838c48bfa95 ] Matched GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:12.063 1977 DEBUG routes.middleware [req-9a986d97-7f1f-4032-973e-0838c48bfa95 ] Route path: '/ports{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:12.064 1977 DEBUG routes.middleware [req-9a986d97-7f1f-4032-973e-0838c48bfa95 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:12.088 1977 DEBUG neutron.policy [req-9a986d97-7f1f-4032-973e-0838c48bfa95 None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.088 1977 DEBUG neutron.policy [req-9a986d97-7f1f-4032-973e-0838c48bfa95 None] Enforcing rules: ['get_port:binding:host_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.089 1977 DEBUG neutron.policy [req-9a986d97-7f1f-4032-973e-0838c48bfa95 None] Enforcing rules: ['get_port:binding:profile'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.089 1977 DEBUG neutron.policy [req-9a986d97-7f1f-4032-973e-0838c48bfa95 None] Enforcing rules: ['get_port:binding:vif_details'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.090 1977 DEBUG neutron.policy [req-9a986d97-7f1f-4032-973e-0838c48bfa95 None] Enforcing rules: ['get_port:binding:vif_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:12.091 1977 INFO neutron.wsgi [req-9a986d97-7f1f-4032-973e-0838c48bfa95 None] 172.22.14.17 - - [29/Jun/2015 23:59:12] "GET /v2.0/ports.json?network_id=3446e54b-346f-45e5-89a2-1ec4eef251ab&device_owner=network%3Adhcp HTTP/1.1" 200 775 0.031717 2015-06-29 23:59:17.057 1977 DEBUG neutron.context [req-ea21f0dc-0e9e-40d1-92b8-d59eabf46df8 None] Arguments dropped when creating context: {u'project_name': None, u'tenant': None} __init__ /usr/lib/python2.7/dist-packages/neutron/context.py:83 2015-06-29 23:59:19.363 1977 DEBUG neutron.context [req-3b45803f-7730-41c1-8e3f-ad742d14aa5e None] Arguments dropped when creating context: {u'project_name': None, u'tenant': None} __init__ /usr/lib/python2.7/dist-packages/neutron/context.py:83 2015-06-29 23:59:19.467 1977 DEBUG neutron.context [req-44791dbe-2568-4595-8a4a-a2f6a7016dd1 None] Arguments dropped when creating context: {u'project_name': None, u'tenant': None} __init__ /usr/lib/python2.7/dist-packages/neutron/context.py:83 2015-06-29 23:59:19.483 1977 DEBUG neutron.context [req-c291bbd9-83fe-46ed-ab27-b087e720ccf4 None] Arguments dropped when creating context: {u'project_name': None, u'tenant': None} __init__ /usr/lib/python2.7/dist-packages/neutron/context.py:83 2015-06-29 23:59:21.503 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50367) 2015-06-29 23:59:21.506 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:21.506 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:21.507 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:21.508 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:21.508 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 4ca014810f644b8c97e0ac3936f3f8de with project_id : 929c02470c45421e938947fdaa34fe39 and roles: admin _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:21.510 1977 DEBUG routes.middleware [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f ] No route matched for GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:21.510 1977 DEBUG routes.middleware [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f ] Matched GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:21.510 1977 DEBUG routes.middleware [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f ] Route path: '/ports{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:21.511 1977 DEBUG routes.middleware [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:21.531 1977 DEBUG neutron.policy [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.532 1977 DEBUG neutron.policy [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f None] Enforcing rules: ['get_port:binding:host_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.532 1977 DEBUG neutron.policy [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f None] Enforcing rules: ['get_port:binding:profile'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.533 1977 DEBUG neutron.policy [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f None] Enforcing rules: ['get_port:binding:vif_details'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.533 1977 DEBUG neutron.policy [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f None] Enforcing rules: ['get_port:binding:vif_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.534 1977 INFO neutron.wsgi [req-dd4fa4db-60fa-4fbb-941f-b50772093c2f None] 172.22.14.17 - - [29/Jun/2015 23:59:21] "GET /v2.0/ports.json?tenant_id=f976b7c713c64b028c0e89f3956795ed&device_id=af901a2b-2462-4c19-b1f1-237371fd8177 HTTP/1.1" 200 889 0.029114 2015-06-29 23:59:21.591 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50368) 2015-06-29 23:59:21.593 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:21.593 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:21.594 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:21.594 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:21.595 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 4ca014810f644b8c97e0ac3936f3f8de with project_id : 929c02470c45421e938947fdaa34fe39 and roles: admin _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:21.596 1977 DEBUG routes.middleware [req-5b989daf-9c9c-4292-8dae-2cff675a6323 ] No route matched for GET /networks.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:21.596 1977 DEBUG routes.middleware [req-5b989daf-9c9c-4292-8dae-2cff675a6323 ] Matched GET /networks.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:21.597 1977 DEBUG routes.middleware [req-5b989daf-9c9c-4292-8dae-2cff675a6323 ] Route path: '/networks{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640429264 wrapping <function resource at 0x7f9eb6331a28>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:21.597 1977 DEBUG routes.middleware [req-5b989daf-9c9c-4292-8dae-2cff675a6323 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640429264 wrapping <function resource at 0x7f9eb6331a28>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:21.612 1977 DEBUG neutron.policy [req-5b989daf-9c9c-4292-8dae-2cff675a6323 None] Enforcing rules: ['get_network'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.613 1977 DEBUG neutron.policy [req-5b989daf-9c9c-4292-8dae-2cff675a6323 None] Enforcing rules: ['get_network:provider:physical_network'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.613 1977 DEBUG neutron.policy [req-5b989daf-9c9c-4292-8dae-2cff675a6323 None] Enforcing rules: ['get_network:provider:network_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.614 1977 DEBUG neutron.policy [req-5b989daf-9c9c-4292-8dae-2cff675a6323 None] Enforcing rules: ['get_network:router:external'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.614 1977 DEBUG neutron.policy [req-5b989daf-9c9c-4292-8dae-2cff675a6323 None] Enforcing rules: ['get_network:provider:segmentation_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.615 1977 INFO neutron.wsgi [req-5b989daf-9c9c-4292-8dae-2cff675a6323 None] 172.22.14.17 - - [29/Jun/2015 23:59:21] "GET /v2.0/networks.json?id=3446e54b-346f-45e5-89a2-1ec4eef251ab HTTP/1.1" 200 569 0.022670 2015-06-29 23:59:21.619 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50369) 2015-06-29 23:59:21.620 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:21.620 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:21.621 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:21.621 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:21.622 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 4ca014810f644b8c97e0ac3936f3f8de with project_id : 929c02470c45421e938947fdaa34fe39 and roles: admin _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:21.623 1977 DEBUG routes.middleware [req-8ad2c2dd-7c4a-4d0e-9f17-b4f75d0f25ca ] Matched GET /floatingips.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:21.623 1977 DEBUG routes.middleware [req-8ad2c2dd-7c4a-4d0e-9f17-b4f75d0f25ca ] Route path: '/floatingips.:(format)', defaults: {'action': u'index', 'controller': <wsgify at 140319639001488 wrapping <function resource at 0x7f9eb6331f50>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:21.624 1977 DEBUG routes.middleware [req-8ad2c2dd-7c4a-4d0e-9f17-b4f75d0f25ca ] Match dict: {'action': u'index', 'controller': <wsgify at 140319639001488 wrapping <function resource at 0x7f9eb6331f50>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:21.628 1977 INFO neutron.wsgi [req-8ad2c2dd-7c4a-4d0e-9f17-b4f75d0f25ca None] 172.22.14.17 - - [29/Jun/2015 23:59:21] "GET /v2.0/floatingips.json?fixed_ip_address=172.22.18.2&port_id=578453f3-e3f2-4eb7-beae-e38c15aa0bb8 HTTP/1.1" 200 208 0.007769 2015-06-29 23:59:21.631 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50370) 2015-06-29 23:59:21.632 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:21.633 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:21.633 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:21.634 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:21.634 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 4ca014810f644b8c97e0ac3936f3f8de with project_id : 929c02470c45421e938947fdaa34fe39 and roles: admin _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:21.635 1977 DEBUG routes.middleware [req-187eb2b2-94fe-48f8-a6f9-432714f56c53 ] No route matched for GET /subnets.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:21.636 1977 DEBUG routes.middleware [req-187eb2b2-94fe-48f8-a6f9-432714f56c53 ] Matched GET /subnets.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:21.636 1977 DEBUG routes.middleware [req-187eb2b2-94fe-48f8-a6f9-432714f56c53 ] Route path: '/subnets{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640390800 wrapping <function resource at 0x7f9eb6331938>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:21.636 1977 DEBUG routes.middleware [req-187eb2b2-94fe-48f8-a6f9-432714f56c53 ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640390800 wrapping <function resource at 0x7f9eb6331938>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:21.646 1977 DEBUG neutron.policy [req-187eb2b2-94fe-48f8-a6f9-432714f56c53 None] Enforcing rules: ['get_subnet'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.648 1977 INFO neutron.wsgi [req-187eb2b2-94fe-48f8-a6f9-432714f56c53 None] 172.22.14.17 - - [29/Jun/2015 23:59:21] "GET /v2.0/subnets.json?id=2c79bb00-0ace-4319-8151-81210ee3dfb2 HTTP/1.1" 200 633 0.015307 2015-06-29 23:59:21.652 1977 INFO neutron.wsgi [-] (1977) accepted ('172.22.14.17', 50371) 2015-06-29 23:59:21.652 1977 DEBUG keystonemiddleware.auth_token [-] Authenticating user token __call__ /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:650 2015-06-29 23:59:21.653 1977 DEBUG keystonemiddleware.auth_token [-] Removing headers from request environment: X-Identity-Status,X-Domain-Id,X-Domain-Name,X-Project-Id,X-Project-Name,X-Project-Domain-Id,X-Project-Domain-Name,X-User-Id,X-User-Name,X-User-Domain-Id,X-User-Domain-Name,X-Roles,X-Service-Catalog,X-User,X-Tenant-Id,X-Tenant-Name,X-Tenant,X-Role _remove_auth_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:707 2015-06-29 23:59:21.654 1977 DEBUG keystonemiddleware.auth_token [-] Returning cached token _cache_get /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1520 2015-06-29 23:59:21.654 1977 DEBUG keystonemiddleware.auth_token [-] Storing token in cache store /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:1435 2015-06-29 23:59:21.655 1977 DEBUG keystonemiddleware.auth_token [-] Received request from user: 4ca014810f644b8c97e0ac3936f3f8de with project_id : 929c02470c45421e938947fdaa34fe39 and roles: admin _build_user_headers /usr/lib/python2.7/dist-packages/keystonemiddleware/auth_token.py:971 2015-06-29 23:59:21.655 1977 DEBUG routes.middleware [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd ] No route matched for GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:97 2015-06-29 23:59:21.656 1977 DEBUG routes.middleware [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd ] Matched GET /ports.json __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:100 2015-06-29 23:59:21.656 1977 DEBUG routes.middleware [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd ] Route path: '/ports{.format}', defaults: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:102 2015-06-29 23:59:21.657 1977 DEBUG routes.middleware [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd ] Match dict: {'action': u'index', 'controller': <wsgify at 140319640443088 wrapping <function resource at 0x7f9eb6331aa0>>, 'format': u'json'} __call__ /usr/lib/python2.7/dist-packages/routes/middleware.py:103 2015-06-29 23:59:21.674 1977 DEBUG neutron.policy [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd None] Enforcing rules: ['get_port'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.675 1977 DEBUG neutron.policy [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd None] Enforcing rules: ['get_port:binding:host_id'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.675 1977 DEBUG neutron.policy [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd None] Enforcing rules: ['get_port:binding:profile'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.676 1977 DEBUG neutron.policy [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd None] Enforcing rules: ['get_port:binding:vif_details'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.676 1977 DEBUG neutron.policy [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd None] Enforcing rules: ['get_port:binding:vif_type'] _build_match_rule /usr/lib/python2.7/dist-packages/neutron/policy.py:221 2015-06-29 23:59:21.677 1977 INFO neutron.wsgi [req-60ab98f0-dd4d-4463-ba17-c6e2f26b8fcd None] 172.22.14.17 - - [29/Jun/2015 23:59:21] "GET /v2.0/ports.json?network_id=3446e54b-346f-45e5-89a2-1ec4eef251ab&device_owner=network%3Adhcp HTTP/1.1" 200 927 0.024668 2015-06-29 23:59:22.696 1977 DEBUG neutron.context [req-1a3a23ed-f47b-40dd-b423-15f7d8dfa472 None] Arguments dropped when creating context: {u'project_name': None, u'tenant': None} __init__ /usr/lib/python2.7/dist-packages/neutron/context.py:83
_______________________________________________ Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack Post to : openstack@lists.openstack.org Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack