내 VM에 두 개의 인터페이스가 있는 이유는 무엇입니까?

내 VM에 두 개의 인터페이스가 있는 이유는 무엇입니까?

내 프로젝트 중 하나에서 개인 IP를 정의하여 표준 Vagrantfile로 Vm을 생성했습니다. 여기에 이미지 설명을 입력하세요

방랑 파일

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 인터페이스를 갖게 된 이유는 무엇입니까?

관련 정보