<!-- 
RSS generated by JIRA (8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d) at Wed Feb 07 20:23:08 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>OpenDaylight JIRA</title>
    <link>https://jira.opendaylight.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.20.10</version>
        <build-number>820010</build-number>
        <build-date>22-06-2022</build-date>
    </build-info>


<item>
            <title>[NETVIRT-1061] dual stack / Delete IPv6 Subnet And Check IPv4 datapath / ipv4 does not work after</title>
                <link>https://jira.opendaylight.org/browse/NETVIRT-1061</link>
                <project id="10144" key="NETVIRT">netvirt</project>
                    <description>&lt;p&gt;&lt;b&gt;setup&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;create a router with 2 subnets, and one VM&lt;/p&gt;

&lt;p&gt;that VM is dual stack ( like the router)&lt;/p&gt;

&lt;p&gt;check that VM is reachable in both ipv4 and ipv6&lt;/p&gt;

&lt;p&gt;delete subnet ipv6 from router&lt;/p&gt;

&lt;p&gt;&lt;b&gt;observation&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;check that ipv4 connectivity is still ok. it fails&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://logs.opendaylight.org/sandbox/vex-yul-odl-jenkins-2/netvirt-csit-1node-openstack-ocata-gate-stateful-oxygen/1/log_03_vpn_basic_dualstack_one_router.html.gz&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://logs.opendaylight.org/sandbox/vex-yul-odl-jenkins-2/netvirt-csit-1node-openstack-ocata-gate-stateful-oxygen/1/log_03_vpn_basic_dualstack_one_router.html.gz&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
        <key id="29052">NETVIRT-1061</key>
            <summary>dual stack / Delete IPv6 Subnet And Check IPv4 datapath / ipv4 does not work after</summary>
                <type id="10104" iconUrl="https://jira.opendaylight.org/secure/viewavatar?size=xsmall&amp;avatarId=10303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.opendaylight.org/images/icons/priorities/major.svg">Medium</priority>
                        <status id="5" iconUrl="https://jira.opendaylight.org/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10003">Cannot Reproduce</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="pguibert6WIND">Philippe Guibert</reporter>
                        <labels>
                    </labels>
                <created>Tue, 9 Jan 2018 14:58:17 +0000</created>
                <updated>Thu, 4 Oct 2018 04:04:40 +0000</updated>
                            <resolved>Thu, 4 Oct 2018 04:04:40 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="60674" author="pguibert6wind" created="Fri, 12 Jan 2018 15:10:10 +0000"  >&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;
openstack router create router
openstack network create N1

openstack subnet create --network N1 SUB1 --subnet-range 10.10.10.0/24 &#160;
openstack router add subnet router SUB1

openstack subnet create --network N1 SUB2 --subnet-range 2001:db8:0:2::0/64 --ip-version 6 --ipv6-ra-mode slaac --ipv6-address-mode slaac
openstack router add subnet router SUB2


openstack network create N2
openstack subnet create --network N2 SUB3 --subnet-range 20.10.10.0/24 &#160;
openstack router add subnet router SUB3

openstack security group create X
openstack security group rule create X --egress --dst-port 1:65535 --protocol tcp
openstack security group rule create X --egress --dst-port 1:65535 --protocol udp
openstack security group rule create X --egress --protocol icmp
openstack security group rule create X --ethertype IPv6 --egress --dst-port 1:65535 --protocol tcp
openstack security group rule create X --ethertype IPv6 --egress --dst-port 1:65535 --protocol udp
openstack security group rule create X --ethertype IPv6 --egress --protocol icmp
openstack security group rule create X --ingress --dst-port 1:65535 --protocol tcp
openstack security group rule create X --ingress --dst-port 1:65535 --protocol udp
openstack security group rule create X --ingress --protocol icmp
openstack security group rule create X --ethertype IPv6 --ingress --dst-port 1:65535 --protocol tcp
openstack security group rule create X --ethertype IPv6 --ingress --dst-port 1:65535 --protocol udp
openstack security group rule create X --ethertype IPv6 --ingress --protocol icmp

neutron port-create N1 --name=port1 --security-group X
nova boot --image cirros-0.3.4-x86_64-uec --flavor m1.tiny --nic port-id=$(neutron port-list | grep &quot;port1&quot; | awk &apos;{print $2}&apos;) VM1

neutron port-create N2 --name=port2 --security-group X
nova boot --image cirros-0.3.4-x86_64-uec --flavor m1.tiny --nic port-id=$(neutron port-list | grep &quot;port2&quot; | awk &apos;{print $2}&apos;) VM2

// here, everything works fine. you can connect to VM1 and ping VM2 with IPv4.

openstack router delete subnet router SUB2

// here, IPv4 routed traffic does not work. you can not ping VM2 from VM1 with IPv4.
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="61127" author="jluhrsen" created="Tue, 20 Feb 2018 16:14:42 +0000"  >&lt;p&gt;do we have an update on this? would love to get these fixed so we can move the dualstack suites in to the gating job&lt;/p&gt;</comment>
                            <comment id="61767" author="valentina.krasnobaeva" created="Thu, 15 Mar 2018 23:52:03 +0000"  >&lt;p&gt;Hi Jamo,&lt;/p&gt;

&lt;p&gt;Yes, here is the patch:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://git.opendaylight.org/gerrit/#/c/69444/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/#/c/69444/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And here are sandbox job runs for OXYGEN and Fluorine:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://logs.opendaylight.org/sandbox/vex-yul-odl-jenkins-2/netvirt-csit-1node-openstack-queens-upstream-stateful-oxygen/5/robot-plugin/log_full.html.gz#s1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://logs.opendaylight.org/sandbox/vex-yul-odl-jenkins-2/netvirt-csit-1node-openstack-queens-upstream-stateful-oxygen/5/robot-plugin/log_full.html.gz#s1&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://logs.opendaylight.org/sandbox/vex-yul-odl-jenkins-2/netvirt-csit-1node-openstack-queens-upstream-stateful-fluorine/6/robot-plugin/log_full.html.gz&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://logs.opendaylight.org/sandbox/vex-yul-odl-jenkins-2/netvirt-csit-1node-openstack-queens-upstream-stateful-fluorine/6/robot-plugin/log_full.html.gz&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="61768" author="jluhrsen" created="Fri, 16 Mar 2018 00:27:44 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.opendaylight.org/secure/ViewProfile.jspa?name=valentina.krasnobaeva&quot; class=&quot;user-hover&quot; rel=&quot;valentina.krasnobaeva&quot;&gt;valentina.krasnobaeva&lt;/a&gt;, thanks. I assume the single failure is due to another bug. Do we have a Jira for that?&lt;/p&gt;</comment>
                            <comment id="61772" author="valentina.krasnobaeva" created="Fri, 16 Mar 2018 10:46:11 +0000"  >&lt;p&gt;Yes, the failure in Create Multiple L3VPNs is an another bug&lt;/p&gt;

&lt;p&gt;Here is a corresponding issue:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://jira.opendaylight.org/browse/NETVIRT-1106?filter=-2&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;https://jira.opendaylight.org/browse/NETVIRT-1106?filter=-2&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_11400" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10000" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i039dr:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>