Changes by Chris Buechler Additions by Scott Ullrich Copyright (C) 2004-2009 BSD Perimeter LLC. Copyright (C) 2009 Scott Ullrich All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* pfSense_MODULE: interfaces */ ##|+PRIV ##|*IDENT=page-interfaces-ppp-edit ##|*NAME=Interfaces: PPP: Edit page ##|*DESCR=Allow access to the 'Interfaces: PPP: Edit' page. ##|*MATCH=interfaces_ppp_edit.php* ##|-PRIV require("guiconfig.inc"); if (!is_array($config['ppps']['ppp'])) $config['ppps']['ppp'] = array(); $a_ppps = &$config['ppps']['ppp']; $id = $_GET['id']; if (isset($_POST['id'])) $id = $_POST['id']; if (isset($id) && $a_ppps[$id]) { $pconfig['port'] = $a_ppps[$id]['port']; $pconfig['initstr'] = base64_decode($a_ppps[$id]['initstr']); $pconfig['simpin'] = $a_ppps[$id]['simpin']; $pconfig['pin-wait'] = $a_ppps[$id]['pin-wait']; $pconfig['apn'] = $a_ppps[$id]['apn']; $pconfig['apnum'] = $a_ppps[$id]['apnum']; $pconfig['phone'] = $a_ppps[$id]['phone']; $pconfig['username'] = $a_ppps[$id]['username']; $pconfig['password'] = $a_ppps[$id]['password']; $pconfig['localip'] = $a_ppps[$id]['localip']; $pconfig['gateway'] = $a_ppps[$id]['gateway']; if (isset($a_ppps[$id]['defaultgw'])) $pconfig['defaultgw'] = true; $pconfig['connect-timeout'] = $a_ppps[$id]['connect-timeout']; $pconfig['descr'] = $a_ppps[$id]['descr']; } if ($_POST) { unset($input_errors); $pconfig = $_POST; /* input validation */ $reqdfields = explode(" ", "port"); $reqdfieldsn = explode(",", "Serial Port"); do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); foreach ($a_ppps as $ppp) { if (isset($id) && ($a_ppps[$id]) && ($a_ppps[$id] === $ppp)) continue; if ($ppp['port'] == $_POST['port']) { $input_errors[] = "Port is in use"; break; } } if (!$input_errors) { $ppp = array(); $ppp['port'] = $_POST['port']; if ($_POST['initstr'] <> "") $ppp['initstr'] = base64_encode($_POST['initstr']); else unset($ppp['initstr']); if ($_POST['simpin'] <> "") { $ppp['simpin'] = $_POST['simpin']; $ppp['pin-wait'] = $_POST['pin-wait']; } else { unset($ppp['simpin']); unset($ppp['pin-wait']); } $ppp['apn'] = $_POST['apn']; if ($ppp['apn'] <> ""){ if ($_POST['apnum'] <> "") $ppp['apnum'] = $_POST['apnum']; else $ppp['apnum'] = "1"; } else { unset($ppp['apn']); unset($ppp['apnum']); } $ppp['phone'] = $_POST['phone']; $ppp['username'] = $_POST['username']; $ppp['password'] = $_POST['password']; $ppp['localip'] = $_POST['localip']; $ppp['gateway'] = $_POST['gateway']; if ($_POST['defaultgw'] == "on") $ppp['defaultgw'] = true; else unset($ppp['defaultgw']); if ($_POST['connect-timeout'] <> "") $ppp['connect-timeout'] = $_POST['connect-timeout']; else unset($ppp['connect-timeout']); $ppp['descr'] = $_POST['descr']; $iflist = get_configured_interface_list(); foreach ($iflist as $if) { if ($config['interfaces'][$if]['if'] == basename($a_ppps[$id]['port'])) { $config['interfaces'][$if]['if'] = basename($ppp['port']); $thisif = $if; } } if (isset($id) && $a_ppps[$id]) $a_ppps[$id] = $ppp; else $a_ppps[] = $ppp; write_config(); if (!empty($thisif)) interface_ppp_configure($thisif); header("Location: interfaces_ppp.php"); exit; } } $pgtitle = "Interfaces: PPP: Edit"; include("head.inc"); ?>
PPP configuration
Parent interface

Pre-fill connection information: ATT Sprint Verizon

Link Type >This link will be used as the default gateway.
Init String
Note: Enter the modem initialization string here. Do NOT include the "AT" string at the beginning of the command.
Sim PIN
Sim PIN wait
Note: Time to wait for SIM to discover network after PIN is sent to SIM (seconds).
Access Point Name (APN)
APN number (optional)
Note: Defaults to 1 if you set APN above. Ignored if you set no APN above.
Phone Number
Note: Typically (*99# or *99***# or *99***1#) for GSM networks and *777 for CDMA networks
Username
Password
Local IP
Note: Enter your IP address here if it is not automatically assigned.
Remote IP (Gateway)
Note: Enter the remote IP here if not automatically assigned. This is where the packets will be routed.
Connection Timeout
Note: Enter timeout in seconds for connection to be established (sec.) Default is 45 sec.
Description
You may enter a description here for your reference (not parsed).