#!/usr/local/bin/php . 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. */ $pgtitle = array("VPN", "L2TP/IPsec", "Configuration"); require("guiconfig.inc"); if (!is_array($config['ipsec_l2tp']['radius'])) { $config['ipsec_l2tp']['radius'] = array(); } $ipsec_l2tpcfg = &$config['l2tp']; $pconfig['remoteip'] = $ipsec_l2tpcfg['remoteip']; $pconfig['localip'] = $ipsec_l2tpcfg['localip']; $pconfig['redir'] = $ipsec_l2tpcfg['redir']; $pconfig['mode'] = $ipsec_l2tpcfg['mode']; $pconfig['req128'] = isset($ipsec_l2tpcfg['req128']); $pconfig['radiusenable'] = isset($ipsec_l2tpcfg['radius']['enable']); $pconfig['radacct_enable'] = isset($ipsec_l2tpcfg['radius']['accounting']); $pconfig['radiusserver'] = $ipsec_l2tpcfg['radius']['server']; $pconfig['radiussecret'] = $ipsec_l2tpcfg['radius']['secret']; $pconfig['psk'] = $ipsec_l2tpcfg['ipsec']['psk'] ; $pconfig['nunits'] = $ipsec_l2tpcfg['nunits']; if (!$pconfig['nunits']) $pconfig['nunits'] = 16; if ($_POST) { unset($input_errors); $pconfig = $_POST; /* input validation */ if ($_POST['mode'] == "server") { $reqdfields = explode(" ", "localip remoteip"); $reqdfieldsn = explode(",", "Server address,Remote start address"); if ($_POST['radiusenable']) { $reqdfields = array_merge($reqdfields, explode(" ", "radiusserver radiussecret")); $reqdfieldsn = array_merge($reqdfieldsn, explode(",", "RADIUS server address,RADIUS shared secret")); } do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); if (($_POST['localip'] && !is_ipaddr($_POST['localip']))) { $input_errors[] = "A valid server address must be specified."; } if (($_POST['subnet'] && !is_ipaddr($_POST['remoteip']))) { $input_errors[] = "A valid remote start address must be specified."; } if (($_POST['radiusserver'] && !is_ipaddr($_POST['radiusserver']))) { $input_errors[] = "A valid RADIUS server address must be specified."; } if (!$input_errors) { $_POST['remoteip'] = $pconfig['remoteip'] = gen_subnet($_POST['remoteip'], $ipsec_l2tp_subnet_sizes[$_POST['nunits']]); $subnet_start = ip2long($_POST['remoteip']); $subnet_end = ip2long($_POST['remoteip']) + $_POST['nunits'] - 1; if ((ip2long($_POST['localip']) >= $subnet_start) && (ip2long($_POST['localip']) <= $subnet_end)) { $input_errors[] = "The specified server address lies in the remote subnet."; } if ($_POST['localip'] == $config['interfaces']['lan']['ipaddr']) { $input_errors[] = "The specified server address is equal to the LAN interface address."; } } } else if ($_POST['mode'] == "redir") { $reqdfields = explode(" ", "redir"); $reqdfieldsn = explode(",", "IPsec/L2TP redirection target address"); do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); if (($_POST['redir'] && !is_ipaddr($_POST['redir']))) { $input_errors[] = "A valid target address must be specified."; } } if (!$input_errors) { $ipsec_l2tpcfg['nunits'] = $_POST['nunits']; $ipsec_l2tpcfg['remoteip'] = $_POST['remoteip']; $ipsec_l2tpcfg['redir'] = $_POST['redir']; $ipsec_l2tpcfg['localip'] = $_POST['localip']; $ipsec_l2tpcfg['mode'] = $_POST['mode']; $ipsec_l2tpcfg['radius']['enable'] = $_POST['radiusenable'] ? true : false; $ipsec_l2tpcfg['radius']['accounting'] = $_POST['radacct_enable'] ? true : false; $ipsec_l2tpcfg['radius']['server'] = $_POST['radiusserver']; $ipsec_l2tpcfg['radius']['secret'] = $_POST['radiussecret']; $ipsec_l2tpcfg['ipsec']['psk'] = $_POST['psk']; write_config(); $retval = 0; if (!file_exists($d_sysrebootreqd_path)) { config_lock(); $retval = vpn_ipsec_l2tp_configure(); config_unlock(); } $savemsg = get_std_save_message($retval); } } ?>
    'vpn_ipsec_l2tp.php', 'Users' => 'vpn_l2tp_users.php'); dynamic_tab_menu($tabs); ?>
  > Off
  > Enable IPsec/L2TP server
IPSEC PSK
Enter the IPSEC Pre-Shared Key the IPsec/L2TP server should use on its side for all clients.
Server address
Enter the IP address the IPsec/L2TP server should use on its side for all clients.
Remote address range
Specify the start address and size for the client IP address subnet.
The IPsec/L2TP server will assign client addresses from the subnet given above to clients. The size of the subnet determines the maximum number of concurrent connections that the IPsec/L2TP server can handle.
 
  Note:
Don't forget to add a firewall rule to permit traffic from IPsec/L2TP clients!