VBoxManage modifyvm front --nic2 hostonly --hostonlyadapter2 vboxnet1
#+END_SRC
-The second network interface is configured with an IP address via the
-Netplan configuration file =/etc/netplan/01-testing.yaml=, which is
-created with the following lines.
+After Debian is installed and the machine rebooted, the administrator
+logs in and configures the "extra" network interface with a static IP
+address using a drop-in configuration file:
+=/etc/network/interfaces.d/eth1=.
+#+CAPTION: =eth1=
#+BEGIN_SRC conf
-network:
- ethernets:
- enp0s8:
- dhcp4: false
- addresses: [ 192.168.57.3/24 ]
+auto enp0s8
+iface enp0s8 inet static
+ address 192.168.57.3/24
#+END_SRC
-The amended Netplan is applied immediately with the following command,
-or the machine is rebooted.
-
-#+BEGIN_SRC sh
-sudo netplan apply
-#+END_SRC
+A ~sudo ifup enp0s8~ command then brings the interface up.
Finally, the administrator authorizes remote access by following the
instructions in the final section: [[* Ansible Test Authorization][Ansible Test Authorization]].