When WLAN generell schon funktioniert, sollte das auch via einen bond verwendbar sein. Es kann sein, dass die API/UI den namen des WLAN interface nicht akzeptiert, dann sollte es aber immer noch manuell in
/etc/network/interfaces konfigurierbar sein, in etwa (ungetestet!):
Code:
# ... existing config (lo loopback, ...)
# wired interface - TODO replace name here an in the bond section
auto enp3s0
iface enp3s0 inet manual
bond-master bond0
# wireless interface with wpa_supplicant - TODO replace name here an in the bond section
auto wlp2s0
iface wlp2s0 inet manual
bond-master bond0
wpa-ssid "MyNetworkSSID"
wpa-psk "MySecretPassphrase"
# bond interface
auto bond0
iface bond0 inet static
bond-slaves enp3s0 wlp2s0
bond-mode active-backup
bond-primary enp3s0
bond-miimon 100
bond-primary-reselect always
# bridge interface
auto vmbr0
iface vmbr0 inet static
address 192.168.1.100/24
gateway 192.168.1.1
bridge-ports bond0
bridge-stp off
bridge-fd 0