-
Notifications
You must be signed in to change notification settings - Fork 45
/
Vagrantfile
34 lines (29 loc) · 1.16 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- mode: ruby -*-
# vi: set ft=ruby :
# IMPORTANT :
# If you want to get the VMs installed in a specific directory, type:
# Not working: $ export VAGRANT_VMWARE_CLONE_DIRECTORY=/path/to/your/vm/library
# $ mkdir .vagrant && cd .vagrant
# $ sudo ln -s /path/to/vm/library machines && cd ..
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Beware that the following lines require Vagrant proxy plugin to be installed ;
# this can be done by executing 'vagrant plugin install vagrant-proxyconf'
#
# config.proxy.http = "http://yourproxy:8080"
# config.proxy.https = "http://yourproxy:8080"
# config.proxy.no_proxy = "localhost,127.0.0.1"
config.vm.box = "dhondta/rpl-attacks"
config.vm.host_name = "rpl-attacks-framework"
# config.vm.network :private_network, ip: "192.168.27.100"
# customize VM
config.vm.provider "virtualbox" do |v|
v.gui = true
v.name = "RPL Attacks Framework"
v.memory = 2048
v.cpus = 2
v.customize ["modifyvm", :id, "--usb", "on"]
v.customize ["modifyvm", :id, "--usbehci", "on"]
end
end