From c037ed5e21d74b7b264b793849bab2972d6912cb Mon Sep 17 00:00:00 2001 From: Thomas Bächler Date: Tue, 29 May 2012 17:18:51 +0200 Subject: pppoe default to noauth pppd is a bit stupid with regard to configuration: It will always read /etc/ppp/options. This overrides the default 'auth' setting. --- src/connections/pppoe | 1 + 1 file changed, 1 insertion(+) (limited to 'src/connections') diff --git a/src/connections/pppoe b/src/connections/pppoe index ba9f67a..0ce123c 100644 --- a/src/connections/pppoe +++ b/src/connections/pppoe @@ -17,6 +17,7 @@ pppoe_up() { echo "plugin rp-pppoe.so" >> "${cfg}" echo "nic-${INTERFACE}" >> "${cfg}" + echo "noauth" >> "${cfg}" if checkyesno ${DEFAULTROUTE:-1}; then echo "defaultroute" >> "${cfg}" else -- cgit v1.2.3-24-g4f1b