내 프로젝트 중 하나에서 개인 IP를 정의하여 표준 Vagrantfile을 사용하여 가상 머신을 생성합니다.
길 잃은 파일
hosts = {
"n1" => "192.168.77.10",
"n2" => "192.168.77.11",
"n3" => "192.168.77.12",
"n4" => "192.168.77.13"
}
Vagrant.configure("2") do |config|
# always use Vagrants insecure key
config.ssh.insert_key = false
# forward ssh agent to easily ssh into the different machines
config.ssh.forward_agent = true
check_guest_additions = false
functional_vboxsf = false
config.vm.box = "ubuntu/bionic64"
hosts.each do |name, ip|
config.vm.define name do |machine|
machine.vm.network :private_network, ip: ip
machine.vm.provider "virtualbox" do |v|
v.name = name
end
end
end
end
enp0s3 및 enp0s8 인터페이스는 어떻게 갖게 되었나요?