#	$Id: ifcfg-description,v 1.4 2000/04/03 14:50:46 baggins Exp $
	DEVICE=<real device name>:<aliasnumber>
or
	DEVICE=<name>
	[ BOOTPROTO={none|bootp|dhcp} ]
ADDR=<IPv4 addres>
[ IPADDR_ALIASES="<IPv4 addres1> <IPv4 addres2> <...>" ]
IPV6_ADDR="<IPv6 addres1>/<prefix len> <IPv6 addres2>/<prefix len> <...>"
[ PREFIX= ]
[ NETWORK= ]
[ BROADCAST= ]
[ ONBOOT={no|yes} ]
[ MULTICAST={|no|yes} ]
[ ARP={no|yes} ]
[ SRC_ADDR=<IPv4 addres> ]
	
[ IPXFRAMETYPE={802_2|802_3|ETHERII|SNAP} ]
[ IPXNETWORK= ]
[ IPXPRIMARY={no|yes} ]
	
[ MTU= ]
[ METRIC= ]

if 	DEVICE=eth* ; then

	[ MEDIA={auto|10baseT|10base2|AUI} ]
	[ MAC=<hw addres> ]
	
elif	DEVICE=ppp* || DEVICE=slip* ; then
	
	PERSIST=yes|no
	MODEMPORT=<device, say /dev/modem>
	LINESPEED=<speed, say 115200>
	DEFABORT=yes|no 
	
	if	DEVICE=ppp* ; then
	
		AUTH=yes|no
		DEFROUTE=yes|no
		ESCAPECHARS=yes|no
	  	HARDFLOWCTL=yes|no (yes imples "modem crtscts" options)
    	 	PPPOPTIONS=<arbitrary option string>
		PAPNAME=<"name $PAPNAME" on pppd command line>
		REMIP=<remote ip address, normally unspecified>
    		MRU=
    		DISCONNECTTIMEOUT=<number of seconds, default currently 5>
    		RETRYTIMEOUT=<number of seconds, default currently 60>
    		INITSCRIPT=<modem command>
    		DATAFORCHAT=<list of variables>
    		<anything>=<anything> (for chat script)

	fi
fi

# You can also run some other programs *after* uping od downing
# device. Just create functions run_up() and run_down()
run_up()
{
	echo "This will be executed after uping device !"
}

run_down()
{
	echo "This will be executed after downing device !"
}

