I have a server with Windows VM installed. I only have the machine's IP and I want to configure the network without buying any other IPs. Here is the interfaces file:
How can I do it?
Code:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
allow-hotplug eno1
auto eno1
iface eno1 inet static
auto vmbr0
iface vmbr0 inet static
address 195.154.200.79
netmask 255.255.255.255
gateway 195.154.200.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
How can I do it?