blob: f1c2f2ce919238848c6e71d184face8e5d897c79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# This is an iface stanza for interfaces(5) with relatively sane
# defaults. Consult http://manpages.org/etc-network-interfaces/5 for
# more.
#
# The `eth0` networking interface represents the virtual Ethernet card
# of the guest, which would be the default gateway for the host.
# Change these values only if the 10.0.0.0/24 network is not suitable.
iface eth0 inet static
address 10.0.0.1
netmask 255.255.255.0
# The `wlan0` networking interface is associated with the wireless
# networking card as it is exposed by the driver. By this default
# configuration, the corresponding IP address is obtained through the
# use of DHCP. This should just work for most of the cases.
iface wlan0 dhcp
|