-
Notifications
You must be signed in to change notification settings - Fork 1
/
interfaces
36 lines (31 loc) · 810 Bytes
/
interfaces
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
auto lo
iface lo inet loopback
# Gli indirizzi IP relativi alla connsessione dell'HUB con il Modem Router sono da configurare
# secondo le esigenze per la connessione.
# Per maggiori dettagli vedere la guida.
allow-hotplug enp1s0
iface enp1s0 inet static
address 192.168.1.10
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.1.1
# Oppure utilizzare un indirizzo IP assegnato dal router
#auto enp1s0
#allow-hotplug enp1s0
#iface enp1s0 inet dhcp
allow-hotplug enp2s0
iface enp2s0 inet manual
auto wlp3s0
iface wlp3s0 inet manual
# Address è l'indirizzo IP con cui sarà possibile accedere a
# Home Assistant
auto br0
iface br0 inet static
address 192.168.2.1
netmask 255.255.255.0
network 192.168.2.0
broadcast 192.168.2.255
bridge_ports enp2s0 wlp3s0
bridge_stp off
bridge_fd 0
bridge_maxwait 0