blob: 58be50544b62bbb916bd652db5002efee69581e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Config file for the eagle-adsl ebuild
# Set the options path
OPTIONS="/etc/eagle-usb/dsp/eagle-usb.conf"
# Set DSP code path
DSP="/etc/eagle-usb/dsp"
# Set default synchro timeout in seconds
SYNCHRO_TIMEOUT=120
# Set the peer filename
# This should be in /etc/ppp/peers/
PEER="dsl.peer"
# Method: dhcpip, staticip or pppoa
METHOD=dhcpip
# Static IP stuff : IP, Gateway, Netmask
#STATIC_IP="192.168.1.1"
#STATIC_GW="192.168.1.254"
#STATIC_NM="255.255.255.0"
LINKNAME=eagle
# setting DEBUG to YES or yes will cause some extra output to the log and to stderr
# recommended for diagnosing problems. You might also want to use PPPDOPTIONS below...
DEBUG=no
# PPPDOPTS for any extra options for pppd. e.g.:
# PPPDOPTS='debug '
# DHCPCDOPTS for any extra options for dhcpcd. e.g.:
# DHCPCDOPTS="-R"
|