slitaz-boot-scripts annotate etc/network.conf @ rev 330

Added tag 5.3.1 for changeset 11d0305fa1c6
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jan 17 19:14:14 2013 +0100 (2013-01-17)
parents c2eb90cb74f2
children b2ca17642fab
rev   line source
pankso@8 1 # /etc/network.conf: SliTaz system wide networking configuration.
pankso@8 2 # Config file used by: /etc/init.d/network.sh
pankso@8 3 #
pankso@8 4
pankso@8 5 # Set default interface.
pankso@8 6 INTERFACE="eth0"
pankso@8 7
pankso@8 8 # Dynamic IP address.
pankso@8 9 # Enable/disable DHCP client at boot time.
pankso@8 10 DHCP="yes"
pankso@8 11
pankso@8 12 # Static IP address.
pankso@8 13 # Enable/disable static IP at boot time.
pankso@8 14 STATIC="no"
pankso@8 15
paul@181 16 # Set IP address and netmask for a static IP.
pankso@8 17 IP="192.168.0.6"
pankso@8 18 NETMASK="255.255.255.0"
pankso@8 19
erjo@326 20 # Set broadcast address
erjo@326 21 BROADCAST="192.168.0.255"
erjo@326 22
pankso@8 23 # Set route gateway for a static IP.
pankso@8 24 GATEWAY="192.168.0.1"
pankso@8 25
erjo@326 26 # Set domain name
erjo@326 27 DOMAIN=""
erjo@326 28
paul@181 29 # Set DNS server for a static IP.
pankso@8 30 DNS_SERVER="192.168.0.1"
pankso@8 31
pankso@68 32 # Wifi connection.
pankso@68 33 # Enable/disable wireless connection at boot time.
pankso@68 34 WIFI="no"
pankso@68 35
pankso@68 36 # Wifi interface (iwconfig) and ESSID.
pankso@68 37 WIFI_INTERFACE="wlan0"
pascal@85 38 WIFI_ESSID="any"
pascal@311 39 WIFI_AP=""
pascal@85 40 WIFI_MODE="managed"
pascal@85 41 WIFI_KEY=""
pascal@102 42 WIFI_KEY_TYPE="none"
pascal@109 43 WPA_DRIVER=""
pascal@85 44 WIFI_CHANNEL=""
pascal@103 45 WIFI_IWCONFIG_ARGS=""