kea-dhcp4

This commit is contained in:
phil
2024-01-10 22:53:30 +01:00
parent 64276d1e2d
commit 86e536ed0f
2 changed files with 15 additions and 1 deletions

View File

@@ -63,5 +63,18 @@ Vagrant.configure("2") do |config|
end
end
# client DHCP .
config.vm.define "cli" do |cli|
cli.vm.hostname = "cli"
#cli.vm.network :private_network, ip: "192.168.56.3"
cli.vm.network :private_network, type: "dhcp"
cli.vm.provider :virtualbox do |v|
v.customize ["modifyvm", :id, "--memory", 512]
end
cli.vm.provision "shell",
inline: "sudo apt-get update ; sudo apt-get install -y vim curl wget"
end
end