Guest-User custom Webauth Page

I have created and loaded a custom webauth page on my 4400-Software version 4.2.61.0. The TAR file loaded successfully on the controller.
When a user logs in they get an ip however they never get re-directed to the page. It doesn't even try. When I try to web to 1.1.1.1 it displays page cannot be displayed.
The Default WEB page works just fine.
Any ideas?

Same problem here.
I have tried several webauth bundles (all upload fine). The client gets and IP, resolves the remote webserver address and is redirected to http://1.1.1.1 etc etc with all the correct parameters in the url, but the browser just displays a blank page. Running version 5.1.151.0. If I change Layer 3 security to Internal, I get the standard page displayed fine.

Similar Messages

  • Need my custom webauth page displayed with HTTP instead of HTTPS

    I have a custom webauth page installed that I am using with web passthrough authentication on my WLC2006 in order to put up a acceptable use policy page.
    The WLC uses HTTPS to display this which causes a security certificate warning to appear if I go with the WLC's own self-signed certificate. Is there a way I can get the WLC to use plain HTTP to display this page instead so I can eliminate the warning?
    I have already tried installing a trusted 3rd party certificate on the WLC, but I have this very strange problem where mucking with the WLC's web authentication certificate in any manner causes all network activity on the WLC to break except for CDP and ARP, essentially leaving the WLC dead. Three weeks of troubleshooting with Cisco TAC has yielded no progress on that front so now I am trying to bypass the need for a security certificate altogether since I really don't need to encrypt my acceptable use policy page.

    The documentation doesn't provide very clear direction, does it?
    To download the WLC's default webauth page, browse to the controller's Security > Web Login Page. Make sure the web authentication type is Internal (Default). Hit the Preview button. Then use your browser's File > Save As... menu item to save the HTML into a file. Edit this to your liking and bundle it and any graphics images up into a TAR archive, then upload via the controller's COMMAND page.

  • Viewing/uploading customized WebAuth pages

    Howdy,
      I've got a 5508 running 7.6.100 acting as an anchor in a remote location. It is using customized WebAuth pages but I'm needing to verify the actual html content of those pages as they are in use today. Downloading a new WebAuth bundle is easy, and I know I can preview the WebAuth login page, and I've got the pages that 'should' have been downloaded to the controller- I need to see what's there now. Alas, because of my location, I can't simply toss a client on the WLAN to examine the pages either.
      Before having to overwrite the existing pages, does anyone have a way to upload or view customized pages on the WLC?

    AHA! CLI and Google-fu remain my best friends.
    Although the GUI in this version does not allow UPloading WebAuth bundles from the WLC, you can do it from the CLI, you just need the commands....
    Fire up your TFTP server (you could use FTP), and set the transfer commands using CLI on the WLC
      TRANSFER UPLOAD MODE tftp
      TRANSFER UPLOAD DATATYPE WEBAUTHBUNDLE
      TRANSFER UPLOAD SERVERIP tftp-server-address
      TRANSFER UPLOAD FILENAME destination-filename
      TRANSFER UPLOAD START
    Check your settings and click 'y' to start
    Viola, a copy of the current WebAuth bundle! Unzip the bundle and you can see the current web pages used.

  • Custom webauth settings in between Anchor & Foreign

    Hi techies,
    We have implemented a new wireless mobility guest SSID in between the anchor and multiple foreign controllers.
    We are using a custom webauth page, written by the customer, which was working great.
    Since we've upgraded to 7.2.115.2, we receive a couple of complaints from users saying that they receive the default Cisco web auth login page, instead of the custom. But, after they successfully logged on, they see the successfull page of the custom webauth package? Which seems quite strange. It seems like the webauth pages from the default Cisco one and our custom are getting mixed during the authentication process.
    I have read in the mobility design guide about which settings should be absolutely identical in between the anchor & foreign controller(s).
    So I've checked them and I see a difference in the web auth settings, under the security tab in the WLC, which tells the controller if it must use the default internal page, or a custom one. We've uploaded the custom web-auth package only to the anchor controller. The foreign controller have this option set to "Internal (default)".
    Do we need to upload the same custom webauth .tar package to all of the foreign controllers to mitigate this?
    It seems I can't find it in any ofthe cisco docs available..
    Thanks!
    Dion Dohmen

    I think there was an issue with what you are seen with versions of 7.2. The webauth should be in the anchor WLC no matter what. You can search the forums as others have ran into that issue also.
    Sent from Cisco Technical Support iPhone App

  • Custom WebAuth

    I am basically trying to take the e-mail pass-through page and manipulate the simple html code say Signature instead of Email Address. However Every time I copy the code and open up the login.html that I upload with the custom webauth page I no longer have a submit button and even when I hit enter it no longer redirects me anywhere. Basically the need for this is to have the users name in the system to log them. We are just trying to figure out if there is a way for a guest to self register themselves by reading a license agreement and then signing at the bottom. Thanks in advance for any help that could be provided

    Just in case somebody is having the same problem.
    I did a "view source" from the internal web auth webpage and saved it to login.html.
    The internal webpage file path and the "Customised (Downloaded)" filepath are two different locations. So when you upload the login.html page you also need to bundle in loginscript.js (however I would rename loginscript.js to something else and change the reference to it in login.html). Here is the code for loginscript.js
    function getHtmlForButton(nameStr, str, bClass,onClickFn){
        if(nameStr == null || nameStr ==""
          || str == null || str ==""
          || onClickFn == null || onClickFn =="") {
            debugMsg("One of the input params for the button is not available");
            return;
        document.writeln('');
    function submitAction(){
      if(document.forms[0].err_flag.value == 1){
        // This case occurs when user's attempt to login failed
        // and he is going to login again. This means we have already
        // extracted redirect url in his first attempt and its stored
        // in redirect_url input element. so just submit the form
        document.forms[0].err_flag.value = 0;
        document.forms[0].buttonClicked.value = 4;
        document.forms[0].submit();
      }else{
          var link = document.location.href;
          //alert("Link is "+link);
          var searchString = "?redirect=";
          var equalIndex = link.indexOf(searchString);
          var redirectUrl = "";
          if(equalIndex > 0) {
                equalIndex += searchString.length;
                redirectUrl=link.substring(equalIndex);
                var index=0;
                //add http only if url does not have
                index=redirectUrl.indexOf("http");
                if(index != 0){
                   redirectUrl = "http://"+ redirectUrl;
          if(redirectUrl.length > 255){
              redirectUrl = redirectUrl.substring(0,255);
          document.forms[0].redirect_url.value = redirectUrl;
          //alert("redirect url is "+document.forms[0].redirect_url.value);
          document.forms[0].buttonClicked.value = 4;
          document.forms[0].submit();
    function submitOnEnter(event)
      var NS4 = (document.layers) ? true : false;
      var code = 0;
      if (NS4)
        code = event.which;
      else
        code = event.keyCode;
      if (code==13) submitAction(); // 12 corresponds to enter event
    function checkForMsg(){
        if(document.forms[0].info_flag.value == 1){
            alert(document.forms[0].info_msg.value);

  • Is there a way to backup the Custom WebAuth from the WLC?

    is there any way to get the tar file (or all of the individual files) of the custom webauth pages from the WLC as we have lost our backup (dont ask, even I'm not sure how that happened)

    Yes simply connect to the guest SSID and save the pages, that will capture the script, jpg and html file, choose save as webpage complete

  • More than one customized webauth

    Hello,
    If possible i would like to use diffrent customized webauth page for to 2 diffrerents guest SSID.
    When the controller download the bundle (login.tar) it verify that login.html exist. If not -> error
    So it does not look possible to have differents login page.
    But why is it possible to assign Login, Login Failure, and Logout Pages per WLAN ?
    WLC5500 - 7.0.98
    Philippe

    As far as I know, in the webauth bundle you can add several customized webauths and then, when you configure your SSID, in security/layer3 you can override the global configuration and, for the list of all the files you download from the webauth list, select the file you want to use like "login webauth" only for this ssid, in this manner you could select differents webauth login pages for any ssid you need.
    Best regards.

  • Wlc 5508 : guest users to be configured only give access for internal SAP application

    Hi,
    I have one new requirement with one of the client.
    I have wlc 5508 with 6.0 firmware. I need to have one guest wlan which will have access only for internal SAP application.
    I have gone through cisco document for internet guest users , where web page will be redirected with user name and password once it is authenticated , we can access internet.
    Provided if we have access list configured in wlc ...  for internet access only /
    what about this mentioned scenario ?
    can anybody suggest on the same ?

    Hi Vinod,
    Go for the ACL on any Router or the switch.. i prefer not on the WLC..
    http://www.cisco.com/en/US/products/sw/secursw/ps1018/products_tech_note09186a00800a5b9a.shtml
    Here is the link as well to do it on the WLC
    http://www.cisco.com/en/US/tech/tk722/tk809/technologies_configuration_example09186a00807810d1.shtml
    Lemme know if this answered ur question..
    Regards
    Surendra

  • WCS Guest User Credentials print

    We encounter a minor but annoying issue when creating guest user accounts on our Wireless Control system.
    Once a guest user is created our reception often faces the need to print the new guest user out on paper, when printing the system always print an extra blank page, which is just a wasted page.
    As far as we can identify by viewing the source code for the Guest User Account Credentials page there is a parameter that causes this extra page to happened.
    <p style="page-break-after: always;">
    Since I doubt it will be something Cisco will spend a lot of resources on, I've been looking for the actual piece of code that creates this page in order to update the style sheet so it doesn’t produce this extra blank page, but so far without success.
    Any one got a pointer to what scripts / files that handles this part ?
    Note
    This has been observed on WCS version 6.0.202.0 and 7.0.164.0
    Any feedback is appriciated.

    Hi Kayle
    Yes thats an work around or just simple select what page to print during the print dialog.
    This is one of those situation that you know the system has an anoying error but at the same time also knowing that its by no way critical.
    I'll see if I cant report is as a bug and maybe it will be corrected in a furture release or maybe we have taken other means innto use before that.
    Thanks for your reply.

  • Customized webauth redirect to favorites tabs

    Hi!
    I´m trying to create a Customized WebAuth page for WLC 5.0. The dilemma is that customers that have several tabs that starts different webpages at start of the webbrowser would like to have those tabs redirected to the chosen startpage for every tab after login. As it is now the customized webauth appears on every tab and when You try to hit the update buttom on the webbrowser a popupmessagebox appear with the notice that Your already logged in. Instead of that message I would like to be redirected to the appropriate website chosen for that specifik tab. Hope You understand the dilemma and that there are someone that have an answer to share. How do I configure the customized "Login.html" to achieve the desired act?
    Regards
    Peter Vahlersvik

    In order to have the web page load properly, it is not sufficient to set the web-authentication type as customized globally in the Security > Web Auth > Web login page. It must also be configured on a particular WLAN . In order to do this, complete these steps:
        Log into the GUI of the WLC.
        Click on the WLANs tab, and access the profile of the WLAN configured for Web-authentication.
        On the WLAN > Edit page, click the Security tab. Then, choose Layer 3.
        On this page, choose None as the Layer 3 Security.
        Check the Web Policy box, and choose the Authentication option.
        Check the Over-ride Global Config Enable box, choose Customized (Downloaded) as the Web Auth Type, and select the desired login page from theLogin Pagepull down menu. Click Apply

  • User detail in custom master page

    Hi All,
    I want to make appear logged in user detail in master page. 
    In SharePoint 2013, User can see "about me" detail in System account appearing at top right corner. 
    I want same user detail to appear in custom master page. I am not sure where we can look for it. 
    I guess we need to copy user detail tag from oslo master page and can paste in our custom master page. 
    But i am not sure where to find this. 
    Any help is much appreciated.
    Thanks..
    Rakesh

    Hi,
    According to your post, my understanding is that you wanted to display user information in the master page.
    We can register SPSWC at the top of the master page to call the user profiles.
    Register SPSWC at the top of the master page:
    <%@ Register Tagprefix="SPSWC" Namespace="Microsoft.SharePoint.Portal.WebControls" Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    Register the propertys below the starting Form tag:
    <SPSWC:ProfilePropertyLoader runat="server"/>
    There are some good articles for your reference.
    http://chayadigital.wordpress.com/2012/03/20/displaying-user-information-on-a-master-page-in-sharepoint-2010/
    http://chrisstahl.wordpress.com/2012/12/21/user-information-in-sharepoint-2010-with-help-of-the-spcwc-control/
    http://blog.bugrapostaci.com/2011/06/22/sharepoint-2010-change-your-display-of-wellcome-name/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How hide ribbon bar for read only users from custom master page.

    Hi,
    I want to hide the ribbon bar for read only users, on my custom master page I put inside of a SharePoint:SPSecurityTrimmedControl this div: <div id="ms-designer-ribbon">, but when I  save the changes the master page does not work
    anymore.
    <!--MS:<SharePoint:SPSecurityTrimmedControl runat="server" AuthenticationRestrictions="AddAndCustomizePages">-->
    <div id="ms-designer-ribbon">
    <!--SID:02 {Ribbon}-->
    <!--PS: Start of READ-ONLY PREVIEW (do not modify) --><div class="DefaultContentBlock" style="background:rgb(0, 114, 198); color:white; width:100%; padding:8px; height:64px; ">The SharePoint ribbon will be here when your file is either previewed on or applied to your site.</div><!--PE: End of READ-ONLY PREVIEW -->
    </div>
    <!--ME:</SharePoint:SPSecurityTrimmedControl>-->
    I'll appreciate any suggestions in order to solve this.
    Regards.

    did you close browse and open a fresh session?
    also authericationrestrictions for add & customize people so its more than read...
    check this one
    http://msdn.microsoft.com/en-us/library/jj822366.aspx
    another blog for same stuff:http://spgurunet00.web707.discountasp.net/post/2012/12/13/Hiding-SharePoint-2013-Ribbon-from-Anonymous-Users.aspx
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Customizing a User Management OAF Page - Approach

    Hi,
    I have a requirement to customize a User Management Registration Page for external user.
    I need to add 4 new fields on the page. Perform certain validations on those fields and then derive and pass PartyId value to the already existing column in the Entity object.
    Entity object does not write directly in table but uses a "RegistrationBean" to insert row in the table.
    Could you please tell me whats the best approach to do the customization.
    Thanks!
    Ritu
    Edited by: user13715401 on Jul 19, 2012 7:56 AM

    Hi Parag,
    Thanks for looking into this.
    I am trying to customize "B2CRegistrationPG" under "oracle.apps.fnd.umx.userAdmin.webui".
    I am using "Individual User Registration" process. User Management -> Registration Processes -> Select Self Service Account creation in "Type" field.
    To see this page on application, you need to setup profile option: "UMX: Register Here Link - Default Registration Process" to "Individual User Registration" at server level.
    Launch Oracle applications login page. "register here" link will appear on th ehome page after setting the profile option. This link opens this page.
    With the standard functionality this process creates a fnd user and a person party.
    I want to include customer number field on this page. My requirement is to create party relationship along with fnd user and person party as mentioned above.
    Oracle has provided a business even that create evrything I wanted just that I should be able to pass the party id to it through the OAF Page.
    B2CRegistrationPG already contains OrganizationId formvalue. This formvalue is attached to View Instance -"OrganizationsVO" and view attribute - "PartyId".
    OrganizationsVO is made of OrganizationsEO which contains the code to call registrationBean to set the partyid " registrationbean.setOrganizationPartyId(getPartyId().toString());"
    I am trying to extend the controller on the "person information" region and set the form value in controller, which I have not been successful with. It just does not set OrganizationId form value.
    Any kind of inputs will be appreciated
    Thanks!
    Ritu
    Edited by: user13715401 on Jul 19, 2012 8:34 AM

  • Restric WebAuth Guest User

    Hi All,
    Anyone has idea how to restric a wireless web auth guest user account to be used from a particular PC or MAC. Actually we have Guest SSID and we have enabled webauth on it. Now we have some guests users who are coming daily for a year. we have given them a infinite guest user account for them to use when ever they come to office so that we dont need to create a new one every day. now problem which we are facing is they are sharing this password with some other guest/employee and other guests are using this password.
    I can control concurrent login by defining some count but it will not help. Is there any way so that I can integrate Web-auth authentication with ACS and then define mac address filter/Network access restriction so that only that particular mac address can user that guest user name & password.
    or any other way to achieve this ... v have 5508 controllers ACS (4.2)  and WCS running 7 vesion.
    any help would be useful.

    If the guest is staying for one year, it might be worth considier to create an AD/radius account for him rather than using the guest feature :-)
    You can create the guest account on ACS, configure the WLC to check local db and then radius as fallback when user is not found for the webauth authentication.
    From there, on ACS with a NAP you should maybe be able to restrict that account to a single mac address ?
    This policy system is easier on ACS 5 btw.
    Nicolas

  • How can I create a custom environment for the guest user in Mavericks?

    Hello Mavericks insiders
    I need to setup several new MacBooks running Mavericks for school use. We want to use guest because everything is reset at each login. However, I first need to permanently customise the environment for the guest user:
    - doing program first runs
    - adjusting printer settings
    - dock settings
    - wallpper
    I think I have to copy certain library files in the Terminal. Which files exactly? From where to where? What is the correct Terminal syntax to do so?
    Many thanks in advance!
    Morgy

    Hello,
    I am not sure how I wound-up in the server forum. I am using the desktop version of OS X 10.7.4.
    Thanks

Maybe you are looking for

  • Problems with document attachments

    I generally look at email as web mail. When senders send me Word documents they often don't show up as separate attachments. A strange detail is that the total size of the message, e.g., 120 KB, shows that the document is there somewhere, but is not

  • How do I make new tabs?

    When I click a link I'd like a new tab to occur instead of the page I'm currently on being replaced with new one.

  • Does anyone know what a DNS relay 10.0.1.1 is?

    My console shows this message alot: b-cs-ibook-g4 mDNSResponder: NOTE: Wide-Area Service Discovery disabled to avoid crashing defective DNS relay 10.0.1.1. What is a DNS relay? I've been having start up problems with 10.4.5 since I updated from 10.4.

  • Getting a compilation error. Says ; is missing in line 34

    // A program to demonstrate the use of JList's //Import Statements import javax.swing.*; import java.awt.*; import java.awt.event.*; public class ListTest extends JFrame{      //Class Declarations      JList list;      String[] colorNames = {"black",

  • Running Secure Code using Subject.doAs

    Hi, I would like to call a secure EJB-Method from a servlet. So I need to authenticate before making the call. For that I use JAAS´LoginContext.login() method. the call of the EJB-Methods are dfined in a PrivilegedAction-Class. The authentication wor