diff options
Diffstat (limited to 'etc/interfaces.conf.sample')
-rw-r--r-- | etc/interfaces.conf.sample | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/etc/interfaces.conf.sample b/etc/interfaces.conf.sample index d4f5636..f1c2f2c 100644 --- a/etc/interfaces.conf.sample +++ b/etc/interfaces.conf.sample @@ -2,11 +2,17 @@ # defaults. Consult http://manpages.org/etc-network-interfaces/5 for # more. # -# The purpose is to bring up an interface on the guest which would be -# the default gateway for the host. Here, `eth0` is the networking -# interface of the virtual Ethernet card. Change these values only if -# the 10.0.0.0/24 network is not suitable. +# 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 |