diff options
Diffstat (limited to 'meta/packages/netbase/netbase/interfaces')
-rw-r--r-- | meta/packages/netbase/netbase/interfaces | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta/packages/netbase/netbase/interfaces b/meta/packages/netbase/netbase/interfaces new file mode 100644 index 0000000000..fbeb14ffbc --- /dev/null +++ b/meta/packages/netbase/netbase/interfaces | |||
@@ -0,0 +1,43 @@ | |||
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 | iface atml0 inet dhcp | ||
12 | |||
13 | # Wired or wireless interfaces | ||
14 | iface eth0 inet dhcp | ||
15 | iface eth1 inet dhcp | ||
16 | |||
17 | # Ethernet/RNDIS gadget (g_ether) | ||
18 | # ... or on host side, usbnet and random hwaddr | ||
19 | iface usb0 inet static | ||
20 | address 192.168.0.202 | ||
21 | netmask 255.255.255.0 | ||
22 | network 192.168.0.0 | ||
23 | gateway 192.168.0.200 | ||
24 | |||
25 | |||
26 | # Zaurus 2.4 Lineo net_fd; obsolete | ||
27 | iface usbd0 inet static | ||
28 | address 192.168.129.201 | ||
29 | netmask 255.255.255.0 | ||
30 | network 192.168.129.0 | ||
31 | gateway 192.168.129.200 | ||
32 | |||
33 | # iPAQ 2.4 mach-sa1100/usb-eth | ||
34 | # (192.168.0.202 is the iPAQ's IP, 192.168.0.200 is the host's IP) | ||
35 | iface usbf inet static | ||
36 | address 192.168.0.202 | ||
37 | netmask 255.255.255.0 | ||
38 | network 192.168.0.0 | ||
39 | gateway 192.168.0.200 | ||
40 | |||
41 | # Bluetooth networking | ||
42 | iface bnep0 inet dhcp | ||
43 | |||