Last active
July 16, 2021 09:01
-
-
Save botlabsDev/b4284d024d96f564276d5e994d3c6866 to your computer and use it in GitHub Desktop.
UbuntuVM with PCAP dump
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure("2") do |config| | |
config.vm.box = "peru/ubuntu-20.04-desktop-amd64" | |
config.vm.box_version = "20210701.01" | |
config.vm.provider "virtualbox" do |vb| | |
vb.customize ["modifyvm", :id, "--nictrace1", "on"] | |
vb.customize ["modifyvm", :id, "--nictracefile1", "#{File.dirname(__FILE__)}/trace1.pcap"] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment