Displaying 2 results from an estimated 2 matches for "rmtun".
Did you mean:
retun
2004 Dec 22
6
vpn bridging
[This email is either empty or too large to be displayed at this time]
2007 Apr 18
0
[Bridge] Re: brctl, Ethernet Bridging, openvpn, Universal TUN/TAP devices
.../sbin/ifconfig tap${Z} 0.0.0.0 promisc up
> [2] /usr/sbin/openvpn --config config.${Z}
>
>
> To stop it:
>
> [3] kill `cat /var/run/openvpn.${Z}.pid`
> /sbin/ifconfig tap${Z} down
> /usr/sbin/brctl delif br${X} tap${Z}
> /usr/sbin/openvpn --rmtun --dev tap${Z}
>
> /usr/sbin/brctl delif br${X} eth${Y}
> /sbin/ifconfig eth${Y} down
>
> /sbin/ifconfig br${X} down
> /usr/sbin/brctl delbr br${X}
>
>
> As far as I understood, if I create a tap device [1]
> before I start the openvpn insta...