diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2012-02-23 01:01:31 +0100 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2012-02-23 01:01:31 +0100 |
commit | 7ba4e6face203dd9c0dcef82c9be0d2e436d571a (patch) | |
tree | ccee42d2c4ef54fd0fe62eb997ddef621bbc56e9 /docs | |
parent | a7307cfcbbd117a74c555c290f012e33e74e99ba (diff) | |
parent | 2ca1000cb43de71d95061d78cb2affe01590247a (diff) | |
download | netctl-7ba4e6face203dd9c0dcef82c9be0d2e436d571a.tar.gz netctl-7ba4e6face203dd9c0dcef82c9be0d2e436d571a.tar.xz |
Merge remote-tracking branch 'brain0/working'
Diffstat (limited to 'docs')
-rw-r--r-- | docs/examples/pppoe | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/examples/pppoe b/docs/examples/pppoe new file mode 100644 index 0000000..2f50029 --- /dev/null +++ b/docs/examples/pppoe @@ -0,0 +1,31 @@ +CONNECTION='pppoe' +DESCRIPTION='Example PPPoE connection' +INTERFACE='eth0' +USER='example@yourprovider.com' +PASSWORD='very secret' + +# Always keep a connection established +CONNECTION_MODE='persist' +# Establish connection on demand +#CONNECTION_MODE='demand' +#IDLE_TIMEOUT=300 + +# Use default route provided by the peer (default: true) +#DEFAULTROUTE=1 +# Use DNS provided by the peer (default: true) +#USEPEERDNS=1 + +# Override default LCP parameters from /etc/ppp/options +#LCP_ECHO_INTERVAL=15 +#LCP_ECHO_FAILURE=10 + +# PPPoE options - experts only +# +# PPPoE service name +#PPPOE_SERVICE='' +# PPPoE access concentrator name +#PPPOE_AC='' +# Attach to existing session (sessid:macaddr) +#PPPOE_SESSION='' +# Only connect to specified MAC address +#PPPOE_MAC='' |