diff options
| author | terminaldweller <devi@terminaldweller.com> | 2024-06-11 00:09:43 +0000 | 
|---|---|---|
| committer | terminaldweller <devi@terminaldweller.com> | 2024-06-11 00:09:43 +0000 | 
| commit | 892f6817b39888eb1d92db978a3522a3df2d8d17 (patch) | |
| tree | 1c4990cb4f9de2c231fcd19885b26b83a93b81c4 | |
| parent | updates (diff) | |
| download | vagrantboxes-892f6817b39888eb1d92db978a3522a3df2d8d17.tar.gz vagrantboxes-892f6817b39888eb1d92db978a3522a3df2d8d17.zip | |
added vpn4
Diffstat (limited to '')
| -rw-r--r-- | disposable/Vagrantfile | 9 | ||||
| -rw-r--r-- | vpn4/Vagrantfile | 88 | 
2 files changed, 92 insertions, 5 deletions
| diff --git a/disposable/Vagrantfile b/disposable/Vagrantfile index 72bd251..3307ad7 100644 --- a/disposable/Vagrantfile +++ b/disposable/Vagrantfile @@ -2,7 +2,6 @@  # frozen_string_literal: true  ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' -# Vagrant::DEFAULT_SERVER_URL.replace('https://vagrantcloud.com')  Vagrant.require_version '>= 2.2.6'  Vagrant.configure('2') do |config|    config.vm.box = 'generic/alpine319' @@ -20,9 +19,6 @@ Vagrant.configure('2') do |config|    config.vm.graceful_halt_timeout = 60    config.ssh.connect_timeout = 15 -  # shares -  # config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false, nfs_export: true -    config.vm.provider 'libvirt' do |libvirt|      libvirt.storage_pool_name = 'ramdisk'      libvirt.default_prefix = 'disposable-' @@ -35,12 +31,15 @@ Vagrant.configure('2') do |config|      libvirt.qemuargs value: '-no-user-config'      libvirt.qemuargs value: '-serial'      libvirt.qemuargs value: 'pty' +    libvirt.qemuargs value: '-sandbox' +    libvirt.qemuargs value: 'on'      libvirt.random model: 'random'    end    config.vm.provision 'update-upgrade', type: 'shell', name: 'update-upgrade', inline: <<-SHELL      set -ex -    sudo apk update && sudo apk upgrade +    sudo apk update && \ +      sudo apk upgrade      sudo apk add tor torsocks firefox-esr xauth font-dejavu wget openvpn unzip iptables bubblewrap apparmor ufw nfs-utils      wget -q https://addons.mozilla.org/firefox/downloads/file/4228676/foxyproxy_standard-8.9.xpi      mv foxyproxy_standard-8.9.xpi foxyproxy@eric.h.jung.xpi diff --git a/vpn4/Vagrantfile b/vpn4/Vagrantfile new file mode 100644 index 0000000..3c61817 --- /dev/null +++ b/vpn4/Vagrantfile @@ -0,0 +1,88 @@ +# vi: set ft=ruby : +# frozen_string_literal: true + +ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' +Vagrant.require_version '>= 2.2.6' +Vagrant.configure('2') do |config| +  config.vm.box = 'generic/alpine319' +  config.vm.box_version = '4.3.12' +  config.vm.box_check_update = false +  config.vm.hostname = 'virt-vpn4' + +  # ssh +  config.ssh.insert_key = true +  config.ssh.keep_alive = true +  config.ssh.keys_only = true + +  # timeouts +  config.vm.boot_timeout = 300 +  config.vm.graceful_halt_timeout = 60 +  config.ssh.connect_timeout = 15 + +  # shares +  # config.vm.synced_folder './share', '/home/vagrant/nfs', type: 'nfs', nfs_version: 4, nfs_udp: false + +  config.vm.provider 'libvirt' do |libvirt| +    libvirt.default_prefix = 'vpn4-' +    libvirt.driver = 'kvm' +    libvirt.memory = '128' +    libvirt.cpus = 1 +    libvirt.sound_type = nil +    libvirt.qemuargs value: '-nographic' +    libvirt.qemuargs value: '-nodefaults' +    libvirt.qemuargs value: '-no-user-config' +    libvirt.qemuargs value: '-serial' +    libvirt.qemuargs value: 'pty' +    # libvirt.random model: 'random' +  end + +  config.vm.provision 'update', type: 'shell', name: 'update', inline: <<-SHELL +  set -ex +  sudo apk add openvpn nfs-utils ufw +  mkdir -p /vagrant && \ +    sudo mount -t nfs 192.168.121.1:/home/devi/share/nfs /vagrant +  SHELL + +  config.vm.provision 'update-root', type: 'shell', name: 'update-root', privileged: true, inline: <<-SHELL +  set -ex +  echo tun >> /etc/modules +  #rc-update add openvpn default +  mkdir -p /tmp/mullvad/ && \ +    cp /vagrant/mullvad_openvpn_linux_ca_tor.zip /tmp/mullvad/ && \ +    cd /tmp/mullvad && \ +    unzip mullvad_openvpn_linux_ca_tor.zip && \ +    mv mullvad_config_linux_ca_tor/mullvad_ca_tor.conf /etc/openvpn/openvpn.conf && \ +    mv mullvad_config_linux_ca_tor/mullvad_userpass.txt /etc/openvpn/ && \ +    mv mullvad_config_linux_ca_tor/mullvad_ca.crt /etc/openvpn/ && \ +    mv mullvad_config_linux_ca_tor/update-resolv-conf /etc/openvpn && \ +    chmod 755 /etc/openvpn/update-resolv-conf +  modprobe tun +  echo "net.ipv4.ip_forward = 1" >> /etc/sysctl.d/ipv4.conf +  sysctl -p /etc/sysctl.d/ipv4.conf +  rc-service openvpn start || true +  sleep 1 +  SHELL + +  config.vm.provision 'killswitch', type: 'shell', name: 'killswitch', privileged: true, inline: <<-SHELL +    set -ex +    ufw --force reset +    ufw default deny incoming +    ufw default deny outgoing +    ufw allow in on tun0 +    ufw allow out on tun0 +    # enable libvirt bridge +    ufw allow in on eth0 from 192.168.121.1 +    ufw allow out on eth0 to 192.168.121.1 +    # server block +    ufw allow out on eth0 to 178.249.214.206 port 1302 +    ufw allow in on eth0 from 178.249.214.206 port 1302 +    ufw allow out on eth0 to 178.249.214.193 port 1302 +    ufw allow in on eth0 from 178.249.214.193 port 1302 +    ufw allow out on eth0 to 198.54.132.34 port 1302 +    ufw allow in on eth0 from 198.54.132.34 port 1302 +    ufw allow out on eth0 to 198.54.132.66 port 1302 +    ufw allow in on eth0 from 198.54.132.66 port 1302 + +    echo y | ufw enable +  SHELL +end | 
