User Tools

Site Tools


doc:appunti:linux:sa:etc_network_interfaces

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
doc:appunti:linux:sa:etc_network_interfaces [2016/10/19 11:51] – [WiFi interfaces with WPA] niccolodoc:appunti:linux:sa:etc_network_interfaces [2019/01/20 20:27] – [WiFi interfaces with WPA] niccolo
Line 18: Line 18:
 <file> <file>
 allow-hotplug wlan0 allow-hotplug wlan0
-iface wlan0 inet manual+iface wlan0 inet dhcp
     #wpa-ssid MyESSID     #wpa-ssid MyESSID
     #wpa-psk MyWPASecret     #wpa-psk MyWPASecret
Line 51: Line 51:
         wireless-key off         wireless-key off
 </file> </file>
 +
 +==== Static address, not managed by NetworkManager ====
 +
 +Debian (9 Stretch) installs the **network-manager** package, which handles the configuration of Ethernet interface automatically, via DHCP. If you want to manually configure the interface, just put this in **/etc/network/interfaces** configuration file:
 +
 +<file>
 +allow-hotplug enp2s0
 +iface enp2s0 inet static
 +        address 10.0.1.2
 +        netmask 255.255.255.0
 +        gateway 10.0.1.252
 +        dns-nameservers 144.76.67.15 8.8.8.8
 +</file>
 +
 +You need the **resolvconf** package to make the //dns-nameservers// option working. That option adds the **nameserver** line into the **/etc/resolv.conf** file at boot time.
doc/appunti/linux/sa/etc_network_interfaces.txt · Last modified: 2023/03/17 11:53 by niccolo