diff options
Diffstat (limited to 'meta/recipes-core/netbase/netbase-4.45/interfaces')
-rw-r--r-- | meta/recipes-core/netbase/netbase-4.45/interfaces | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-core/netbase/netbase-4.45/interfaces b/meta/recipes-core/netbase/netbase-4.45/interfaces new file mode 100644 index 0000000000..b06924fa94 --- /dev/null +++ b/meta/recipes-core/netbase/netbase-4.45/interfaces | |||
@@ -0,0 +1,30 @@ | |||
1 | # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8) | ||
2 | |||
3 | # The loopback interface | ||
4 | auto lo | ||
5 | iface lo inet loopback | ||
6 | |||
7 | # Wireless interfaces | ||
8 | iface wlan0 inet dhcp | ||
9 | wireless_mode managed | ||
10 | wireless_essid any | ||
11 | wpa-driver wext | ||
12 | wpa-conf /etc/wpa_supplicant.conf | ||
13 | |||
14 | iface atml0 inet dhcp | ||
15 | |||
16 | # Wired or wireless interfaces | ||
17 | iface eth0 inet dhcp | ||
18 | iface eth1 inet dhcp | ||
19 | |||
20 | # Ethernet/RNDIS gadget (g_ether) | ||
21 | # ... or on host side, usbnet and random hwaddr | ||
22 | iface usb0 inet static | ||
23 | address 192.168.7.2 | ||
24 | netmask 255.255.255.0 | ||
25 | network 192.168.7.0 | ||
26 | gateway 192.168.7.1 | ||
27 | |||
28 | # Bluetooth networking | ||
29 | iface bnep0 inet dhcp | ||
30 | |||