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

Add OVH IP Failover support
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jan 17 08:32:57 2013 +0100 (2013-01-17)
parents c2eb90cb74f2
children b2ca17642fab
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_AP=""
40 WIFI_MODE="managed"
41 WIFI_KEY=""
42 WIFI_KEY_TYPE="none"
43 WPA_DRIVER=""
44 WIFI_CHANNEL=""
45 WIFI_IWCONFIG_ARGS=""