Skip to content

Instantly share code, notes, and snippets.

@John-Lin
Created May 2, 2017 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save John-Lin/bac77265758b07d04b942167aa0a26a2 to your computer and use it in GitHub Desktop.
Save John-Lin/bac77265758b07d04b942167aa0a26a2 to your computer and use it in GitHub Desktop.
OVS with Docker Networking (GUI)
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.customize ['modifyvm', :id, '--nictype1', 'Am79C973']
vb.customize ['modifyvm', :id, '--nicpromisc1', 'allow-all']
end
config.vm.provision :shell, path: "bootstrap.sh"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment