How to add an AP to a Controller

Hello, 
I'm not familiar with the process of how to add an access point to a controller. DHCP with option 43 has been configured for the subnet where the AP will be installed. The AP has obtained an IP address and I'd like to know how to discover it on the controller and add it.
Thanks in advance for your assistance. 
Best, ~zK 

Hi Zk,
You have to use DHCP option 43 in dhcp pool configured for AP to find out the WLC:
option 43 hex <hexadecimal string> 
More info about DHCP Option 43: http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wireless-lan-wlan/97066-dhcp-option-43.html
I will try to keep AP and WLC on same subnet.
More info about LAP registartion to WLC:
http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wireless-lan-wlan/70333-lap-registration.html
Regards
Dont forget to rate helpful posts

Similar Messages

  • How to add a ViewController to a Navigation Controller?

    How to add a ViewController to a Navigation Controller, if it contains a TableView as root?
    I'm trying to add a UIViewController (AddProjectViewController) to a Navigation Controller (navigationController), which has a Tableview set as root, and it does not work.
    This is how I have the files setup: http://d.pr/y8rt
    The code is in ProjectsController.m - please help

    Hi Andrei, and welcome to the Dev Forum!
    andreipotorac wrote:
    I'm trying to add a UIViewController (AddProjectViewController) to a Navigation Controller (navigationController), which has a Tableview set as root, and it does not work.
    You didn't say what user action should bring up the next controller. But for example, if you want an instance of AddProjectViewController to be pushed onto the nav controller's stack when the user selects a row in the table, something like this should work:
    // ProjectsController.m
    #import "ProjectsController.h"
    #import "AddProjectViewController.h"
    @implementation ProjectsController
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    // Navigation logic may go here. Create and push another view controller.
    AddProjectViewController *nextController = [[AddProjectViewController alloc]
    initWithNibName:@"AddProjectViewController" bundle:nil];
    // Pass selected object info to the new view controller here. E.g.:
    // Project *project = [projectsArray objectAtIndex: [indexPath row]];
    // nextController.projectTitle.text = project.projectTitle;
    [self.navigationController pushViewController:nextController animated:YES];
    [nextController release];
    - Ray

  • How to add a new element to a model node in the view controller?

    View Context
        myNode
             attri1
             attri2
    myNode is a web service model node. How to add a new element to this node?
    Regards,
    Hui
    Edited by: Hui Wang on Feb 15, 2008 12:05 PM

    Sudhir Gorantla wrote:>
    > Hi,
    >
    > myNode
    > attri1
    > attri2
    >
    > IMyNodeElement ele=wdContext.myNode().createMyNodeElement();
    >
    > ele.setAttri1("");
    > ele.setAttri2("");
    >
    > wdContext.nodeMyNode().addElement(ele);
    >
    > Regards,
    > Sudhir
    Hi we need a model as an input parameter when creating a element for a model node. How to get the instance of the model?
    Regards,
    Hui

  • How to add a custom multimedia playback control to add a time line of what is being played?

    How to add a custom skin in multimedia playback control to add a time line of what is being played?  As it is being played...
    I need a time line so any part of the what is being played can be found by time, ie at 1 minute and 30 seconds in and continues for 45 seconds out of a 50 minute audo.

    If you're talking about a playback controller within the rich media annotation (RMA) then you need to write your own widget in Flash or Flex, and then place the video and widget files using the multimedia "Add Flash" tool in Acrobat instead of the "Add Video" tool. Aside from a bunch of proprietary code to handle events, commenting and the API (which you can live without for basic play-pause-scrub applications), video RMAs are just an embedded SWF file containing an FLVPlayback component. The skin and the video file itself are added to the RMA as resource entries. You can build your own version and have it display whatever controls you want, provided you know how to write ActionScript!
    If you're talking about a controller that's external to the RMA (e.g. a series of links or buttons elsewhere on the page) then in the past you would use FLV video files and the 'cue points' feature that's built into Acrobat - however Adobe removed the ability to create FLV files in the latest version of CC, so unless you have CS6 or earlier it's a non-starter. Instead you can manually set playback start points using the special "multimedia operations" link action in your PDF - though stopping playback at a defined point is very difficult without FLV cues. For that you're back to writing your own widget.

  • How to add a custom Attachment Category

    Hi All,
    When we add Attachement in standard apps pages( by clicking on Add Attachment Button)
    The Attachment Page will be opened,
    */oracle/apps/fnd/framework/attachments/webui/FND_ATTACH_UPLOAD_PAGE*
    When you add the attachments, you can mention the Category(from message choice, which will be pickup from a VO
    (oracle.apps.fnd.server.FndCategoryNameVO)
    I would like to add a custom category. How to add it.
    I have got an option of Adding a new category from "Application Developer" -> "Attachments" -> "Categories"
    I could add the categories, But how to get those newly added categories in a standard apps page,
    Eg. /oracle/apps/pon/negotiation/creation/webui/ponDefineHdrPG
    Thanks.
    With Regards,
    Kali.

    If you're talking about a playback controller within the rich media annotation (RMA) then you need to write your own widget in Flash or Flex, and then place the video and widget files using the multimedia "Add Flash" tool in Acrobat instead of the "Add Video" tool. Aside from a bunch of proprietary code to handle events, commenting and the API (which you can live without for basic play-pause-scrub applications), video RMAs are just an embedded SWF file containing an FLVPlayback component. The skin and the video file itself are added to the RMA as resource entries. You can build your own version and have it display whatever controls you want, provided you know how to write ActionScript!
    If you're talking about a controller that's external to the RMA (e.g. a series of links or buttons elsewhere on the page) then in the past you would use FLV video files and the 'cue points' feature that's built into Acrobat - however Adobe removed the ability to create FLV files in the latest version of CC, so unless you have CS6 or earlier it's a non-starter. Instead you can manually set playback start points using the special "multimedia operations" link action in your PDF - though stopping playback at a defined point is very difficult without FLV cues. For that you're back to writing your own widget.

  • How to add row in a TableBean?

    Hi,
    Can anyone help me, how to add a row in a TableBean?
    I already used the following syntax.
    if(tableBean!=null)
    tableBean.setInsertable(true);
    tableBean.setAutoInsertion(false);
    but everytime I clicked the Add Another Row Button no rows were created in a TableBean but in my view object row was already created...
    Thanks,
    Jon

    Jon,
    You also have to write logic in PFR of Controller and create a row in VO. Set the insert row automatically to false on AddRow Button if is true & check.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                   

  • How to add a DFF to a OA page by personalization

    Hi Everydody,
    Can anybody please tell me how can we add a DFF to a OA page by personalization, that is what values for the parameters we have to set.
    Thanks

    Setting Up a Descriptive Flexfield in Oracle Applications
    Before you can add a descriptive flexfield to an OA Framework page, you must first setup the descriptive
    flexfield in Oracle Applications. To start, review Chapter 3 ("Planning and Defining Descriptive Flexfields") in
    the Oracle Applications Flexfields Guide Release 11i.
    When you have a clear plan for the descriptive flexfield you wish to set up, refer to the section titled
    "Implementing Descriptive Flexfields" in Chapter 14 ("Flexfields") of the Oracle Applications Developer's Guide
    Release 11i for instructions to the following general steps:
    Step 1: Define descriptive flexfield columns in your database.
    Step 2: Register your descriptive flexfield table with Oracle Application Object Library.
    Step 3: Register your descriptive flexfield using the Descriptive Flexfields Window.
    Next, refer to the Oracle Applications Flexfields Guide Release 11i for instructions to these general steps:
    Step 4: Define your value sets in the Value Sets Window, as described in Chapter 5 ("Values and Value
    Sets").
    Step 5: Define your descriptive flexfield structure using the Descriptive Flexfield Segments Window, as
    described in the "Descriptive Flexfield Segments Window" section of Chapter 3 ("Planning and Defining
    Descriptive Flexfields").
    Recall that the value of a descriptive flexfield context field determines the context of the descriptive flexfield
    and the context-sensitive segments (if any) that are displayed. The section titled "Context Fields and
    Reference Fields" in Chapter 3 ("Planning and Defining Descriptive Flexfields") discusses context fields in
    more detail.
    Note: Reference fields for descriptive flexfields are supported by Forms-based Oracle Applications, but not
    by OA Framework. A developer mode error occurs in JDeveloper if you try to implement this feature in OA
    Framework. Refer to the "Reference Fields" section of Chapter 3 ("Planning and Defining Descriptive
    Flexfields") in the Oracle Applications Flexfields Guide Release 11i for additional information about
    reference fields.
    Step 6: When you are ready to add the descriptive flexfield to an OA Framework page, follow the steps
    outlined in the Declarative Implementation and Runtime Control sections below.
    Declarative Implementation
    The following steps describe how to add a descriptive flexfield item to a OA Framework region:
    Step 1: Define an item of the item style flex in your region.
    Note: You cannot create a flex item directly under a messageComponentLayout region, but you can create a
    messageLayout region under the messageComponentLayout region and add the flex item under the
    messageLayout region.
    Step 2: Set the Read Only property to True or False, depending on whether you want the descriptive flexfield
    to be read only.
    304
    Step 3: Specify a View Instance for your flexfield. The view instance should be the same as the view instance
    (view object) specified for your region. When the view object is defined, it should include all the database
    columns necessary for this descriptive flexfield. You should not change the database column names for this
    flexfield because the OADescriptiveFlexBean uses the same naming convention that the view object
    generation routine uses to find the corresponding attribute names from your view object.
    Note: OA Framework supports multiple descriptive flexfields on the same view object.
    Note: If a flexfield's view object does not return a row, an OAException will not be thrown so that the
    controller's processRequest method can still execute and render the flexfield.
    Step 4: Set the Appl Short Name property to the short name of the application to which the descriptive flexfield
    is registered. (Step 3 of Setting Up a Descriptive Flexfield in Oracle Applications).
    Step 5: Set the Name property to the name of the descriptive flexfield as it was registered.
    Note: This differs from how Key Flexfields are defined by shorthand codes.
    Step 6: Set the Type property to descriptive.
    Step 7: Set the Segment List property as appropriate (see Descriptive Flexfield Segment List).
    Step 8: Finally, you may set the Display Context Field to True or False, depending on whether you want to
    hide or show the context for the descriptive flexfield.

  • How to Add meta tag in bsp

    hi experts,
    we have a bsp page,in which i need to declare meta tags,like in html.
    but though i delare it,while i debug the code,I can see its not  passing through the meta code.
    please advise me how to add a meta tag in bsp.
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <%@extension name="xhtmlb" prefix="xhtmlb" %>
    <%@extension name="crm_bsp_ic" prefix="crmic" %>
    <%@extension name="bsp" prefix="bsp" %>
    <%@extension name="chtmlb" prefix="chtmlb" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%
      DATA: lv_xml         TYPE string.
      lv_xml = controller->configuration_descr->get_config_data( ).
    %>
    <%meta http-equiv name=  "WorkspaceId"  content= "a2ac9b45-65bb-4d25-9fb6-d9478280fa19"  /% >
    <%meta  http-equiv name="SmartTags" content="SAPCRMCREATEACCOUNT" /%>
    <chtmlb:config xml  = "<%= lv_xml %>"
                   displayMode = "<%= controller->view_group_context->is_view_in_display_mode( controller ). %>"
                   mode = "RUNTIME" />
    Edited by: Anu_87 on Jun 29, 2010 6:50 PM

    Hi,
    there are no meta tags in HTMLB !!   If you really need to include these in your development, you have to do it with the old HTML tags like this:
    <html>
    <head>
    meta name="author" content="Anna Lyse"
    meta http-equiv="expires" content="Sat, 01 Dec 2001 00:00:00 GMT"
    meta name="keywords" lang="en-us" content="vacation, Greece, sunshine"
    </head>
    </html>
    I cannot enter the correct code for META because the @§$%&/ configuration in this forum is triggering an error page !!

  • How to add the InputField to the Standard BSP

    Dear Experts, 
    How to add the Input field to the Standard BSP.Can anyone Expalin the Step by step procedure.
    Helpful answers will be rewarded.
    Regards,
    Ashok.

    Dear Ashok,
    You can create "Z" copies of both controller and View page in the standard BSP application itself and not by taking the "Z" copy of whole application, by right clicking on the standard application and click on "Create".
    You can design design your own page.
    Reward points if helpful.
    Thanks,
    Gokul.N

  • How to add a tip to flexfield columns

    How to add shorttip to Flex: (BankDetails) columns/segments. I know how to add shortip if it is a messtext input, I would like to know is there a way to add shorttip to Flexfield columns using personalizations.

    There seems to be no way for adding tip for a single segment using personalization.
    FYI:
    1. For whole region you can add a tip by creating a tip item just under flex item.
    2. Using controller, get the handle of any single segment. Then use the below method:
    oamessagetextinputbean.setLongTip()
    -Anand

  • How to add a Picklist/Drop down in a page with values (Without Personaliz)

    hi,
    i am very very new to OAF ....please help me out on the below requirement....
    Please suggest me how to add a pick list/drop down field to a page, with some values. (without personalization)
    And the second one is when ever i'll chose a value from the drop down the page will reload and display a message on the page.(messages are different for the different values)
    Thanks
    Prakash

    Prakash
    As mentioned by Anil you can use the above link for new poplist generation through extension. As far as reloading the page in that case you need to make use of PPR for that item.Do refer dev guide for more details
    You can use below code for creating poplist in processRequest of your extended controller
    OAMessageChoiceBean mcb = (OAMessageChoiceBean) createWebBean(pageContext, MESSAGE_CHOICE_BEAN);
    mcb.setPickListViewUsageName("TestVO");
    mcb.setListValueAttribute("LookupCode");
    mcb.setListDisplayAttribute("Meaning" );
    mcb.setID("test");
    mcib.setFireActionForSubmit ("event1",null,null,false, false);//This is event that cause reload of pageYou can handle the event in pfr method
      if("event1".equals(pageContext.getParameter("event")))
    }Thanks
    AJ

  • How to Add/Instal​l 16Gb Disk Caching SSD?

    Hello everyone,
    I just bought the HP Envy 700QE desktop from Costco.  I did find the guide about this desktop/tower (www.nhangraphic.com/HP-Envy-700QE-Upgrade.pdf) but nothing is mention about how to install/config the additional 16Gb Disk Caching SSD.  I really want to have this to improve the performance of the desktop.   Could someone please help me how to add/install and full config 16Gb Disk Caching SSD for this HP Envy 700QE Desktop step by step? Thanks in advance.
    Frank
    This question was solved.
    View Solution.

    Hi Frank,
    mSATA is just a mini-onboard SATA connector where a small circuit board (msata device) can be inserted.  Typically it's used as a way with small form factor devices to add SSD like performance.
    You can change the SATA controller mode from the default AHCI setting to RAID in the bios.  Use Computer Setup to enter the bios. Tapping the ESC key right after power on the PC should bring up a menu selection.
    If you run into problems then let us know.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • How to add toolbar.

    I would like to know how to add the toolbar that the adobe website has where you can bold text a spell check? Also can i customize the amount of options in the toolbar?

    Ok I see that if I add the toolbar view as a subview of the table view, I can't see the toolbar. I can get it to show up if I add it to the main window, but then the navigation controller cannot push and pop entire view, and I will have to figure out when navigation controller pushes and pops and will have to add and remove subview manually. There has to be a better way?
    I thought I got it to work, by adding a [self.view addSubview:toolbar], but it adds it to the actual table view, so it moves with the cells. How can I make it like the Navigation Bar?
    Note I read the View Controller Guide and Table View Guide, but it does not mention toolbars or subviews.
    Brian

  • How to add fields to already loaded cube or dso and how to fill records in

    how to add fields to already loaded cube or dso and how to fill  it.can any one tell me the critical issues in data loading process..?

    This is sensitive task with regards to large volumes of data in infoproviders.
    The issue is to reload of data in case of adjusted structures of infoproviders.
    Indeed there are some tricks. See following:
    http://weblogs.sdn.sap.com/cs/blank/view/wlg/19300
    https://service.sap.com/sap/support/notes/1287382

  • How to add a library (libSomeRandomlib.so) to a project....??

    Ok, so I've been trying to get CERN's ROOT program/libraries to work in an xcode project for a while, but I'm running into one really weird error, and I think I may just not know how to add a library to a project correctly.
    Suppose I create a new Xcode C++ command line tool project. I hit Build and go, and it gives me a nice little Hello World! in the console, just as it should. If I then click on the project in Groups & Files, go to Project>Add to Project..., and choose, say, libCint.so, from my root/lib directory, and click ok, then click Build & Go, I get an error in the console:
    dyld: Library not loaded: @rpath/libCint.so
    Referenced from: /Users/paulthompson/Documents/Programming/Build Products/Debug/LibraryIncludeTest
    Reason: image not found
    sharedlibrary apply-load-rules all
    Data Formatters temporarily unavailable, will re-try after a 'continue'. (Cannot call into the loader at present, it is locked.)
    My assumption is that either I'm missing a step in the process of adding a library, or else there is something jacked up with the libraries themselves. Anyone have any advice?
    Thanks,
    Paul
    EDIT* Oh, I should mention that the actuall binary that gets built after adding the library WILL execute properly in the Finder, or from terminal, just not with the Build & Go, or Go commands from within xcode.
    Message was edited by: TraxusIV

    TraxusIV wrote:
    Results of otool:
    LibraryIncludeTest:
    @rpath/libCint.so (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 123.0.0)
    Macintosh-9:Debug paulthompson$ otool -L /Applications/CERNRoot/root/lib/libCint.so
    /Applications/CERNRoot/root/lib/libCint.so:
    @rpath/libCint.so (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    I honestly don't know much about @rpath. I found this page that explains it a bit more: http://blogs.sun.com/dipol/entry/dynamiclibraries_rpath_andmac
    So, since I don't want to deploy with the environment variable set, I should ask, what IS the correct, MacOS X way to do it?
    The best way to find that is to look at how Apple does it. They put frameworks in /System/Library/Frameworks and regular shared libraries in the standard places. You can do the same. Put your frameworks into /Library/Frameworks and your shared libraries into /usr/local-based paths.
    If you want to create stand-alone executables that can be installed via drag-n-drop, you can put shared libraries inside the application bundle. If your shared libraries/frameworks are elsewhere, you will need some sort of installer to get them installed.
    I've been sifting through Apple's developer documentation but I have yet to find a concise, straightforward explanation of how to add shared libraries. I'm horribly confused at this point. Is there a good tutorial available anywhere for both the general unix case of linking to dylibs and .so's, and the Mac specific case?
    Hopefully someone else knows an answer for this one.
    *EDIT* I do already have the variable defined both in ~/.MacOS/environment.plist and also in Xcode as an additional user variable.
    I'm not sure about the whole RPATH thing. Setting environment.plist will define environment variables for use in the Finder, but that is really a hack. There are better ways to do it, but if you are porting some open-source programs, that may be the only way. You should be able to define those variables in Xcode. You have to selected the debug executable under "Exectuables"

Maybe you are looking for