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

network.sh: enhance wifi setup
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 10 12:09:16 2008 +0000 (2008-07-10)
parents 3d8d75e24f0a
children 5661c121f569
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
pankso@8 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
pankso@8 20 # Set route gateway for a static IP.
pankso@8 21 GATEWAY="192.168.0.1"
pankso@8 22
pankso@8 23 # Set DNS server. for a static IP.
pankso@8 24 DNS_SERVER="192.168.0.1"
pankso@8 25
pankso@68 26 # Wifi connection.
pankso@68 27 # Enable/disable wireless connection at boot time.
pankso@68 28 WIFI="no"
pankso@68 29
pankso@68 30 # Wifi interface (iwconfig) and ESSID.
pankso@68 31 WIFI_INTERFACE="wlan0"
pascal@85 32 WIFI_ESSID="any"
pascal@85 33 WIFI_MODE="managed"
pascal@85 34 WIFI_KEY=""
pascal@102 35 WIFI_KEY_TYPE="none"
pascal@85 36 WIFI_CHANNEL=""
pascal@88 37 NDISWRAPPER_DRIVERS=""