[patch 0/2] rebinding tunnels to interfaces

2007-12-13 Thread mschmidt
These two patches allow rebinding of GRE and SIT tunnels to interfaces using ip tun change tunnel dev iface A similar change was already done for IPIP tunnels. Michal -- -- To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More

[patch 1/2] ip_gre: Rebinding of GRE tunnels to other interfaces

2007-12-13 Thread mschmidt
This is similar to the change already done for IPIP tunnels. Once created, a GRE tunnel can't be bound to another device. To reproduce: # create a tunnel: ip tunnel add tunneltest0 mode gre remote 10.0.0.1 dev eth0 # try to change the bounding device from eth0 to eth1: ip tunnel change

[patch 2/2] ipv6/sit: Rebinding of SIT tunnels to other interfaces

2007-12-13 Thread mschmidt
This is similar to the change already done for IPIP tunnels. Once created, a SIT tunnel can't be bound to another device. To reproduce: # create a tunnel: ip tunnel add tunneltest0 mode sit remote 10.0.0.1 dev eth0 # try to change the bounding device from eth0 to eth1: ip tunnel change