summaryrefslogtreecommitdiffstats
path: root/etc/inc/interfaces.inc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/inc/interfaces.inc')
-rw-r--r--etc/inc/interfaces.inc13
1 files changed, 8 insertions, 5 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc
index f2ad8d4..65e3996 100644
--- a/etc/inc/interfaces.inc
+++ b/etc/inc/interfaces.inc
@@ -969,24 +969,27 @@ EOD;
}
$mpdconf .= <<<EOD
-# Create link.
create link static lnk{$interface} modem
set link disable chap pap
set link accept chap pap eap
set link enable no-orig-auth
-# To make Ringback work we should specify how to handle incoming calls originated by it.
#set link enable incoming
set link action bundle {$interface}
EOD;
- if (!empty($ppp['username'])) {
+ if (empty($ppp['username'])) {
+ $ppp['username'] = "user";
+ $ppp['password'] = "none";
+ }
+ if (empty($ppp['password']))
+ $ppp['password'] = "none";
+
$mpdconf .= <<<EOD
set auth authname "{$ppp['username']}"
- set auth password "{$ppp['password']}"
+ set auth password {$ppp['password']}
EOD;
- }
$mpdconf .= <<<EOD
set modem device {$ppp['port']}
OpenPOWER on IntegriCloud