VM にインターフェースが 2 つあるのはなぜですか?

VM にインターフェースが 2 つあるのはなぜですか?

私のプロジェクトの1つでは、プライベート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 インターフェースが存在するのはなぜですか?

関連情報