Best way for wireless guest authentication

Hi
Can anyone tell me what a good way to authenticate guest wireless in my workplace, we currently use mac auth and usernames in the controller, which is not Cisco.
What solutions are out there for this, ie something separate to the controller like a radius or authentication server, we may want the guests to register themselves by providing there mobile number etc
Any ideas?

When you want to provide guest authentication and then you want certain fields for the user to enter, guest access is best when there is a portal page. When you want guest to enter information like cell number etc, then you either need to find a 3rd party captive portal software, or external webauth server or if you have Cisco wlc, you use ISE.
Your final requirements will determine what solution can or can't work.
Sent from Cisco Technical Support iPhone App

Similar Messages

  • Best Way for login???

    I was just wondering what everyone thought would be the best
    way for a secure login with 4 different access levels. It's going
    to do just how it sounds, different levels see/have different
    access to different functions and components in the program. Would
    an initial php login work? Would it be difficult to implement it
    inside Flex?? Any input would be greatly appreciated. TIA!!!

    It is absolutely possible using states. What you do is assign
    certain access level to the different states for example...
    <mx:states>
    <mx:State name="Visitor">
    <mx:RemoveChild target="{myLoginHBox}"/>
    <mx:AddChild relativeTo="{mainMenuHBox}"
    position="lastChild">
    <view:LogoutHBox/>
    </mx:AddChild>
    <mx:AddChild relativeTo="{mainMenuViewstack}"
    position="lastChild">
    <mx:Canvas label="Visitor Area" width="100%"
    height="100%" id="canvas1">
    </mx:Canvas>
    </mx:AddChild>
    </mx:State>
    <mx:State name="Youth" basedOn="Visitor">
    <mx:RemoveChild target="{canvas1}"/>
    <mx:AddChild relativeTo="{mainMenuViewstack}"
    position="lastChild">
    <mx:Canvas label="Youth Area" width="100%" height="100%"
    id="canvas2">
    </mx:Canvas>
    </mx:AddChild>
    </mx:State>
    <mx:State name="Member" basedOn="Youth">
    <mx:RemoveChild target="{canvas2}"/>
    <mx:AddChild relativeTo="{mainMenuViewstack}"
    position="lastChild">
    <mx:Canvas label="Member Area" width="100%" height="100%"
    id="canvas3">
    </mx:Canvas>
    </mx:AddChild>
    </mx:State>
    <mx:State name="PowerMember" basedOn="Member">
    <mx:RemoveChild target="{canvas3}"/>
    <mx:AddChild relativeTo="{mainMenuViewstack}"
    position="lastChild">
    <mx:Canvas label="Power Member Area" width="100%"
    height="100%" id="canvas4">
    </mx:Canvas>
    </mx:AddChild>
    </mx:State>
    <mx:State name="AssistantAdministrator"
    basedOn="PowerMember">
    <mx:RemoveChild target="{canvas4}"/>
    <mx:AddChild relativeTo="{mainMenuViewstack}"
    position="lastChild">
    <mx:Canvas label="Assistant Administrator Area"
    width="100%" height="100%" id="canvas5">
    </mx:Canvas>
    </mx:AddChild>
    </mx:State>
    <mx:State name="SeniorAdministrator"
    basedOn="AssistantAdministrator">
    <mx:RemoveChild target="{canvas5}"/>
    <mx:AddChild relativeTo="{mainMenuViewstack}"
    position="lastChild">
    <mx:Canvas label="Senior Administrator Area" width="100%"
    height="100%" id="canvas6">
    </mx:Canvas>
    </mx:AddChild>
    </mx:State>
    </mx:states>
    Then you create a loginResultHandler that first checks to see
    if the user is logged in. If the user is logged you then check for
    their access level. Personally I used digits (in my example roles 1
    through 6). The digit is what I store in my database. Once the
    logged in user's role is established the state is changed
    accordingly. Do some research on using states! It will absolutely
    help you to do what you are looking to do. An example of the code
    for the loginResultHandler is...
    // loginResultHandler function
    private function loginResultHandler(event:ResultEvent):void
    currentUser = event.result as User;
    if (currentUser.loggedIn)
    // If login successful
    if (currentUser.roles == "5")
    this.currentState='Youth';
    else if (currentUser.roles == "4")
    this.currentState='Member';
    else if (currentUser.roles == "3")
    this.currentState='PowerMember';
    else if (currentUser.roles == "2")
    this.currentState='AssistantAdministrator';
    else if (currentUser.roles == "1")
    this.currentState='SeniorAdministrator';
    else
    currentUser.roles == "6";
    this.currentState='Visitor';
    myLoginHBox.visible=false;
    else
    // If login unsuccessful
    Alert.show("Login unsuccessful", "Server Authentication");
    I just finished setting up role based authentication using a
    combination of Flex 2, ColdFusion MX 7.02 and MS SQL Server Express
    2005. It took my two weeks to set up my CFC's (ColdFusion
    Components) and ActionScript files properly.
    My user login form is authenticated against my database. If
    the user is properly logged in he can only view what he is
    authorized to view. :)
    John

  • What are the best ways (for best performance) in MII to process the incoming process messages from shop floor systems to SAP ECC 6.0 and vice versa?

    Hi All,
    Can you please suggest to choose the best ways (for best performance) in MII (12.2 on NW 7.3), to process the incoming process messages from shop floor systems to SAP ECC 6.0 and vice versa?
    Thanks

    Hi Surya,
    Best practices for flow of data from ECC --> SAP MII --> Shop floor & Vice verse:
    1. Send ECC data through IDOC's/RFC's as messages to SAP MII message listener and BSL transaction process data and update directly on shop floor database as if you configured in Data services or later send those data by web service to shop floor system (i.e. depends on Shop floor machines).
    From Shop floor:
    shop floor --> SAP MII --> ECC
    1. Use either Web service or fetch data from DB and pass data to BAPI's  for sending to ECC through BLS transaction.
    Regards,
    Praveen Reddy

  • Best way for building an application main frame

    I'm about to program a desktop application.
    The main frame will have menus, toolbar, status bar etc.
    There will be a lot of interaction between the menus, toolbar buttons and other custom gui components (such as an editor).
    My question is which is the best way for building it.
    Cramming all the code in one class file is out of the question.
    I thought about making my own custom JFrame and add API functions like for it so different GUI elements can be accessed.
    Each component which will be manipulated will be in its own class file with the constructor accepting a reference to my custom JFrame object which it is contained in.
    Any suggestions on the matter would be of great help since I've never done extensive Swing programming before.
    P.S.
    The application makes extensive use of RMI.
    What considerations should I take into account (except using SwingUtilities.invokeLater()) ?

    Hi,
    I have replied on this subject somewhere else today but what I do is have one simple entry point where I just instanciate a JFrame.
    On that frame I have a main JPanel. On that panel I add new objects like JPanels, tabs etc.
    I keep each new panel in a separate source as it is easier when the application grows, and it will. That also means that several programers can work with the same application without interfearing each other.
    I hope you understand what I mean the the thing is to split up the code into several sources.
    It may not suit everyone but I found this approach to be the best for me.
    Klint

  • What is the best printer for wireless printing with the iPhone?

    What is the best printer for wireless printing witth the iPhone?

    Roaminggnome has the list......pick on of those TERRIBLE printers and go for it....
    I hope Apple see fit to broaden this list, because, having thrown away several of those brands in my life, I now have a network compatble BROTHER printer that's awesome,
    "There's an app for that," ie the BROTHER, but you can only print pictures and soforth.
    Apple, step up, open up the list of printers we can use!

  • WHat is the best way for other iphone users to share pictures with me?  I am doing a project which req. people to send me 100 pictures at a time that I'll be putting in my iphoto?

    WHat is the best way for other iphone users to share pictures with me?  I am doing a project which req. people to send me 100 pictures at a time that I'll be putting in my iphoto? thank you.

    ingridlisa,
    I'd suggest to ask them to create Shared PhotoStreams and to invite you to view the streams, see:
    iCloud: Using and troubleshooting Shared Photo Streams
    Regards
    Léonie
    Added:
    that I'll be putting in my iphoto?
    Will you be collecting the photos in iPhoto on your iPhone or on a Mac? On a Mac a Shared PhotoStream requires Mac OS X 10.8.2.

  • Acrobat Standard XI, but can only find the CD for windows.  I have a mac (I have access to an external CD drive and I have the product keys for windows).  What is the best way for me to install it?

    Hi, I purchased Acrobat Standard XI, but can only find the CD for windows.  I have a mac (I have access to an external CD drive and I have the product keys for windows).  I have never installed it anywhere else.  What is the best way for me to install it?

    Hi lintonm86921521,
    I can understand your concern & will guide you through this.
    I am so sorry to inform you that Acrobat XI Standard is not available on Mac, you can only use it on your Windows computer.
    You can also refer to the system requirements at : System requirements | Acrobat family of products—older versions (XI, X, 9)
    In case if you have any further query please let us know, we will be happy to help you.
    Regards,
    Aadesh

  • HT4914 I purchased iMatch because my old computer was failing and I was afraid of losing my music library. Now I bought a new laptop; what is the best way for me to transfer my library to my new laptop? Will iMatch help me do this?

    I purchased iMatch because my old computer was failing and I was afraid of losing my music library. Now I bought a new laptop; what is the best way for me to transfer my library to my new laptop? Will iMatch help me do this?

    Is/was failing or has failed?
    If the old computer still runs one of these methods may be best.
    Method 1
    Backup the library with this User Tip.
    Restore the backup to your new computer using the same tool used to back it up.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    I don't have personal experience with iTunes Match, but in principle you should be able to download all the tracks currently registered to your iTunes Match account. This isn't quite the same as restoring your previous library exactly as it was. There is always the potential for iTunes match to provide the wrong version of a song and could be content such as movies, podcasts, audiobooks etc. that would have been excluded.
    tt2

  • I am looking to start developing apps for the iTunes Store, but I have no previous experience. What is the best way for me to start on this? As in which programs and materials must I need and what I need to know. Thanks!

    I am looking to start developing apps for the iTunes Store, but I have no previous experience. What is the best way for me to start on this? As in which programs and materials must I need and what I need to know. Thanks!

    You will need a Mac, with OS X 10.6+ on it, to be able to develop iOS apps.
    There is some info on these pages :
    developer site : https://developer.apple.com
    developing for iOS 7 : https://developer.apple.com/ios7/
    developer support : https://developer.apple.com/support/
    developer forums : https://devforums.apple.com/index.jspa (you will need to be a registered developer to access them)

  • Hello, what is the best way for me to convert RW2 raw format for use in Photoshop CC

    Hello, what is the best way for me to convert RW2 raw format for use in Photoshop CC. I would appreciate any help with this.

    Thanks for the quick help. I do have to leave for work. When I try to
    download the images from the camera they seem to only be in jpeg (I don't
    see any rw2 or raw files to download). If I select the jpeg file it seems
    to only download a jpeg file. I do understand that I do have the option to
    open the jpeg in RAW. In doing this, is all the extra information included
    in the RAW file there or is it lost coming from the camera
    Once again thank you for trying to make me understand how this works.
    Have a great day.
    On Sat, Sep 13, 2014 at 12:14 PM, ssprengel <[email protected]>

  • Best way for capturing HDV

    Best way for capturing HDV
    using easy setup setted to HDV1080 50i (camera is a Sony HDV HC1) captured video look like sh...
    and when exported with compressor is worst!
    some idea?

    Ok fantastic ! you are right (the frustration was talking for me)
    video is shooted in 16:9 HDV 1080 50i
    Captured video looks:
    full of orizontal lines (that look like scan lines) expecially evident on figure edges and on motion subjects
    and
    like it was resized 1440x1080i from a different lower resolution
    video is exported with compressor
    MPEG-2 3.7Mbps 2-pass 16:9
    Description: Fits up to 150 minutes of video with Dolby Digital audio at 192 Kbps or 120 minutes with AIFF audio on a DVD-5
    File Extension: m2v
    Video Encoder
    Format: M2V
    Width and Height: Automatic
    Pixel aspect ratio: default
    Crop: None
    Frame rate: (100% of source)
    Frame Controls: Automatic
    Aspect ratio: 16:9
    Field dominance: Auto detect
    Average data rate: 3.7 (Mbps)
    2 Pass VBR enabled
    Maximum data rate: 7.5 (Mbps)
    High quality
    Best motion estimation
    Closed GOP Size: 1/2 second, Structure: IBBP
    DVD Studio Pro meta-data enabled
    In these case the first problem is i can't obtain 16:9 format an the lines becomes more more evidents
    software is Final cut Studio HD
    camera is Sony HDV HC1e
    hope I wrote all the info
    Thx

  • Best way for Email Notifications in EWS Managed API 2.0 [ Exchange Server 2013]

    Hi ,
    I want to know best way for Email Notifications in Exchange server. My
    organisation has 
    10 users, i want to get notification if any user mailbox got any new mail.
    i need to create API,
    that was consumed by another Team in their Application.
    I am using Exchange server 2013.
    Please share Your Ideas.
    Thank you

    Take a look at EWS Notifications
    http://msdn.microsoft.com/en-us/library/office/dn458791(v=exchg.150).aspx .
    Cheers
    Glen

  • What is the best  way for using a  C++ in the EJB?

    What is the best way for using C++ in the EJB ie
    either 1. Socket programming
    2. JNI

    To what purpose?
    To use C++ in the client you could generate IDL from your remote interfaces and run that through your vendor's IDL-to-C++ processor.

  • Which is the best way for posting a large number of records?

    I have around 12000 register to commit to dababase.
    Which is the best way for doing it?
    What depends on ?
    Nowadays I can't commit such a large number of register..The dabatase seems hanged!!!
    Thanks in advance

    Xavi wrote:
    Nowadays I can't commit such a large number of registerIt should be possible to insert tens of thousands of rows in a few seconds using an insert statement even with a complex query such as the all_objects view, and commit at the end.
    SQL> create table t as select * from all_objects where 0 = 1;
    Table created.
    Elapsed: 00:00:00.03
    SQL> insert into t select * from all_objects;
    32151 rows created.
    Elapsed: 00:00:09.01
    SQL> commit;
    Commit complete.
    Elapsed: 00:00:00.00
    I meant RECORDS instead of REGISTERS.Maybe that is where you are going wrong, records are for putting on turntables.

  • What's the best way for home sharing to iDevices without iTunes?

    What's the best way for home sharing movies and tv shows on my iDevices?  I know I can use home sharing through iTunes, but I'm looking for a way to share videos to my iDevices without having to leave my computer on.  I have a MacPro, iPhone, iPad, Airport Extreme, and Airport Express (and several external hard drives).  Can anyone suggest an app that would do this?  Can I have videos on an external hd attached to an Airport Extreme/Express and have it stream without iTunes?

    If your "server" is new enough to run Mountain Lion, you can purchase the OS X Server app from the Mac App store and you'll have everything you need to host a NetInstall (NetBoot) server.
    If your machine does not support Mountain Lion, you'll need to purchase the appropriate Mac OS X Server software (i.e. Lion Server or Snow Leopard Server)
    From there you can host NetInstall or NetRestore images, depending on your preferred workflow, which can be created using System Image Utility.
    As Richard points out you can also use Deploy Studio which, again depending on your preferred workflow, might simplify things.

Maybe you are looking for

  • Imac Intel based shutting down

    Hi, I'm having problems with my imac. it will turn off by it self after a few minutes of usage. And after it turn of, it will take a long time until I can turn it back on. I'm sure it a hardware issue because it happens even if I use windows with boo

  • How do I install an App on 200 iPods for University Students

    What kind of options are there for installing the same app (a free app) on 200 different iPod Touches? We have 200 new iPod touches that we need to get into the hands of 200 nursing students. We would like to load the Skyscape Resources app on each o

  • My .Mac site doesn't display in Safari

    Hi There, My site hosted on .mac displays in Firefox (mac & pc) and IE v5 & v6 (pc) but will not display in Safari. The page usually loads blank, but if you click and drag down on the white page, the site appears? Site URL: www.svelte.net.nz Any help

  • HOW EXPORT MY APPLICATION IN APEX

    Hi please I have a problem, I created my application in my computer of my job, but I want to export it with "support objects" and to work at home. When I export my application has problems because my application haven`t the tables. When I want to ins

  • IPad 3 can't connect wifi to ChinaNet when I update  iOS 6GM ,

    P.S ChinaNet is a network service in China,it's widely used