slitaz-boot-scripts view etc/network.conf @ rev 371

init: use busybox mount
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 10 10:33:58 2014 +0200 (2014-06-10)
parents b2ca17642fab
children 6c2d6362887d
line source
1 # /etc/network.conf: SliTaz system wide networking configuration.
2 # Config file used by: /etc/init.d/network.sh
3 #
5 # Set default interface.
6 INTERFACE="eth0"
8 # Dynamic IP address.
9 # Enable/disable DHCP client at boot time.
10 DHCP="yes"
12 # Static IP address.
13 # Enable/disable static IP at boot time.
14 STATIC="no"
16 # Set IP address and netmask for a static IP.
17 IP="192.168.0.6"
18 NETMASK="255.255.255.0"
20 # Set broadcast address
21 BROADCAST="192.168.0.255"
23 # Set route gateway for a static IP.
24 GATEWAY="192.168.0.1"
26 # Set domain name
27 DOMAIN=""
29 # Set DNS server for a static IP.
30 DNS_SERVER="192.168.0.1"
32 # Wifi connection.
33 # Enable/disable wireless connection at boot time.
34 WIFI="no"
36 # Wifi interface (iwconfig) and ESSID.
37 WIFI_INTERFACE="wlan0"
38 WIFI_ESSID="any"
39 WIFI_KEY=""
40 WIFI_KEY_TYPE="any"
41 WIFI_AP=""
42 WIFI_MODE="managed"
43 WIFI_CHANNEL=""
44 WPA_DRIVER=""
46 # Wifi network requiring a user and password
47 WIFI_IDENTITY=""
48 WIFI_PASSWORD=""