slitaz-tools diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rootfs/usr/share/examples/etc/network.conf	Wed May 21 20:41:15 2008 +0000
     1.3 @@ -0,0 +1,25 @@
     1.4 +# /etc/network.conf: SliTaz system wide networking configuration.
     1.5 +# Config file used by: /etc/init.d/network.sh
     1.6 +#
     1.7 +
     1.8 +# Set default interface.
     1.9 +INTERFACE="eth0"
    1.10 +
    1.11 +# Dynamic IP address.
    1.12 +# Enable/disable DHCP client at boot time.
    1.13 +DHCP="yes"
    1.14 +
    1.15 +# Static IP address.
    1.16 +# Enable/disable static IP at boot time.
    1.17 +STATIC="no"
    1.18 +
    1.19 +# Set IP address, and netmask for a static IP.
    1.20 +IP="192.168.0.6"
    1.21 +NETMASK="255.255.255.0"
    1.22 +
    1.23 +# Set route gateway for a static IP.
    1.24 +GATEWAY="192.168.0.1"
    1.25 +
    1.26 +# Set DNS server. for a static IP.
    1.27 +DNS_SERVER="192.168.0.1"
    1.28 +