From 5e1acbdb00f38363d05845c9393d7c789fe9f598 Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Sat, 15 Sep 2012 15:56:04 +0200 Subject: IPv6 support for PPPoE connections (FS#31380) This fixes netcfg's share of FS#31380. Proposed by Gala Dragos. --- src/connections/pppoe | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/connections/pppoe b/src/connections/pppoe index 65a162d..17fe42d 100644 --- a/src/connections/pppoe +++ b/src/connections/pppoe @@ -43,6 +43,7 @@ pppoe_up() { [[ -n ${PPPOE_AC} ]] && echo "rp_pppoe_ac $(_quotestring "${PPPOE_AC}")" >> "${cfg}" [[ -n ${PPPOE_SESSION} ]] && echo "rp_pppoe_sess $(_quotestring "${PPPOE_SESSION}")" >> "${cfg}" [[ -n ${PPPOE_MAC} ]] && echo "pppoe-mac $(_quotestring "${PPPOE_MAC}")" >> "${cfg}" + [[ ${PPPOE_IP6} == yes ]] && echo "+ipv6" >> "${cfg}" /sbin/ip link set dev "${INTERFACE}" up /usr/sbin/pppd file "${cfg}" -- cgit v1.2.3-24-g4f1b