slitaz-tools annotate rootfs/usr/share/examples/etc/network.conf @ rev 204

keymap.conf and locale.conf are declared now
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 21 20:41:15 2008 +0000 (2008-05-21)
parents
children af65458ca488
rev   line source
pankso@10 1 # /etc/network.conf: SliTaz system wide networking configuration.
pankso@10 2 # Config file used by: /etc/init.d/network.sh
pankso@10 3 #
pankso@10 4
pankso@10 5 # Set default interface.
pankso@10 6 INTERFACE="eth0"
pankso@10 7
pankso@10 8 # Dynamic IP address.
pankso@10 9 # Enable/disable DHCP client at boot time.
pankso@10 10 DHCP="yes"
pankso@10 11
pankso@10 12 # Static IP address.
pankso@10 13 # Enable/disable static IP at boot time.
pankso@10 14 STATIC="no"
pankso@10 15
pankso@10 16 # Set IP address, and netmask for a static IP.
pankso@10 17 IP="192.168.0.6"
pankso@10 18 NETMASK="255.255.255.0"
pankso@10 19
pankso@10 20 # Set route gateway for a static IP.
pankso@10 21 GATEWAY="192.168.0.1"
pankso@10 22
pankso@10 23 # Set DNS server. for a static IP.
pankso@10 24 DNS_SERVER="192.168.0.1"
pankso@10 25