Go to file
2024-01-24 23:36:05 +01:00
DOC Initial commit 2019-06-28 02:28:50 +02:00
files/homedirs update.. 2023-04-16 17:28:29 +02:00
group_vars update-- 2024-01-24 23:36:05 +01:00
host_vars update-- 2024-01-24 23:36:05 +01:00
roles update-- 2024-01-24 23:36:05 +01:00
scripts mv firewall scripts to roles. 2020-05-16 16:45:17 +02:00
.gitignore Initial commit 2019-06-28 02:28:50 +02:00
ansible-dependencies-bookworm-sudo.yml update.. 2023-06-16 20:43:34 +02:00
ansible-dependencies-bookworm.yml update.. 2023-06-16 20:43:34 +02:00
ansible-dependencies-bullseye-sudo.yml update.. 2023-04-06 11:53:54 +02:00
ansible-dependencies-bullseye.yml update.. 2023-04-06 11:53:54 +02:00
ansible-dependencies-centos-7-sudo.yml update.. 2023-04-06 11:53:54 +02:00
ansible-dependencies-centos-7.yml update.. 2023-04-06 11:53:54 +02:00
ansible-dependencies-sudo.yml Initial commit 2019-06-28 02:28:50 +02:00
ansible-dependencies.yml Initial commit 2019-06-28 02:28:50 +02:00
ansible.cfg update.. 2021-07-08 18:56:07 +02:00
common.yml Initial commit 2019-06-28 02:28:50 +02:00
extra-run.yml Initial commit 2019-06-28 02:28:50 +02:00
firewall.yml Move firewall script to roles. Adjust hosts. .. 2019-09-04 04:04:57 +02:00
hosts update-- 2024-01-24 23:36:05 +01:00
hosts.BAK undocumented updates. 2019-11-28 18:29:16 +01:00
initial-setup-sudo.yml Initial commit 2019-06-28 02:28:50 +02:00
initial-setup.yml Initial commit 2019-06-28 02:28:50 +02:00
modify-ipt-gateway-ro.yml mv firewall scripts to roles. 2020-05-16 16:45:17 +02:00
modify-ipt-gateway.yml mv firewall scripts to roles. 2020-05-16 16:45:17 +02:00
modify-ipt-server.yml mv firewall scripts to roles. 2020-05-16 16:45:17 +02:00
modify-munin-ip.yml updatre.. 2022-06-15 02:10:25 +02:00
network-setup.yml Initial commit 2019-06-28 02:28:50 +02:00
o13-cryptpad.oopen.de.yml update.. 2023-12-30 16:08:35 +01:00
o13-stqging-board.oopen.de.yml update.. 2024-01-10 12:36:27 +01:00
open_the_vault.sh Move firewall script to roles. Adjust hosts. .. 2019-09-04 04:04:57 +02:00
README.bond update.. 2022-01-18 11:07:14 +01:00
rolesset_permissions_samba_shares.conf.j2 Update.. 2020-10-28 02:38:09 +01:00
test.yml Initial commit 2019-06-28 02:28:50 +02:00
upgrade.yml Initial commit 2019-06-28 02:28:50 +02:00
webserver.yml Initial commit 2019-06-28 02:28:50 +02:00
zzz,yml update-- 2024-01-15 01:07:46 +01:00
zzz.yml update-- 2024-01-15 01:07:46 +01:00

# ----------------------------------
# Example Configurations bond device
# ----------------------------------

In /etc/network/interfaces, the following stanza will configure bond0, in
802.3ad mode (mode 4), with eth0 and eth1 as slaves.

-----8<----------8<----------8<----------8<----------8<-----

auto bond0
iface bond0 inet dhcp
 bond-slaves eth0 eth1
 bond-mode 4
 bond-miimon 100
 bond-primary eth0 eth1

-----8<----------8<----------8<----------8<----------8<-----

If the above configuration doesn't work, you might have a system using
upstart for system startup. This is most notably true for recent
Ubuntu versions. The following stanza in /etc/network/interfaces will
produce the same result on those systems.

-----8<----------8<----------8<----------8<----------8<-----

auto bond0
iface bond0 inet dhcp
 bond-slaves none
 bond-mode 4
 bond-miimon 100

auto eth0
iface eth0 inet manual
 bond-master bond0
 bond-primary eth0 eth1

auto eth1
iface eth1 inet manual
 bond-master bond0
 bond-primary eth0 eth1

-----8<----------8<----------8<----------8<----------8<-----