diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-25 17:00:41 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-25 17:00:41 +0000 |
commit | 10d470b9d1f84f4b1c832811e506ffed77172831 (patch) | |
tree | 5f81f67239952b2c9e184a12f705c32166abebcb /usr/local | |
parent | 6cd5852ed0d7c1a8426821356f4d388485bfbcfe (diff) | |
download | pfsense-10d470b9d1f84f4b1c832811e506ffed77172831.zip pfsense-10d470b9d1f84f4b1c832811e506ffed77172831.tar.gz |
WINS Server option
Ticket #255
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/vpn_pptp.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/usr/local/www/vpn_pptp.php b/usr/local/www/vpn_pptp.php index e36b0d8..c650877 100755 --- a/usr/local/www/vpn_pptp.php +++ b/usr/local/www/vpn_pptp.php @@ -40,6 +40,7 @@ $pconfig['remoteip'] = $pptpcfg['remoteip']; $pconfig['localip'] = $pptpcfg['localip']; $pconfig['redir'] = $pptpcfg['redir']; $pconfig['mode'] = $pptpcfg['mode']; +$pconfig['wins'] = $pptpcfg['wins']; $pconfig['req128'] = isset($pptpcfg['req128']); $pconfig['radiusenable'] = isset($pptpcfg['radius']['enable']); $pconfig['radacct_enable'] = isset($pptpcfg['radius']['accounting']); @@ -103,6 +104,7 @@ if ($_POST) { $pptpcfg['redir'] = $_POST['redir']; $pptpcfg['localip'] = $_POST['localip']; $pptpcfg['mode'] = $_POST['mode']; + $pptpcfg['wins'] = $_POST['wins']; $pptpcfg['req128'] = $_POST['req128'] ? true : false; $pptpcfg['radius']['enable'] = $_POST['radiusenable'] ? true : false; $pptpcfg['radius']['accounting'] = $_POST['radacct_enable'] ? true : false; @@ -267,6 +269,15 @@ function enable_change(enable_over) { Enter the shared secret that will be used to authenticate to the RADIUS server.</td> </tr> + + </tr> + <tr> + <td width="22%" valign="top" class="vncell">WINS Server</td> + <td width="78%" valign="top" class="vtable"> + <input name="wins" class="formfld" id="wins" size="20" value="<?=htmlspecialchars($pconfig['wins']);?>"> + </td> + </tr> + <tr> <td height="16" colspan="2" valign="top"></td> </tr> |