I have created an ipv6 tunnel by using the following commands:
ip link add gre_test type ip6gre remote 2001:4860:4860::8888 local ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff ttl 255 removed actual ipv6
After this I turned up this interface:
ip link set dev gre_test up And then finally when I am trying to add the interface under the bridge default_lan I am facing this issue
brctl addif default_lan gre61 can't add gre61 to bridge default_lan: Invalid argument So basically I am making an ipv6 tunnel and terminating it on a bridged interface But I am getting the error Invalid argument when I am trying to add the bridge. It works if gre interface is purely ipv4 and if we use 'gretap'.