diff options
author | PÁLI Gábor János <pali.gabor@gmail.com> | 2022-05-17 23:21:06 +0200 |
---|---|---|
committer | PÁLI Gábor János <pali.gabor@gmail.com> | 2022-05-17 23:21:06 +0200 |
commit | b0619597ef28a2317d0395bcd519b22f666de80b (patch) | |
tree | de254405924ac1505adadd58051d1e2d4ad9ab30 /etc/interfaces.conf.sample | |
parent | 972aa5cee272ad68b475dcb31baa780f08ce2559 (diff) | |
download | freebsd-wifibox-alpine-b0619597ef28a2317d0395bcd519b22f666de80b.zip |
Expose networking configuration of `wlan0`.
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 |