Project

General

Profile

Actions

Feature #852

closed

Add Captive Portal default realm

Added by Joel Chambers over 13 years ago. Updated over 5 years ago.

Status:
Rejected
Priority:
Normal
Assignee:
-
Category:
Captive Portal
Target version:
-
Start date:
08/26/2010
Due date:
% Done:

0%

Estimated time:
Plus Target Version:
Release Notes:

Description

Hi,

There is one particular feature I would like added to the Captive Portal module. It would be nice to have a default realm added to usernames passed on to the RADIUS server, with the assumption that if you manually type in a realm it will override that default. I believe this would be a relatively simple feature, but I’m not a very good programmer so I apologize if this is too much to ask. It would help us greatly in our networks if this was a feature.

Thanks for your time,
JoelC

Actions #1

Updated by Chris Buechler over 13 years ago

  • Target version changed from 1.2.3 to Future
  • Affected Version deleted (All)
Actions #2

Updated by Chris Buechler over 9 years ago

  • Status changed from New to Needs Patch
Actions #3

Updated by Chris Buechler over 8 years ago

  • Target version deleted (Future)
Actions #4

Updated by A FL over 5 years ago

It can already be done by creating a custom login page with some javascript on it

<input type="text" id="realm" value="justADefaultRealm" onchange="update_user_field()" />
<input type="text" id="login" onchange="update_user_field()" />

<input type="hidden" id="auth_user" />

<script>
function update_user_field() {
    var realm = document.getElementbyId("realm").value;
    var login = document.getElementbyId("login").value;

 document.getElementbyId("auth_user").value = login+"@"+realm;
}
</script>

This issue can be closed.

Actions #5

Updated by Renato Botelho over 5 years ago

  • Status changed from Needs Patch to Rejected
Actions

Also available in: Atom PDF