How can I set bridge between a real eth card on a remote machine without losing my ssh connection to that machine.
I ssh into a machine via its eth1 iinterface. 172.168.40.2 255.255.255.0.
I want to join eth1 to a tun/tap device 'tun0'. How can I do this without bringing down eth1 and losing my ssh connection.
tunctl -u root
brctl addbr br0
brctl addif br0 tun1
brctl addif br0 eth1
Result, connection will be lost