# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The client network interface
# Use this to get a DHCP address on the client network
# Please don't do both eth0 and eth1 at the same time
auto eth0
iface eth0 inet dhcp

# The server network interface
# Use this to set a static address on the server network 192.168.36.0/24
# Please don't do both eth0 and eth1 at the same time
auto eth1
iface eth1 inet manual

# The internal (to Stella) network interface
# Use this to communicate with other VMs inside Stella
# No network range is pre-defined for this
auto eth2
iface eth2 inet manual

