On Mon, 2016-01-25 at 12:21 +, Vincent Fortier wrote:
> Thnx. So lets say I previously created a bridge interface and linked
> in my
> eth0:
> $ nmcli connection show
> $ nmcli connection delete
> $ nmcli connection add type bridge \
> ifname br0 con-name br0
> $ nmcli connection add
Thnx. So lets say I previously created a bridge interface and linked in my
eth0:
$ nmcli connection show
$ nmcli connection delete
$ nmcli connection add type bridge \
ifname br0 con-name br0
$ nmcli connection add type bridge-slave \
ifname eth0 con-name eth0 master br0
Presum
On Mon, Jan 25, 2016 at 02:46:54AM +, Vincent Fortier wrote:
> I was wondering how can I create a tap interface using nmcli? Search again
> and again witouth luck...
Hi,
creation of tun/tap devices is supported only in NetworkManager 1.2.
On such version you can create a tap connection using
I was wondering how can I create a tap interface using nmcli? Search again
and again witouth luck...
Otherwise I use currently:
$ sudo openvpn --mktun --dev tap0 --user `id -un`
$ sudo ip addr add 0.0.0.0/24 dev tap0
$ sudo ip link set tap0 up promisc on
or simply:
$ sudo tunctl -d tap0
T