Wednesday, 2014-04-16

*** BuSerD has joined #openstack-neutron00:00
*** ChanServ changes topic to "Discussion of OpenStack Networking || for support join #openstack"00:02
*** tchaypo has joined #openstack-neutron00:02
*** thuc_ has quit IRC00:03
*** thuc has joined #openstack-neutron00:04
*** gdubreui has joined #openstack-neutron00:06
Hiteshkevinbenton: it didn't work though00:08
*** thuc has quit IRC00:08
kevinbentonHitesh: what is the error?00:08
Hiteshkevinbenton: ./neutron/plugins/vmware/shell/commands.py:18:1: H302  import only modules.'from neutronclient.neutron.v2_0 as nc' does not import a module from neutronclient.neutron.v2_0 as nc00:09
kevinbentonHitesh: from neutronclient.neutron import v2_0 as nc00:10
Hiteshkevinbenton: yes I did the same00:10
Hiteshkevinbenton: let me try00:10
Hiteshkevinbenton: once again00:10
Hiteshkevinbenton: it was typo error from my side, it worked00:16
Hiteshkevinbenton: but it introduce new warning00:16
Hiteshkevinbenton: ./neutron/plugins/vmware/shell/commands.py:44:80: E501 line too long (82 > 79 characters)         net_id = nc.find_resourceid_by_name_or_id(self.app.client, 'network', net)00:16
kevinbentonHitesh: yeah, that’s something you will have to fix as well in those cases…00:16
Hiteshkevinbenton: in such case, we need to reduce the function name for find_resourceid_by_name_or_id00:17
kevinbentonHitesh: no, just wordwrap that long line00:17
kevinbentonnet_id = nc.find_resourceid_by_name_or_id(self.app.client, 'network',00:17
Hiteshkevinbenton: I see00:17
*** padkrish has left #openstack-neutron00:17
kevinbenton                                                                       net)00:18
kevinbentonHitesh: I missed, but “net)” would line up with one char after the open parens from above00:18
Hiteshkevinbenton: however, on VM00:18
Hiteshkevinbenton: sorry on vim00:18
*** SumitNaiksatam has quit IRC00:23
Hiteshkevinbenton: what's ur default vim tab space for our code?00:25
Hiteshkevinbenton: is it 4?00:25
kevinbentonHitesh: yeah, 400:26
Hiteshkevinbenton: I see00:26
*** _cjones_ has quit IRC00:29
*** matsuhashi has joined #openstack-neutron00:30
*** carl_baldwin has quit IRC00:31
*** dvorkinista has quit IRC00:32
openstackgerritA change was merged to openstack/neutron: Add support for multiple RPC workers under Metaplugin  https://review.openstack.org/8491400:36
*** yongli has joined #openstack-neutron00:36
*** rms_13 has quit IRC00:38
*** redondos has quit IRC00:40
*** redondos has joined #openstack-neutron00:41
*** tomoe has joined #openstack-neutron00:45
*** tchaypo has left #openstack-neutron00:47
*** zhipeng has joined #openstack-neutron00:53
*** baoli has joined #openstack-neutron00:53
*** gdubreui has quit IRC00:56
*** thuc_ has joined #openstack-neutron01:05
*** gdubreui has joined #openstack-neutron01:09
*** BuSerD has quit IRC01:14
*** nati_uen_ has quit IRC01:20
*** BuSerD has joined #openstack-neutron01:25
Hiteshkevinbenton: ping01:26
Hiteshkevinbenton: I changes the code in a couple of files for 30201:26
Hiteshkevinbenton: now I am creating review..01:26
*** gdubreui has quit IRC01:28
*** marun has quit IRC01:29
*** thuc has joined #openstack-neutron01:29
kevinbentonHitesh: ok01:29
kevinbentonHitesh: so have you created a bug or blueprint that says H302 should be enabled?01:30
Hiteshkevinbenton: not yet01:30
kevinbentonHitesh: or does one exist? you need something to reference in the commit01:30
Hiteshkevinbenton: yes01:30
Hiteshkevinbenton: it exists01:30
Hiteshkevinbenton: https://bugs.launchpad.net/neutron/+bug/129103201:30
Hiteshkevinbenton: would you like to help me generate review code patch?01:31
Hiteshkevinbenton: even though after reading gerrit review01:31
Hiteshkevinbenton: still I am confused where to start01:31
*** thuc_ has quit IRC01:32
kevinbentonHitesh: so you will want to run git commit -a01:33
kevinbentonHitesh: when the window pops up, you will fill in the message01:33
*** thuc has quit IRC01:33
Hiteshkevinbenton: let me try01:34
kevinbentonHitesh: follow the “for example” message on the workflow page to see how it should be formed01:34
kevinbentonHitesh: https://wiki.openstack.org/wiki/Gerrit_Workflow01:34
kevinbentonHitesh: you will leave out the “Implements:” line since you aren’t implementing a blueprint01:34
Hiteshkevinbenton:    Partial-Bug: #1291032    Into the commit message.01:38
Hiteshkevinbenton: I am including this01:38
*** amcrn has quit IRC01:39
*** zhipeng has quit IRC01:39
kevinbentonHitesh: that looks good, make sure you don’t commit the updated tox.ini since it’s not done yet01:39
Hiteshkevinbenton: I need to remove # and add those comments right?01:39
*** matsuhashi has quit IRC01:40
kevinbentonHitesh: the # stuff at the bottom of the commit message is alreay commented out by default01:40
kevinbentonHitesh: like the stuff telling you what branch you’re on01:41
*** xuhanp has joined #openstack-neutron01:41
Hiteshkevinbenton: hitesh@ubuntu:~/REDHAT/neutron$ git commit -a [master 8b1e98a]    Partial-Bug: #1291032    Into the commit message.  10 files changed, 38 insertions(+), 29 deletions(-)01:41
Hiteshkevinbenton: I got this message01:41
*** zhipeng has joined #openstack-neutron01:41
kevinbentonrun git log and paste the top commit into paste.openstack.org01:42
Hiteshkevinbenton: where should I see the review page?01:42
kevinbentonHitesh: it won’t be uploaded to gerrit until you run git review01:42
Hiteshkevinbenton: I see01:43
*** Longgeek has joined #openstack-neutron01:43
*** matsuhas_ has joined #openstack-neutron01:43
Hiteshkevinbenton: Errors running git rebase -i remotes/gerrit/master Cannot rebase: You have unstaged changes. Please commit or stash them.01:43
kevinbentonHitesh: what does git status show?01:44
Hiteshkevinbenton: when I run git review01:44
Hiteshkevinbenton: it showned that message01:44
Hiteshkevinbenton: do I need to run  git rebase -i master01:45
kevinbentonno01:47
kevinbentonwhat does git status show01:47
kevinbentonput the output in paste.openstack.org01:47
Hiteshkevinbenton: # On branch master # Your branch is ahead of 'origin/master' by 1 commit. #   (use "git push" to publish your local commits) # # Changes not staged for commit: #   (use "git add <file>..." to update what will be committed) #   (use "git checkout -- <file>..." to discard changes in working directory) # #       modified:   tox.ini #01:48
Hiteshkevinbenton: this is after git status01:48
kevinbentonrun git checkout -- tox.ini01:51
Hiteshok01:52
*** carlp has quit IRC01:52
*** gdubreui has joined #openstack-neutron01:53
kevinbentonto throw away your changes to it01:53
kevinbentonthen run git review01:53
kevinbentonHitesh: ^^01:54
Hiteshkevinbenton: yes01:54
Hiteshkevinbenton: it seems it went ahead01:54
Hiteshkevinbenton: asked a coule of time paraphrase01:54
Hiteshkevinbenton: but my agreement was expired01:54
Hiteshkevinbenton: :(01:54
kevinbentonHitesh: time to renew then! call up your lawyer. :-)01:55
*** suresh12 has quit IRC01:55
Hiteshkevinbenton: ha ha01:56
Hiteshkevinbenton: right now I will do for individual01:56
*** rms_13 has joined #openstack-neutron01:57
openstackgerritstephen-ma proposed a change to openstack/neutron: Delete DHCP port without DHCP server on a net node  https://review.openstack.org/5674001:58
*** tomoe_ has joined #openstack-neutron01:58
*** dvorkinista has joined #openstack-neutron01:58
rms_13mestery: ping01:58
mesteryrms_13: pong howdy!01:59
*** tomoe__ has joined #openstack-neutron01:59
rms_13mestery: hellos. I think the patchset is ready for you. SumitNaiksatam has done +2. Can you please take a look?02:00
mesteryrms_13: Link?02:00
rms_13https://review.openstack.org/#/c/84304/02:00
rms_13mestery: thanks02:01
mesteryrms_13: looking.02:01
*** tomoe__ has quit IRC02:01
*** tomoe__ has joined #openstack-neutron02:01
*** tomoe has quit IRC02:01
openstackgerrithitesh-wadekar proposed a change to openstack/neutron:    Partial-Bug: #1291032    Into the commit message.  https://review.openstack.org/8782402:02
mesteryrms_13: Looks good, just waiting on Jenkins now.02:02
*** tomoe_ has quit IRC02:02
openstackgerritXu Han Peng proposed a change to openstack/neutron: Validate IPv6 modes in API when IP version is 4  https://review.openstack.org/8743502:02
Hiteshkevinbenton: awesome Kevin02:02
Hiteshkevinbenton: https://review.openstack.org/#/c/87824/02:02
rms_13mestery: cool, thx02:03
Hiteshkevinbenton: finally, its in02:03
openstackgerritKevin Benton proposed a change to openstack/neutron-specs: Add spec for neutron-baremetal-compute blueprint  https://review.openstack.org/8782502:03
kevinbentonmestery: ^^02:04
mesterykevinbenton: Sweet!02:04
kevinbentonmestery: is that what a commit should look like for a blueprint?02:04
* mestery looks.02:04
kevinbentonmestery: at a high-level at least02:04
Hiteshkevinbenton: feel free to add comments02:05
Hiteshkevinbenton: upon review comments I will start to change other files too02:05
mesterykevinbenton: That's exactly right! I'll review that in detail tomorrow, but nice work!02:05
*** manishg has quit IRC02:06
*** mlavalle has quit IRC02:06
*** xianghui has joined #openstack-neutron02:06
kevinbentonmestery: ok, i wasn’t sure if i needed to reference anything in the commit. maybe we need to require a blueprint for the blueprint... :P02:06
mesterykevinbenton: :P02:07
kevinbentonmestery: typo on this page02:07
kevinbentonmestery: https://wiki.openstack.org/wiki/Blueprints#Neutron02:07
kevinbentonmestery: ctrl-F “corruptly"02:07
mesterykevinbenton: I saw that too! Correcting it now in both places. :)02:07
kevinbentonmestery: ok, thanks for looking02:08
kevinbentonHitesh: ok, so in the add review box on the gerrit page, type in kevin benton and add me02:09
kevinbentonHitesh: I will check it out later. I’m leaving the office now02:09
Hiteshkevinbenton: sure, I really appreciate your help02:09
Hiteshkevinbenton: I will work with you once I done this assigenemtn02:09
Hiteshkevinbenton: probably I will head to fix some other bugs or implementing blue print02:10
HenryGIs there some way to get gerrit to render .rst files in the browser like github does?02:10
kevinbentonHitesh: no prob02:12
Hiteshkevinbenton: thanks kevin02:12
*** thuc has joined #openstack-neutron02:12
Hiteshkevinbenton: good night02:12
Hiteshmestery: Hi02:12
kevinbentonHenryG, mestery: I wonder if jenkins could at least autobuild the .rst file so it’s available in Jenkins02:12
*** alexpilotti has quit IRC02:13
Hiteshmestery: thanks for your comments :)02:16
*** GonZo2000 has quit IRC02:16
Hiteshmestery: could you please explain me in details so that I will proceed ahead to change those02:16
Hitesharosen1: Hi02:18
Hitesharosen1: https://review.openstack.org/#/c/87824/02:18
Hitesharyan: could you please provide your review comment on it?02:18
Hitesharosen1: :)02:18
Hitesharosen1: in your free time :)02:18
*** sbalukoff has quit IRC02:19
*** rms_13 has quit IRC02:19
*** ale has quit IRC02:22
*** ale has joined #openstack-neutron02:24
*** ale has quit IRC02:25
*** Hitesh has quit IRC02:33
*** coolsvap|afk is now known as coolsvap02:35
*** harlowja is now known as harlowja_away02:35
*** Longgeek has quit IRC02:44
*** Longgeek has joined #openstack-neutron02:44
*** Longgeek has quit IRC02:45
*** tomoe has joined #openstack-neutron02:46
*** tomoe__ has quit IRC02:49
*** matsuhas_ has quit IRC02:49
*** rms_13 has joined #openstack-neutron02:49
*** matsuhashi has joined #openstack-neutron02:49
HenryGkevinbenton: I have a quick-n-dirty idea for rendering the specs in html02:51
*** matsuhas_ has joined #openstack-neutron02:52
*** matsuhashi has quit IRC02:52
*** Longgeek has joined #openstack-neutron02:53
openstackgerritHenry Gessau proposed a change to openstack/neutron-specs: Add tox option to generate HTML pages of specs  https://review.openstack.org/8783402:54
HenryGkevinbenton: ^^^02:54
kevinbentonHenryG: oh, if you just run tox locally, it will already make the html for you02:55
kevinbentonHenryG: I was suggesting that it be added to the gate check job so people can click on the logs and browse the html from there02:55
HenryGkevinbenton: oh? how?02:55
*** blogan has quit IRC02:55
HenryGOr should I say, where?02:55
kevinbentonHenryG: i think it lands in the doc folder02:56
kevinbentonHenryG: on a different comp now02:56
HenryGkevinbenton: ok, under doc/build/html02:57
*** matsuhas_ has quit IRC02:58
*** tomoe has quit IRC03:00
*** tomoe has joined #openstack-neutron03:01
kevinbentonHenryG: yeah, it would be nice to make that available to reviewers somehow03:02
HenryGkevinbenton: so finally I understand some of what build_sphinx does, thanks03:02
*** ale has joined #openstack-neutron03:03
HenryGkevinbenton: It's not too bad. 'git review -d NNNNN' pulls down the review. Then run tox and open doc/build/html/index.html in the browser.03:04
HenryGkevinbenton: but let me guess, you are lazy like me and want a one-click solution :)03:05
kevinbentonHenryG: the ‘running tox’ part was a problem on OSX03:05
kevinbentonHenryG: have to have a dev machine just to view the pretty format :-)03:05
*** suresh12 has joined #openstack-neutron03:06
HenryGkevinbenton: install virtualbox, create an ubuntu VM and do all you development there. No extra machine needed.03:07
*** carl_baldwin has joined #openstack-neutron03:07
*** sweston is now known as sweston|away03:09
*** sweston|away is now known as sweston03:09
*** suresh12 has quit IRC03:11
rms_13mestery: we are good to go on https://review.openstack.org/#/c/84304/03:12
kevinbentonHenryG: oh, i have that. just means i have to start it up if it’s not running and reclone the review there… :-)03:12
*** ale has quit IRC03:13
*** thuc has quit IRC03:16
*** thuc has joined #openstack-neutron03:17
*** dvorkinista has quit IRC03:18
*** carl_baldwin has quit IRC03:18
*** thuc has quit IRC03:21
*** ramishra has joined #openstack-neutron03:23
*** ale has joined #openstack-neutron03:29
*** Sukhdev has joined #openstack-neutron03:30
*** jecarey has quit IRC03:32
*** SumitNaiksatam has joined #openstack-neutron03:33
*** zhipeng has quit IRC03:33
*** yamamoto_ has joined #openstack-neutron03:35
*** manishg has joined #openstack-neutron03:38
*** manishg_ has joined #openstack-neutron03:43
*** manishg has quit IRC03:43
*** rms_13 has quit IRC03:44
openstackgerritAaron Rosen proposed a change to openstack/neutron: Who's CI is lying! :)  https://review.openstack.org/7530403:45
*** YorikSar has quit IRC03:45
*** BuSerD has quit IRC03:46
*** rms_13 has joined #openstack-neutron03:48
*** manishg_ has quit IRC03:49
*** YorikSar has joined #openstack-neutron03:50
openstackgerritshihanzhang proposed a change to openstack/neutron: Fix the problem of updating quoata  https://review.openstack.org/8784104:04
*** Longgeek has quit IRC04:06
*** sweston is now known as sweston|away04:09
*** thuc has joined #openstack-neutron04:12
*** pradipta` is now known as pradipta04:19
*** YorikSar has quit IRC04:21
*** yfried__ has quit IRC04:21
*** manishg has joined #openstack-neutron04:21
*** sbfox has joined #openstack-neutron04:23
*** YorikSar has joined #openstack-neutron04:25
*** manishg has quit IRC04:26
*** saju_m has joined #openstack-neutron04:27
*** saju_m has quit IRC04:27
*** Longgeek has joined #openstack-neutron04:28
*** manishg has joined #openstack-neutron04:30
*** manishg_ has joined #openstack-neutron04:30
*** sweston|away is now known as sweston04:30
*** manishg has quit IRC04:34
*** manishg__ has joined #openstack-neutron04:34
*** manishg has joined #openstack-neutron04:35
*** coolsvap is now known as coolsvap|afk04:35
*** manishg_ has quit IRC04:38
*** YorikSar has quit IRC04:39
*** sbfox has quit IRC04:41
*** manishg has quit IRC04:41
*** YorikSar has joined #openstack-neutron04:43
*** Longgeek has quit IRC04:49
*** coolsvap|afk is now known as coolsvap04:52
*** changbl has quit IRC04:53
*** yfried__ has joined #openstack-neutron04:54
*** YorikSar has quit IRC04:55
*** suresh12 has joined #openstack-neutron04:56
*** Sukhdev has quit IRC04:57
*** sunrenjie6 has joined #openstack-neutron04:57
*** YorikSar has joined #openstack-neutron04:58
*** manishg__ has quit IRC05:11
*** changbl has joined #openstack-neutron05:12
mmmuckyis it normal for instance DHCP requests to 'escape' leak into multiple VLANs? (Havana/Neutron/OpenvSwitch/VLAN)05:14
mmmuckyIt seems odd that this request is seen on multiple VLANs: http://pastebin.com/jPEm4Gqp05:15
*** thuc has quit IRC05:15
*** thuc has joined #openstack-neutron05:16
openstackgerritLi Ma proposed a change to openstack/neutron: Race condition of L3-agent to add/remove routers  https://review.openstack.org/7323405:18
openstackgerritA change was merged to openstack/neutron: Nuage Plugin: Delete router requires precommit checks  https://review.openstack.org/8430405:20
openstackgerritA change was merged to openstack/neutron: Improved quota error message  https://review.openstack.org/8037505:20
*** thuc has quit IRC05:20
*** morganfainberg is now known as morganfainberg_Z05:20
*** YorikSar has quit IRC05:21
*** tomoe has quit IRC05:21
*** tomoe has joined #openstack-neutron05:22
*** YorikSar has joined #openstack-neutron05:24
*** tomoe has quit IRC05:26
*** sweston has quit IRC05:28
*** Longgeek has joined #openstack-neutron05:29
*** chandan_kumar has joined #openstack-neutron05:31
*** rms_13 has quit IRC05:33
*** YorikSar has quit IRC05:37
*** hrzbrg has joined #openstack-neutron05:37
*** pradipta is now known as pradipta_away05:40
*** YorikSar has joined #openstack-neutron05:46
*** tomoe has joined #openstack-neutron05:49
*** bashok has joined #openstack-neutron05:50
*** HenryG_ has joined #openstack-neutron05:54
*** hrzbrg has quit IRC05:55
*** evgenyf has joined #openstack-neutron05:55
*** sweston has joined #openstack-neutron05:56
*** HenryG has quit IRC05:57
*** sdague has quit IRC05:58
*** Longgeek_ has joined #openstack-neutron06:00
*** YorikSar has quit IRC06:01
*** dvorkinista has joined #openstack-neutron06:01
*** Longgeek_ has quit IRC06:01
*** Longgeek has quit IRC06:02
*** pradipta_away is now known as pradipta06:03
*** YorikSar has joined #openstack-neutron06:04
*** sdague has joined #openstack-neutron06:05
*** ale has quit IRC06:05
*** alagalah has quit IRC06:07
*** ale has joined #openstack-neutron06:10
*** YorikSar has quit IRC06:11
*** ale has quit IRC06:14
openstackgerritA change was merged to openstack/neutron: Fixes Hyper-V agent security groups disabling  https://review.openstack.org/8422706:15
*** safchain has joined #openstack-neutron06:15
*** YorikSar has joined #openstack-neutron06:16
*** dgollub has joined #openstack-neutron06:21
*** Longgeek has joined #openstack-neutron06:23
*** doude has joined #openstack-neutron06:25
*** thuc has joined #openstack-neutron06:26
*** ale has joined #openstack-neutron06:27
*** ale___ has joined #openstack-neutron06:29
*** ale has quit IRC06:29
*** dgollub has quit IRC06:29
*** hrzbrg has joined #openstack-neutron06:29
*** thuc has quit IRC06:31
*** YorikSar has quit IRC06:34
*** rotbeard has joined #openstack-neutron06:35
*** YorikSar has joined #openstack-neutron06:37
*** pradipta is now known as pradipta_away06:38
*** dgollub has joined #openstack-neutron06:38
hrzbrgarg slept thru the v6 meeting yesterday06:41
*** dvorkinista has quit IRC06:45
*** Longgeek has quit IRC06:46
*** hrzbrg has quit IRC06:53
*** suresh12 has quit IRC06:53
*** tomoe has quit IRC06:59
*** tomoe has joined #openstack-neutron06:59
*** chandan_kumar has quit IRC07:02
*** oda-g has quit IRC07:03
*** tomoe has quit IRC07:04
*** Longgeek has joined #openstack-neutron07:04
*** yfried__ has quit IRC07:06
*** chandan_kumar has joined #openstack-neutron07:08
*** tomoe has joined #openstack-neutron07:10
openstackgerritAnn Kamyshnikova proposed a change to openstack/neutron: Test  https://review.openstack.org/8754307:10
*** gdubreui has quit IRC07:11
*** Longgeek has quit IRC07:12
*** xianghui_ has joined #openstack-neutron07:13
*** xianghui has quit IRC07:13
openstackgerritshihanzhang proposed a change to openstack/neutron: Fix the problem of updating quoata  https://review.openstack.org/8784107:22
*** hrzbrg has joined #openstack-neutron07:26
*** matrohon has joined #openstack-neutron07:36
*** tchaypo has joined #openstack-neutron07:36
*** leseb has joined #openstack-neutron07:42
*** Longgeek has joined #openstack-neutron07:43
*** Longgeek has quit IRC07:47
*** ale___ has quit IRC07:48
*** ygbo has joined #openstack-neutron07:49
*** jistr has joined #openstack-neutron07:52
*** circ-user-BJlFc has joined #openstack-neutron07:52
*** circ-user-BJlFc has quit IRC07:58
*** doude has quit IRC07:58
*** doude has joined #openstack-neutron07:59
*** doude has quit IRC08:00
*** doude has joined #openstack-neutron08:01
*** ale___ has joined #openstack-neutron08:01
*** WingWu has joined #openstack-neutron08:02
*** suresh12 has joined #openstack-neutron08:03
*** jpich has joined #openstack-neutron08:04
*** suresh12 has quit IRC08:08
*** ihrachyshka has joined #openstack-neutron08:09
*** ale___ has quit IRC08:13
openstackgerritAnn Kamyshnikova proposed a change to openstack/neutron: Remove migration that breaks Grenage jobs  https://review.openstack.org/8754308:15
*** jgallard has joined #openstack-neutron08:24
*** jgallard has quit IRC08:28
*** jgallard has joined #openstack-neutron08:28
openstackgerritshihanzhang proposed a change to openstack/neutron: Fix the problem of updating quoata  https://review.openstack.org/8784108:32
*** pradipta_away is now known as pradipta08:35
ajommmucky, you're right, something wrong there08:43
*** Longgeek has joined #openstack-neutron08:44
ajowhat's your environment?, where were you tapping?08:44
ajo(talking about: http://pastebin.com/jPEm4Gqp  )08:44
*** sbfox has joined #openstack-neutron08:44
*** Longgeek has quit IRC08:48
openstackgerritCedric Brandily proposed a change to openstack/neutron: Use patch ports to interconnect integration/physical bridges  https://review.openstack.org/7668508:49
*** sweston is now known as sweston|away08:58
*** tomoe has quit IRC09:04
openstackgerritA change was merged to openstack/neutron: Security Group rule validation for ICMP rules  https://review.openstack.org/8502609:04
*** tomoe has joined #openstack-neutron09:04
*** chandan_kumar has quit IRC09:06
*** ramishra has quit IRC09:06
*** ramishra has joined #openstack-neutron09:07
*** ramishra has quit IRC09:08
*** tomoe has quit IRC09:09
*** overlayer has joined #openstack-neutron09:13
*** alexpilotti has joined #openstack-neutron09:16
openstackgerritKoert van der Veer proposed a change to openstack/neutron: Fix uninitialized variable reference  https://review.openstack.org/8788009:19
*** chandan_kumar has joined #openstack-neutron09:19
*** dgollub has quit IRC09:25
*** chandan_kumar has quit IRC09:26
*** chandan_kumar has joined #openstack-neutron09:26
*** redondos has quit IRC09:41
*** redondos has joined #openstack-neutron09:42
*** Longgeek has joined #openstack-neutron09:51
*** jgallard has quit IRC09:58
*** evgenyf has quit IRC10:04
*** pcm_ has joined #openstack-neutron10:08
*** pcm__ has joined #openstack-neutron10:11
*** pcm_ has quit IRC10:15
openstackgerritshihanzhang proposed a change to openstack/neutron: Fix the problem of updating quoata  https://review.openstack.org/8784110:15
*** evgenyf has joined #openstack-neutron10:20
*** Longgeek has quit IRC10:27
*** Longgeek has joined #openstack-neutron10:28
*** dgollub has joined #openstack-neutron10:31
*** sbfox has quit IRC10:32
*** xuhanp has quit IRC10:33
*** sbfox has joined #openstack-neutron10:33
*** mestery_ has joined #openstack-neutron10:33
*** mestery has quit IRC10:36
*** sunrenjie6 has quit IRC10:37
*** Longgeek has quit IRC10:44
*** overlayer has quit IRC10:46
*** ihrachyshka has quit IRC10:46
*** yamamoto_ has left #openstack-neutron10:51
*** stefanb_ has joined #openstack-neutron11:07
*** xianghui_ has quit IRC11:07
*** stefanb has quit IRC11:09
*** stefanb_ is now known as stefanb11:09
*** WingWu has quit IRC11:10
*** baoli has quit IRC11:12
*** gdubreui has joined #openstack-neutron11:13
*** Longgeek has joined #openstack-neutron11:15
*** coolsvap is now known as coolsvap|afk11:15
*** ihrachyshka has joined #openstack-neutron11:16
openstackgerritAnn Kamyshnikova proposed a change to openstack/neutron: Test  https://review.openstack.org/8793511:17
*** Longgeek has quit IRC11:19
*** yamamoto has joined #openstack-neutron11:21
*** yamamoto has left #openstack-neutron11:21
openstackgerritZang MingJie proposed a change to openstack/neutron: Ensure host_routes order in subnet  https://review.openstack.org/7894611:32
*** Longgeek has joined #openstack-neutron11:35
*** ihrachyshka has quit IRC11:35
openstackgerritRoman Podoliaka proposed a change to openstack/neutron: Fix issubclass() hook behavior in PluginInterface  https://review.openstack.org/8794311:45
openstackgerritAnn Kamyshnikova proposed a change to openstack/neutron: Test  https://review.openstack.org/8793511:48
*** sbfox1 has joined #openstack-neutron11:48
*** sbfox has quit IRC11:48
*** baoli has joined #openstack-neutron11:54
*** ihrachyshka has joined #openstack-neutron11:57
*** ihrachyshka has quit IRC11:59
*** ihrachyshka has joined #openstack-neutron11:59
openstackgerritPaul Michali proposed a change to openstack/neutron: Support enhancements to Cisco CSR VPN REST APIs  https://review.openstack.org/8612912:08
*** pradipta is now known as pradipta_away12:14
*** alexpilotti has quit IRC12:15
*** gdubreui has quit IRC12:19
*** gdubreui has joined #openstack-neutron12:19
*** tomoe has joined #openstack-neutron12:20
*** evgenyf has quit IRC12:23
*** sbfox1 has quit IRC12:27
*** foexle has joined #openstack-neutron12:31
openstackgerritZang MingJie proposed a change to openstack/neutron: Ensure host_routes order in subnet  https://review.openstack.org/7894612:32
*** jt-rook has joined #openstack-neutron12:32
foexleheyho guys, is there any possibility to add a ovs port with an interface to talk with a tenant ? I mean i've some vms in a tenant network and i'm trying to add bare metal host with a physical device to talk with them12:34
foexlei'm search since days but without success ... i've tryied some options with an extra bridge and pathing tu the br-int (sry is all gre tunneling)12:35
foexlecould anyone give me a hint ?12:35
EmilienMfoexle: provider networks?12:35
EmilienMfoexle: http://docs.openstack.org/grizzly/openstack-network/admin/content/provider_networks.html12:36
EmilienMthe doc is for grizzly, but works for Havana & Icehouse12:36
*** overlayer has joined #openstack-neutron12:39
foexleEmilienM: so you mean i should create a complete new network for these hosts and add a route from my tenant (vm) network to them?12:40
*** evilstephen has joined #openstack-neutron12:42
*** HenryG_ has quit IRC12:44
*** lromagnoli has joined #openstack-neutron12:49
*** thuc has joined #openstack-neutron12:51
*** ihrachyshka has quit IRC12:51
*** thuc_ has joined #openstack-neutron12:51
*** thuc__ has joined #openstack-neutron12:53
*** sbfox has joined #openstack-neutron12:53
*** thuc has quit IRC12:55
*** thuc_ has quit IRC12:56
*** mflobo has joined #openstack-neutron12:57
*** mflobo has quit IRC13:03
*** erecio has quit IRC13:08
*** HenryG has joined #openstack-neutron13:08
HenryGakamyshnikova: ping13:09
akamyshnikovaHenryG, I'm here13:09
HenryGakamyshnikova: I notice from your reviews you are testing postgresql compatibility13:10
*** ihrachyshka has joined #openstack-neutron13:10
HenryGakamyshnikova: Can you check https://review.openstack.org/86494 ?13:10
*** sbfox has quit IRC13:11
*** jgrimm has joined #openstack-neutron13:12
akamyshnikovaHenryG, I'll take a look at it a bit later may be tomorrow, if this is ok?13:13
HenryGakamyshnikova: sure, no rush at all, it is a very low priority change. Thanks!13:14
*** alexpilotti has joined #openstack-neutron13:14
*** erecio has joined #openstack-neutron13:14
*** ihrachyshka has quit IRC13:14
akamyshnikovaHenryG, you are welcome :)13:15
HenryGakamyshnikova: but I have another question, just a minute, I am looking for the bug ...13:15
*** evgenyf has joined #openstack-neutron13:21
*** mestery_ is now known as mestery13:22
HenryGakamyshnikova: This one, https://bugs.launchpad.net/neutron/+bug/130734413:23
HenryGakamyshnikova: Am I right that your solution with make https://review.openstack.org/84519 unnecessary?13:24
akamyshnikovaHenryG, I'm working on fixing it. What is the question?13:25
HenryGakamyshnikova: should I abandon https://review.openstack.org/84519 ?13:26
*** ramishra has joined #openstack-neutron13:27
akamyshnikovaHenryG, no, I don't think so.13:27
*** ihrachyshka has joined #openstack-neutron13:28
akamyshnikovaHenryG, problem in https://bugs.launchpad.net/neutron/+bug/1307344 is with metering and with my migration that broke Grenage.13:28
*** sweston|away is now known as sweston13:29
HenryGakamyshnikova: OK. I was unsure if you were planning to fix the entire migration idempotency issue that salv-orlando mentioned in his email.13:30
*** amotoki has quit IRC13:32
*** dims has quit IRC13:32
akamyshnikovaHenryG, if I'll do some extra work it will affect only service plugin migrations.13:32
akamyshnikovaHenryG, so no problem with your patch at this moment, as I suppose.13:33
HenryGakamyshnikova: thanks13:33
*** jecarey has joined #openstack-neutron13:35
*** blogan has joined #openstack-neutron13:43
*** ihrachyshka has quit IRC13:45
*** WackoRobie has joined #openstack-neutron13:46
*** blogan has quit IRC13:48
*** jgallard has joined #openstack-neutron13:49
*** thuc__ has quit IRC13:51
*** prad has joined #openstack-neutron13:51
*** xuhanp has joined #openstack-neutron13:51
*** thuc has joined #openstack-neutron13:51
*** jprovazn has joined #openstack-neutron13:53
*** thuc_ has joined #openstack-neutron13:53
*** sbfox has joined #openstack-neutron13:53
*** thuc has quit IRC13:56
*** blogan has joined #openstack-neutron14:00
*** otherwiseguy has joined #openstack-neutron14:01
*** hrzbrg has quit IRC14:01
*** sbfox has quit IRC14:01
*** thuc_ has quit IRC14:02
*** ihrachyshka has joined #openstack-neutron14:04
*** dvorkinista has joined #openstack-neutron14:04
*** WackoRobie has quit IRC14:07
*** rm_work|away is now known as rm_work14:09
*** otherwiseguy has quit IRC14:11
*** carlp has joined #openstack-neutron14:18
*** dims has joined #openstack-neutron14:18
*** mlavalle has joined #openstack-neutron14:21
*** evilstephen has quit IRC14:23
*** otherwiseguy has joined #openstack-neutron14:24
*** armax has joined #openstack-neutron14:26
*** overlayer has quit IRC14:29
HenryGakamyshnikova: in migrations and models, is there a difference between sa.Integer and sa.Integer() ?14:29
openstackgerritAnn Kamyshnikova proposed a change to openstack/neutron: Fix migration that breaks Grenade jobs  https://review.openstack.org/8793514:32
*** dvorkinista has quit IRC14:33
*** otherwiseguy has quit IRC14:33
*** dims has quit IRC14:34
*** evilstephen has joined #openstack-neutron14:35
akamyshnikovaHenryG, it is better to use sa.Integer as Integer doesn't expect any parameters.14:36
HenryGakamyshnikova: but sa.Integer is the class itself, while sa.Integer() is an instance of sa.Integer14:39
*** otherwiseguy has joined #openstack-neutron14:39
*** otherwiseguy has quit IRC14:39
*** rotbeard has quit IRC14:41
HenryGakamyshnikova: I am pretty sure we should be using instances, but it seems to somehow work with the class too14:43
*** samuelbercovici has joined #openstack-neutron14:43
openstackgerritHenry Gessau proposed a change to openstack/neutron: Cisco APIC ML2 mechanism driver, part 1  https://review.openstack.org/7335514:45
openstackgerritArvind Somya proposed a change to openstack/neutron: Cisco APIC ML2 mechanism driver, part 2  https://review.openstack.org/7337214:46
*** dims has joined #openstack-neutron14:47
*** mwagner_lap has quit IRC14:47
*** bashok has quit IRC14:48
akamyshnikovaHenryG, Sorry, I'm a bit overwhelmed with my work today.  Did this make some error somewhere?14:49
*** thedodd has joined #openstack-neutron14:50
*** coolsvap|afk is now known as coolsvap14:51
HenryGakamyshnikova: No error (as long as you don't give an argument to the instance). So no worries, it's not an urgent question, we can look into it when you have more time.14:51
HenryGakamyshnikova: I will stop pestering you with questions now. :)14:51
*** manishg has joined #openstack-neutron14:52
*** rotbeard has joined #openstack-neutron14:53
*** carl_baldwin has joined #openstack-neutron14:55
akamyshnikovaHenryG, I think I need to look through docs and neutron code to say something more definite, because I never pay attention to it before :)14:55
*** vthapar has joined #openstack-neutron14:56
*** samuelbercovici1 has joined #openstack-neutron14:58
*** samuelbercovici has quit IRC15:01
*** samuelbercovici1 is now known as samuelbercovici15:01
*** thuc has joined #openstack-neutron15:09
*** manishg has quit IRC15:10
*** gdubreui has quit IRC15:11
*** thuc_ has joined #openstack-neutron15:13
*** thuc_ has quit IRC15:13
*** jprovazn is now known as jprovazn_afk15:13
*** thuc_ has joined #openstack-neutron15:14
*** thuc has quit IRC15:14
*** jobewan has joined #openstack-neutron15:15
*** otherwiseguy has joined #openstack-neutron15:16
*** sbfox has joined #openstack-neutron15:17
*** otherwiseguy has quit IRC15:22
*** evgenyf has quit IRC15:23
*** clauded has joined #openstack-neutron15:26
*** clauded has left #openstack-neutron15:27
*** carlp has quit IRC15:28
openstackgerritRoman Podoliaka proposed a change to openstack/neutron: Fix issubclass() hook behavior in PluginInterface  https://review.openstack.org/8794315:29
*** Zhou_Yu has joined #openstack-neutron15:31
*** amotoki has joined #openstack-neutron15:32
*** yamamoto has joined #openstack-neutron15:32
*** otherwiseguy has joined #openstack-neutron15:32
*** jgallard has quit IRC15:36
*** pcm_ has joined #openstack-neutron15:37
*** Sukhdev has joined #openstack-neutron15:39
*** ramishra has quit IRC15:39
*** thuc has joined #openstack-neutron15:39
*** thuc_ has quit IRC15:39
*** ihrachyshka has quit IRC15:41
*** ihrachyshka has joined #openstack-neutron15:41
*** samuelbercovici has quit IRC15:43
*** networkstatic has joined #openstack-neutron15:44
*** kbringard has quit IRC15:45
*** chandan_kumar has quit IRC15:46
*** crc32 has joined #openstack-neutron15:47
*** TrevorV has joined #openstack-neutron15:47
*** dgollub has quit IRC15:50
*** mwagner_lap has joined #openstack-neutron15:51
*** _cjones_ has joined #openstack-neutron15:53
*** AndroUser2 has joined #openstack-neutron15:53
*** rcurran has joined #openstack-neutron15:56
*** thuc has quit IRC15:57
*** geekinutah has joined #openstack-neutron15:58
*** AndroUser2 has quit IRC15:58
*** thuc has joined #openstack-neutron15:58
*** pcm_ has quit IRC15:58
geekinutahsalv-orlando: asciiflow.com is kinda life-changing15:59
geekinutahI have needed this so many times :-)15:59
*** manishg has joined #openstack-neutron15:59
*** banix has joined #openstack-neutron16:00
*** marun has joined #openstack-neutron16:01
*** Longgeek has quit IRC16:02
*** thuc_ has joined #openstack-neutron16:02
*** thuc has quit IRC16:02
*** dvorkinista has joined #openstack-neutron16:03
mesterygeekinutah: 100% agree, thanks to sc68cal for sharing with me earlier! I've already used it a few times.16:04
*** ramishra has joined #openstack-neutron16:06
*** dvorkinista has quit IRC16:07
*** suresh12 has joined #openstack-neutron16:08
*** suresh12 has quit IRC16:10
*** sparky43786 has joined #openstack-neutron16:10
*** suresh12 has joined #openstack-neutron16:10
sparky43786anybody around to help with some guidence on setting up vlans16:10
*** suresh12 has quit IRC16:11
*** jgallard has joined #openstack-neutron16:11
*** suresh12 has joined #openstack-neutron16:12
sparky43786I just can't get the agents to setup the bridge_mappings and the vlan ports on the ovs bridge16:12
*** pcm_ has joined #openstack-neutron16:12
*** ygbo has quit IRC16:13
sparky43786The error I'm getting is net_uuid None not in local_vlan_map16:13
*** jlibosva has quit IRC16:15
openstackgerritMarios Andreou proposed a change to openstack/neutron: Validate CIDR given as ip-prefix in security-group-rule-create  https://review.openstack.org/5921216:16
marioscarl_baldwin: enikanorov_ : thanks for your comments, please see update @ ^^^16:16
*** ihrachyshka has quit IRC16:16
*** xuhanp has quit IRC16:23
carl_baldwinmarios: I'll have a look.  Thanks.16:23
marioscarl_baldwin: cheers16:24
*** sparky43786 has left #openstack-neutron16:24
* marios waves coffee cup16:24
*** jpich has quit IRC16:28
*** kincl has joined #openstack-neutron16:28
kinclQuestion, when using neutron with the OVS plugin and namespaces, where do security group rules get applied? To the router namespace?16:29
haleybkincl: using OVShybrid they are put on the compute node - there will be an extra linux bridge where the vm tap is plugged16:31
*** ramishra has quit IRC16:31
*** hrzbrg has joined #openstack-neutron16:32
*** sbfox has quit IRC16:32
*** sbfox has joined #openstack-neutron16:32
*** baoli has quit IRC16:35
*** baoli has joined #openstack-neutron16:36
openstackgerritRossella Sblendido proposed a change to openstack/neutron: Check if bridge exists and make sure it's UP in ensure_bridge  https://review.openstack.org/7630916:36
*** suresh12 has quit IRC16:39
*** suresh12 has joined #openstack-neutron16:42
arosen1marios: i had two nits for you here: https://review.openstack.org/#/c/59212/16:42
arosen1marios:  i'd love to get this patch in asap. I think neutron might need another rc to include that sadly. x.x16:43
*** tomoe has quit IRC16:43
mariosarosen1: thanks. not sure what you mean there though (its been a long day, brain is fried). "I think we should just use this method to validate that ethertype and ip are the same version"16:46
mariosarosen1: i've given up hope of this landing a long time ago, never mind for icehouse ;)16:47
arosen1marios:  why aren't you adding the cidr in the convert method here instead: https://review.openstack.org/#/c/59212/16/neutron/extensions/securitygroup.py16:47
arosen1marios:  sorry i hadn't noticed this patch and issue till now X.x16:47
mariosarosen1: see line 164 there, is that what you meant?16:47
arosen1marios:  if you change line 168 to :  return  str(netaddr.IPNetwork(input_prefix)) ?16:47
arosen1return  str(netaddr.IPNetwork(ip_prefix)) ?16:48
mariosright16:48
arosen1This way we do the convert the convert method in the api layer16:48
arosen1marios:  then in your method just check that ethertype and ip_version match. It sucks that the api validation framework can't handle validation across multiple fields like that so we need to do it outside of the api logic16:49
*** leseb has quit IRC16:50
*** harlowja_away is now known as harlowja16:51
mariosarosen1: so, do you mean that since I am checking in https://review.openstack.org/#/c/59212/16/neutron/extensions/securitygroup.py #168 that this is a valid IP prefix (netaddr.IPNetwork(ip_prefix)), I should just remove this conversion entirely from https://review.openstack.org/#/c/59212/16/neutron/db/securitygroups_db.py16:52
arosen1marios: It seems like you can do the check and conversion in neutron/extensions/securitygroup.py ?16:53
*** pcm_ has quit IRC16:53
arosen1This way we dont' neeed to do the conversion later in the db code16:53
mariosarosen1: but in neutron/extensions/securitygroup.py we validate _per attribute_ right? so i don't have the whole rule (to compare e.g. the ethertype etc)16:54
mariosarosen1: i mean, as invoked from RESOURCE_ATTRIBUTE_MAP16:55
arosen1marios:  ah i see what you mean. Yea no worries that's fine.16:56
marios:(16:56
arosen1marios:  i was thinking you could just change like 168 to : return  str(netaddr.IPNetwork(ip_prefix))16:56
arosen1marios:  but then in db/securitygroups_db.py you'd still need to do: netaddr.IPNetwork(input_prefex) to get the ethertype16:57
arosen1marios: +2 it's good no worries.16:57
*** amcrn has joined #openstack-neutron16:57
*** foexle has quit IRC16:58
mariosarosen1: thanks. its just getting really hard/frustrating to remember/justify/argue things that were done months ago. also, i'm new, so i have tended to take any review comments/-1 (especially from core) at face value so far16:58
mariosperhaps that's the lesson here ;)16:58
*** wendar has quit IRC16:59
arosen1marios:  no worries patch looks good to me. Nice work!16:59
*** ale has joined #openstack-neutron16:59
*** rcurran has quit IRC17:01
*** wendar has joined #openstack-neutron17:01
*** vthapar has quit IRC17:02
*** dvorkinista has joined #openstack-neutron17:02
*** vthapar has joined #openstack-neutron17:05
*** BillTheKat has joined #openstack-neutron17:07
*** jgallard has quit IRC17:09
*** safchain has quit IRC17:10
*** amcrn has quit IRC17:10
*** TrevorV has quit IRC17:14
*** rotbeard has quit IRC17:17
*** geekinutah is now known as zz_geekinutah17:17
*** Sukhdev has quit IRC17:21
*** amotoki has quit IRC17:23
hrzbrgbaoli, thanks for pushing your v6 changes to devstack.17:25
baolihrzbrg, my pleasure. hopefully it works for you17:26
*** zz_geekinutah is now known as geekinutah17:27
*** BillTheK_ has joined #openstack-neutron17:27
*** BillTheKat has quit IRC17:27
*** lromagnoli has quit IRC17:31
*** lromagnoli has joined #openstack-neutron17:32
*** blogan has quit IRC17:34
*** blogan_ has joined #openstack-neutron17:34
*** blogan_ has quit IRC17:34
*** lromagnoli has quit IRC17:36
*** Zhou_Yu has quit IRC17:40
*** geekinutah has quit IRC17:41
openstackgerritKyle Mestery proposed a change to openstack/neutron-specs: Note the usage of asciiflow.com for diagrams  https://review.openstack.org/8803717:42
*** TrevorV has joined #openstack-neutron17:44
*** amcrn has joined #openstack-neutron17:44
*** TrevorV1 has joined #openstack-neutron17:45
*** TrevorV1 has quit IRC17:45
*** thedodd has quit IRC17:53
*** markmcclain has joined #openstack-neutron17:54
*** markmcclain1 has joined #openstack-neutron17:56
*** baoli has quit IRC17:56
*** otherwiseguy has quit IRC17:56
*** baoli has joined #openstack-neutron17:57
*** yamamoto has quit IRC17:58
*** markmcclain has quit IRC17:59
*** jprovazn_afk is now known as jprovazn18:00
*** sbfox has quit IRC18:01
*** sbfox has joined #openstack-neutron18:03
*** vthapar_ has joined #openstack-neutron18:03
*** carlp has joined #openstack-neutron18:04
*** sbalukoff has joined #openstack-neutron18:05
*** doude has quit IRC18:05
*** vthapar has quit IRC18:06
*** vthapar_ is now known as vthapar18:06
*** ramishra has joined #openstack-neutron18:09
*** BuSerD has joined #openstack-neutron18:09
openstackgerritSean M. Collins proposed a change to openstack/neutron-specs: Add a blueprint for ipv6-provider-nets-slaac  https://review.openstack.org/8804318:09
*** lromagnoli has joined #openstack-neutron18:09
*** dgollub has joined #openstack-neutron18:10
*** BuSerD has quit IRC18:11
*** ramishra has quit IRC18:13
*** BuSerD has joined #openstack-neutron18:13
openstackgerritSean M. Collins proposed a change to openstack/neutron-specs: Add ipv6-provider-nets-slaac  https://review.openstack.org/8804318:14
*** thedodd has joined #openstack-neutron18:15
*** BuSerD has quit IRC18:18
*** jprovazn has quit IRC18:18
*** kbringard has joined #openstack-neutron18:18
*** kbringard has quit IRC18:18
*** BuSerD has joined #openstack-neutron18:21
*** jsoares has joined #openstack-neutron18:21
*** coolsvap is now known as coolsvap|afk18:26
*** morganfainberg_Z is now known as morganfainberg18:27
*** dgollub has quit IRC18:28
*** alagalah has joined #openstack-neutron18:29
*** leseb has joined #openstack-neutron18:31
openstackgerritAaron Rosen proposed a change to openstack/neutron: netaddr<=0.7.10 raises ValueError instead of AddrFormatError  https://review.openstack.org/8805218:37
*** vthapar has quit IRC18:40
*** vthapar has joined #openstack-neutron18:41
*** marun has quit IRC18:42
*** sweston has quit IRC18:43
*** jprovazn has joined #openstack-neutron18:47
*** ale has quit IRC18:48
*** ale has joined #openstack-neutron18:48
*** otherwiseguy has joined #openstack-neutron18:48
*** chandan_kumar has joined #openstack-neutron18:49
*** rand738 has quit IRC18:49
*** rand738 has joined #openstack-neutron18:51
*** jsoares has quit IRC18:51
*** russellb has quit IRC18:53
*** russellb has joined #openstack-neutron18:55
*** ale has quit IRC18:58
*** Hitesh has joined #openstack-neutron19:00
*** dgollub has joined #openstack-neutron19:00
*** ale has joined #openstack-neutron19:03
Hiteshkevinbenton: Hi Kevin19:06
*** ramishra has joined #openstack-neutron19:09
*** jlibosva has joined #openstack-neutron19:09
*** samuelbercovici has joined #openstack-neutron19:10
*** nati_ueno has joined #openstack-neutron19:10
*** martink2 has joined #openstack-neutron19:13
*** ramishra has quit IRC19:14
*** dvorkinista has quit IRC19:17
martink2I am trying to get neutron set up with ml2-openvswitch and provider networks, all the bridges are created ok but traffic on the l3 agent external interface is not having a vlan tag on it, which it should. Is that combination even supposed to work or does the l3 agent external interface require an untagged network ??19:17
*** dgollub has quit IRC19:20
rkukuramartink2: Are you using an external network bridge or a provider external network?19:20
*** nati_ueno has quit IRC19:20
*** yamahata_ has quit IRC19:21
*** nati_ueno has joined #openstack-neutron19:21
*** otherwiseguy has quit IRC19:22
martink2provider external network19:24
rkukuramartink2: If you are using an external network bridge (‘br-ex’ by default), the provider details (like VLAN tag) of the external network are ignored. Try setting “external_network_bridge =“ in l3_agent.ini to overrride the default.19:25
martink2i set external_network_bridge = in l3agent19:26
*** otherwiseguy has joined #openstack-neutron19:27
*** jecarey_ has joined #openstack-neutron19:28
*** TrevorV has quit IRC19:28
*** sbfox has quit IRC19:29
*** otherwis_ has joined #openstack-neutron19:29
rkukuramartink2: So you aren’t using br-ex, and you have a br-ethX for the physical network that your external VLAN is on, and have this setup in bridge_mappings in ovs_neutron_plugin.ini for the L2 agent, right?19:30
*** chandan_kumar has quit IRC19:30
*** jlibosva has quit IRC19:31
*** jecarey has quit IRC19:32
*** nati_uen_ has joined #openstack-neutron19:32
*** otherwiseguy has quit IRC19:32
*** ihrachyshka has joined #openstack-neutron19:33
*** nati_ueno has quit IRC19:33
martink2rkukura: i have the bridge_mappings = physnet1:br-eth319:35
*** samuelbercovici has quit IRC19:35
*** nati_uen_ has quit IRC19:35
rkukuramartink2: What do you see when you run “neutron net-show <external-network-name>” as admin?19:36
*** TrevorV has joined #openstack-neutron19:36
martink2rkukura: +---------------------------+--------------------------------------+ | Field                     | Value                                | +---------------------------+--------------------------------------+ | admin_state_up            | True                                 | | id                        | 4b920514-542d-4083-a45a-cdcf47d8694c | | name                      | ext_net                              | |19:38
rkukuramartink2: I don’t see the provider attributes - are you sure you ran this with admin credentials?19:39
*** sbfox has joined #openstack-neutron19:40
*** jistr has quit IRC19:40
*** ihrachyshka has quit IRC19:40
martink2sorry for the formatting .. provider:network_type     | vlan, provider:physical_network | physnet1, provider:segmentation_id  | 79019:40
*** leseb has quit IRC19:41
*** dkehn_ has joined #openstack-neutron19:43
*** sweston has joined #openstack-neutron19:43
martink2i am trying to ping from the netns and i can see on a tcpdum that no vlan tag is on the packet on the eth3 interface, which is the right interface ... 19:43:19.064755 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 10.97.40.1 tell 10.97.40.2, length 2819:44
rkukuramartink2: That sounds reasonable. The external network traffic should be on VLAN 790 on br-eth3. So are you seeing the traffic on br-eth3 or on eth3 itself, but with no VLAN tag?19:45
*** dkehn has quit IRC19:46
*** dkehn_ has quit IRC19:46
*** amcrn_ has joined #openstack-neutron19:46
*** dkehnx has quit IRC19:46
*** dkehn_ has joined #openstack-neutron19:46
*** amcrn has quit IRC19:47
*** dkehn has joined #openstack-neutron19:48
*** amcrn_ is now known as amcrn19:48
*** dvorkinista has joined #openstack-neutron19:48
martink2rkukura: i can see tcp dumps on both eth3 and br-eth319:48
martink2and on both without vlan tag19:49
rkukuramartink2: Are your tenant networks also on eth3? If so, do they have the proper tags?19:49
martink2rkukura: no tenant networks yet i just have brought up the external network and one router yet19:51
martink2when i ping from the other side i can see traffic entering eth3 and br-eth3 with vlan tag 790: 19:50:40.113609 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 10.97.40.2 tell 10.97.40.1, length 4619:52
rkukuramartink2: I’d recommend getting tenant networks to work between VMs on different nodes first if you can.19:54
*** ajo has quit IRC19:55
*** chandan_kumar has joined #openstack-neutron19:56
*** leseb has joined #openstack-neutron19:57
*** otherwis_ has quit IRC19:58
*** thedodd has quit IRC19:59
*** jprovazn has quit IRC19:59
*** dvorkinista has quit IRC20:02
*** thedodd has joined #openstack-neutron20:05
*** alexpilotti has quit IRC20:05
martink2rkukura: thanks for the tip i just created an tenant provider network on another bridge br-eth4 and the packets are not tagged there either20:06
*** ajo has joined #openstack-neutron20:08
*** Sukhdev has joined #openstack-neutron20:08
*** BuSerD has quit IRC20:09
martink2rkukura: strike my last the internal packets are tagged ok on eth420:09
*** ramishra has joined #openstack-neutron20:10
rkukuramartink2: I think the next step would be to make sure the flow rules that move traffic between br-int and br-ethX are created correctly to modify the vlan tags. Its been a while since I’ve looked at these, so I may not be much help on that right now.20:10
*** ihrachyshka has joined #openstack-neutron20:12
*** hrzbrg has quit IRC20:13
openstackgerritA change was merged to openstack/neutron-specs: Note the usage of asciiflow.com for diagrams  https://review.openstack.org/8803720:14
*** ramishra has quit IRC20:14
*** dvorkinista has joined #openstack-neutron20:15
*** jistr has joined #openstack-neutron20:17
martink2 rkukura: thanks for the efford will try that next20:17
*** ihrachyshka_ has joined #openstack-neutron20:18
*** ihrachyshka has quit IRC20:18
*** baoli has quit IRC20:20
*** alagalah has quit IRC20:21
*** _sweston_ has joined #openstack-neutron20:21
*** sweston has quit IRC20:21
*** dvorkinista has quit IRC20:22
*** vthapar has quit IRC20:22
*** alagalah has joined #openstack-neutron20:22
*** alagalah has quit IRC20:23
*** alagalah has joined #openstack-neutron20:23
*** otherwiseguy has joined #openstack-neutron20:23
*** mlavalle has quit IRC20:25
mmmuckyajo: This is our multi-node havana dev env.  OVSNeutronPluginV2 core plugin.  LXC Containers for compute, network, api, etc. Instances are QEMU inside the compute LXC container.20:26
mmmuckyI was tcpdumping on the integration bridge (a linux bridge on the physical host)20:28
mmmuckytcpdumping on the linux bridge inside the compute node that the instance vif is plugged into shows the expected result... a single broadcast frame without any .1Q20:29
*** pradipta_away has quit IRC20:29
*** alagalah has quit IRC20:31
*** alagalah has joined #openstack-neutron20:31
*** sbfox has quit IRC20:32
*** pradipta_away has joined #openstack-neutron20:34
*** sbfox has joined #openstack-neutron20:38
*** martink2 has quit IRC20:38
*** TrevorV has quit IRC20:40
*** sbfox has quit IRC20:45
*** TrevorV has joined #openstack-neutron20:45
*** BillTheK_ has quit IRC20:46
*** sbfox has joined #openstack-neutron20:47
*** singhs has joined #openstack-neutron20:49
*** singhs_ has joined #openstack-neutron20:52
*** alagalah has quit IRC20:54
*** singhs has quit IRC20:54
*** singhs_ is now known as singhs20:54
*** baoli has joined #openstack-neutron21:00
*** _sweston_ has quit IRC21:08
*** WackoRobie has joined #openstack-neutron21:08
*** sweston has joined #openstack-neutron21:10
*** ale has quit IRC21:15
*** singhs has quit IRC21:20
*** networkstatic is now known as networkstatic_zZ21:20
*** BuSerD has joined #openstack-neutron21:25
*** salv-orlando has quit IRC21:29
*** jistr has quit IRC21:33
*** dvorkinista has joined #openstack-neutron21:34
larsksCan I bug someone to look at https://review.openstack.org/#/c/85432/? I don't want it to get too stale.21:34
*** pcm__ has quit IRC21:34
*** _sweston_ has joined #openstack-neutron21:35
*** sweston has quit IRC21:35
*** ajo has quit IRC21:36
*** mwagner_lap has quit IRC21:38
*** TrevorV has quit IRC21:39
*** crc32 has quit IRC21:40
*** rm_work is now known as rm_work|away21:40
*** ale has joined #openstack-neutron21:42
*** manishg_ has joined #openstack-neutron21:42
*** ale has quit IRC21:44
*** rm_work|away is now known as rm_work21:45
openstackgerritTerry Wilson proposed a change to openstack/neutron: Restore ability to run functional tests with run_tests.sh  https://review.openstack.org/8809321:51
*** dvorkinista has quit IRC21:51
*** dims has quit IRC21:52
*** rm_work is now known as rm_work|away21:56
*** manishg__ has joined #openstack-neutron21:57
*** carl_baldwin has quit IRC21:57
*** manishg__ has quit IRC21:59
*** manishg has quit IRC21:59
*** manishg__ has joined #openstack-neutron21:59
*** manishg has joined #openstack-neutron22:00
*** rm_work|away is now known as rm_work22:01
*** manishg_ has quit IRC22:01
*** jecarey_ has quit IRC22:02
*** dims has joined #openstack-neutron22:04
openstackgerritNachi Ueno proposed a change to openstack/neutron-specs: Added Sphinx diagram tools  https://review.openstack.org/8809522:05
*** oda-g has joined #openstack-neutron22:06
*** Sukhdev has quit IRC22:08
*** leseb has quit IRC22:09
*** jobewan has quit IRC22:10
*** sungju has joined #openstack-neutron22:10
*** ihrachyshka_ has quit IRC22:10
*** jecarey_ has joined #openstack-neutron22:14
*** sungju has quit IRC22:14
*** armax has left #openstack-neutron22:15
openstackgerritMohammad Banikazemi proposed a change to openstack/neutron-specs: Add spec for ML2 mechanism driver for SDN-VE  https://review.openstack.org/8810122:19
openstackgerritNachi Ueno proposed a change to openstack/neutron-specs: Added Sphinx diagram tools  https://review.openstack.org/8809522:22
*** banix has quit IRC22:23
*** gdubreui has joined #openstack-neutron22:24
*** enikanorov has quit IRC22:27
*** enikanorov has joined #openstack-neutron22:27
*** obondarev has quit IRC22:27
*** obondarev has joined #openstack-neutron22:27
*** angryjesters has quit IRC22:29
*** jgrimm has quit IRC22:32
openstackgerritTerry Wilson proposed a change to openstack/neutron: Restore ability to run functional tests with run_tests.sh  https://review.openstack.org/8809322:34
*** prad has quit IRC22:39
*** thedodd has quit IRC22:41
*** sbfox has quit IRC22:45
*** networkstatic_zZ is now known as networkstatic22:49
*** lnxnut_ has joined #openstack-neutron22:51
*** manishg has quit IRC22:51
*** lnxnut has quit IRC22:51
*** lnxnut_ has quit IRC22:51
*** lnxnut has joined #openstack-neutron22:52
*** manishg__ has quit IRC22:56
*** thuc_ has quit IRC23:01
*** thuc has joined #openstack-neutron23:02
*** thuc has quit IRC23:06
*** Dseven has quit IRC23:10
*** tchaypo has left #openstack-neutron23:34
*** chandan_kumar has quit IRC23:37
*** mlavalle has joined #openstack-neutron23:41
*** lyxus has quit IRC23:44
*** thuc has joined #openstack-neutron23:45
*** manishg has joined #openstack-neutron23:47
*** manishg__ has joined #openstack-neutron23:47
*** ale has joined #openstack-neutron23:48
*** manishg_ has joined #openstack-neutron23:50
*** manishg___ has joined #openstack-neutron23:50
*** ramishra has joined #openstack-neutron23:52
*** manishg has quit IRC23:52
*** manishg___ is now known as manishg23:52
*** manishg__ has quit IRC23:53
*** ramishra has quit IRC23:56

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!