From dd8bb815cc398b25ffb2696714b8ecae96a162fa Mon Sep 17 00:00:00 2001 From: Elam Monnot Date: Thu, 30 Mar 2023 08:36:20 +0200 Subject: [PATCH] feat: added peertube with mkvm --- roles/post/files/interfaces.s-peertube | 2 +- scripts/addint.s-peertube | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100755 scripts/addint.s-peertube diff --git a/roles/post/files/interfaces.s-peertube b/roles/post/files/interfaces.s-peertube index 00dcfde..b7355db 100644 --- a/roles/post/files/interfaces.s-peertube +++ b/roles/post/files/interfaces.s-peertube @@ -9,7 +9,7 @@ allow-hotplug enp0s3 iface enp0s3 inet static address 192.168.99.120/24 -# Réseau n-dmz-lb +# Réseau n-dmz allow-hotplug enp0s8 iface enp0s8 inet static address 192.168.100.20/24 diff --git a/scripts/addint.s-peertube b/scripts/addint.s-peertube new file mode 100755 index 0000000..6e8508a --- /dev/null +++ b/scripts/addint.s-peertube @@ -0,0 +1,18 @@ +#!/bin/bash +nom=s-lb-web1 + +# N-adm (enp0s3) + +VBoxManage modifyvm $nom --nic1 intnet +VBoxManage modifyvm $nom --intnet1 "n-adm" +VBoxManage modifyvm $nom --nictype1 82540EM +VBoxManage modifyvm $nom --cableconnected1 on +VBoxManage modifyvm $nom --nicpromisc1 allow-all + +# N-dmz (enp0s8) + +VBoxManage modifyvm $nom --nic2 intnet +VBoxManage modifyvm $nom --intnet2 "n-dmz" +VBoxManage modifyvm $nom --nictype2 82540EM +VBoxManage modifyvm $nom --cableconnected2 on +VBoxManage modifyvm $nom --nicpromisc2 allow-all