-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces
More file actions
49 lines (37 loc) · 959 Bytes
/
interfaces
File metadata and controls
49 lines (37 loc) · 959 Bytes
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
37
38
39
40
41
42
43
44
45
46
47
48
49
# copy this file to /etc/network
# The primary network interface
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.1.16
network 192.168.1.0
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
# VLAN ID 73
auto eth0.73
iface eth0.73 inet static
address 160.48.199.30
network 160.48.199.0
netmask 255.255.255.0
broadcast 160.48.199.255
# WIFI Adapter
auto wlan0
#iface wlan0 inet dhcp
# wpa-ssid "..."
# wpa-psk "..."
iface wlan0 inet static
address 192.168.2.16
network 192.168.2.0
netmask 255.255.255.0
broadcast 192.168.2.255
gateway 192.168.2.1
wpa-ssid "..."
wpa-psk "..."
# Beaglebone Black Ethernet/RNDIS gadget (g_ether)
# Used by: /opt/scripts/boot/autoconfigure_usb0.sh
#iface usb0 inet static
# address 192.168.16.2
# netmask 255.255.255.252
# network 192.168.16.0
# gateway 192.168.16.1