Re: [iproute2] Can't create ip6 tunnel device

2019-07-02 Thread Andrea Claudi
On Tue, Jul 2, 2019 at 3:11 PM Ji Jianwen wrote: > > It works for 'add', but not for 'del'. > ip -6 tunnel del my_ip6ip6 mode ip6ip6 remote 2001:db8::100::2 > local 2001:db8::100::1 hoplimit 1 tclass 0x0 dev eno1 > delete tunnel "eno1" failed: Operation not supported > Thanks Jianwen, thi

Re: [iproute2] Can't create ip6 tunnel device

2019-07-02 Thread Ji Jianwen
It works for 'add', but not for 'del'. ip -6 tunnel del my_ip6ip6 mode ip6ip6 remote 2001:db8::100::2 local 2001:db8::100::1 hoplimit 1 tclass 0x0 dev eno1 delete tunnel "eno1" failed: Operation not supported On Tue, Jul 2, 2019 at 7:18 PM Andrea Claudi wrote: > > On Tue, Jul 2, 2019 at 1

Re: [iproute2] Can't create ip6 tunnel device

2019-07-02 Thread Andrea Claudi
On Tue, Jul 2, 2019 at 12:55 PM Andrea Claudi wrote: > > On Tue, Jul 2, 2019 at 12:27 PM Ji Jianwen wrote: > > > > It seems this issue was introduced by commit below, I am able to run > > the command successfully mentioned at previous mail without it. > > > > commit ba126dcad20e6d0e472586541d78bd

Re: [iproute2] Can't create ip6 tunnel device

2019-07-02 Thread Andrea Claudi
On Tue, Jul 2, 2019 at 12:27 PM Ji Jianwen wrote: > > It seems this issue was introduced by commit below, I am able to run > the command successfully mentioned at previous mail without it. > > commit ba126dcad20e6d0e472586541d78bdd1ac4f1123 (HEAD) > Author: Mahesh Bandewar > Date: Thu Jun 6 16:

Re: [iproute2] Can't create ip6 tunnel device

2019-07-02 Thread Ji Jianwen
It seems this issue was introduced by commit below, I am able to run the command successfully mentioned at previous mail without it. commit ba126dcad20e6d0e472586541d78bdd1ac4f1123 (HEAD) Author: Mahesh Bandewar Date: Thu Jun 6 16:44:26 2019 -0700 ip6tunnel: fix 'ip -6 {show|change} dev '

[iproute2] Can't create ip6 tunnel device

2019-07-01 Thread Ji Jianwen
Hello there, I got error when creating ip6 tunnel device on a rhel-8.0.0 system. Here are the steps to reproduce the issue. # # uname -r 4.18.0-80.el8.x86_64 # dnf install -y libcap-devel bison flex git gcc # git clone git://git.kernel.org/pub/scm/network/iproute2/iproute2.git # cd iproute2 &&