On Thu, 6 Jun 2019 16:44:26 -0700 Mahesh Bandewar <mahe...@google.com> wrote:
> Inclusion of 'dev' is allowed by the syntax but not handled > correctly by the command. It produces no output for show > command and falsely successful for change command but does > not make any changes. > > can be verified with the following steps > # ip -6 tunnel add ip6tnl1 mode ip6gre local fd::1 remote fd::2 tos inherit > ttl 127 encaplimit none > # ip -6 tunnel show ip6tnl1 > <correct output> > # ip -6 tunnel show dev ip6tnl1 > <no output but correct output after this change> > # ip -6 tunnel change dev ip6tnl1 local 2001:1234::1 remote 2001:1234::2 > encaplimit none ttl 127 tos inherit allow-localremote > # echo $? > 0 > # ip -6 tunnel show ip6tnl1 > <no changes applied, but changes are correctly applied after this change> > > Signed-off-by: Mahesh Bandewar <mahe...@google.com> Applied, thanks.