Broadband Adapter: Difference between revisions

Jump to navigation Jump to search
→‎Linux: Add instruction for NetworkManager (tested 2022-01-02)
(Added link to Xlink Kai instructions. Also changed formatting.)
(→‎Linux: Add instruction for NetworkManager (tested 2022-01-02))
Line 88: Line 88:


NOTE: There is no encryption for the tunnel. Read the [https://community.openvpn.net/openvpn/wiki/Openvpn23ManPage OpenVPN manpage] for setting up the tunnel with encryption and/or authentication.
NOTE: There is no encryption for the tunnel. Read the [https://community.openvpn.net/openvpn/wiki/Openvpn23ManPage OpenVPN manpage] for setting up the tunnel with encryption and/or authentication.
=== Linux NetworkManager ===
This will create a permanent bridge with your Dolphin tun and Ethernet devices. Replace ''eth0'' with your actual network interface.
<pre>
nmcli connection add ifname br0 type bridge con-name br0 bridge.stp no
nmcli connection add type tun ifname Dolphin0 con-name Dolphin0 slave-type bridge master br0 mode tap owner `id -u` group `id -g` 802-3-ethernet.accept-all-mac-addresses true
nmcli connection add type bridge-slave ifname eth0 master br0
nmcli connection up br0  # will not activate if eth0 is currently used
</pre>
Now deactivate the active connection (usually something called "Wired connection 1") and the bridge will complete.


=== MacOS ===
=== MacOS ===

Navigation menu