1510 Child and Parent don't talk

I have a 1510 network set up like this:
http://www.cisco.com/en/US/i/100001-200000/150001-160000/153001-154000/153656.jpg
The Controller 4404 in the headquarter (Site 1). From the headquarter we use 1400 bridge to connect to a 1510(RAP or Site 2) via a switch. Then over the 5.8 backhaul, we connect to another 1510 (Map or Site 3), which is a child for Site 2.
From the headquarter, we can talk to either Site 2 and/or Site 3. However, when information requested from Site 3 to Site 2, we are having problems. It seem to me like Site 3 and Site 2 don't talk to each other directly. Can someone help me please? Thank you

In a wireless mesh deployment multiple AP1510s are deployed as part of the same network. One or more AP1510s have a wired connection to the controller and are designated as root access points (RAPs). Other AP1510s that relay their wireless connections to connect to the controller are called mesh access points (MAPs). The MAPs use the AWPP protocol to determine the best path through the other AP1510s to the controller. The possible paths between the MAPs and RAPs form the wireless mesh that is used to carry traffic from wireless LAN clients connected to MAPs and to carry traffic from devices connected to MAP Ethernet ports.
For the controlling the AP following configuration guide may help you :
http://www.cisco.com/en/US/docs/wireless/controller/4.2/configuration/guide/c42lwap.html#wp1112844

Similar Messages

  • Child and Parent Threads

    I have a parent thread class PThread which
    instantiates some child threads CThread in its run()
    method..
    Now Child threads need to give their status/information
    back to Parent thread periodically.
    Can I child thread callback any function of Parent
    thread

    Actually in my case, 1 parent Thread is running and it instantiates multiple child Threads (the number will be decided based on input from some file)....Now these Child Threads are doing some measurements...Each Child Thread is maintaining a bool variable
    "isActive"...If the measurement is not bein taken, it sets the isActive flag to false, otherwise true...(Different Child threads have their own "isActive" Status)...
    Now, there are Some other classes in System who are interested in knowing which Measurements are Active....(that means they want to know the status of Individual Child threads).....These classes are
    interacting with Parent class only....
    That's why I wanted individual Childs to update their current status
    periodically to Parent , so that when Parent is asked this information
    from Other classes, it can Consolidate and present the data....
    This was the only purpose, why I asked whether we can call from
    inside Child Thread, any functon of Parent Thread..
    What I understood from your comments that if Child Thread has access to Parent Thread's Object....(wich should be passed to it during new),
    it can callback Parent's functions.
    That should solve the purpose.....
    Regarding stopping of threads, Parent thread is itself gets information/interrupt from some other class to stop itself... when it
    gets the information, it will stops the Child threads too...I was thinking of calling some stop()
    function of individual child threads which will call their interrupt()..
    And at the end I will call the interrupt() of Parent class....
    I don't know much about usage of join(), so will have to study more
    about how can I do it better.
    Also one thing more:-
    Both Child and Parent Thread classes are extending Thread.
    They don't have to extend from any other class...I have to
    write specific functionality in run() function of parent and class.
    Should I change it to runnable....Why did you advised against
    extending threads

  • XML childs and parent in same DataGrid

    Hi, if I have a XML with this structure:
    <product>
         <description>Cel Motorola 12</description>
         <childS>
              <child>secret data</child>
         </childS>
    </product>
    In my data grid, I put:
    <mx:DataGrid id="dataGridFaixas" dataProvider="{_myXML}" left="0" right="0" top="0" bottom="0" fontSize="9" borderStyle="none">
        <mx:columns>
            <mx:DataGridColumn dataField="product.childS.child" headerText="Cd. Site" width="50"/>
        </mx:columns>
    </mx:DataGrid>
    This is ok, but the data exibth is: "<child>secret data</child>" and no "secret data"...
    help?

    I decided flattern de XML strutcture before set as dataProvider on datagrid, revolve... :|

  • IMessage combining child and parent text messages

    When my child sends a text message it appears that the message comes from me, the adult. When I try to text my child she doesn't receive the message and I text myself.
    I've tried to find ways to untether child/parent but I can't. 
    my iMessage settings show only my Apple ID, email, phone number
    child doesn't have a computer of her own
    I logged into her iCloud but didn't find settings that applied to imessage.
    Please help, I am flooded with tween-aged text messages!

    Thanks Radiation Mac,
    I have a Mac and she only texts from her phone. I think your instructions are for a Windows system maybe?
    Whichever Apple ID is currently logged into "iCloud" (located in Applications>System Preferences>iCloud) will be the Host who's iMessage account is sent from. 
    Anyway, you gave me a great tip.
    iPhone Settings
    Messages
    Send & Receive"You can be reached by iMessage at:" her cell phone number was in this space.
    My life is good once again.
    OMG! ttyl - you saved me from tween ****.

  • Formula flip the sign between child and parent account member

    I have created two accounts as below which is parent to the child (670122) and child (670122.01) account and my account dimension looks as below
    Account    PARENTH1     GROUP          ACCTYPE     RATETYPE
    670122        670120         Profit & Loss            EXP           AVG
    670122.01  670122         Profit & Loss            EXP          AVG     
    PRETAX        INCOME         Profit & Loss            INC          AVG     
    Now I have added the simple formula in the child account 670122.01 in the formulah1 column as [Account].[PRETAX] Which is Income account but when I retrieve the data  using EVDRE(), the Values are shown as below
    670122.01     670122
    3,398,006.86      (3,398,006.86)
    Why do the parent and child has different sign when both accounts are same account type as Expense. Instead of formula if I put hardcoded value, then both parent and child accounts has the same value (not flipping the sign)

    We are using BPC 5.0 and SQL Server 2005
    The hierarchy is like this
    670120 -> 670122 -> 670122.01
    The dimension formula is in 670122.01 as like this ( [Account].[PRETAX]-[Account].[665000] ), 665000 is a expense account and pretax is income account
    When I do the EVDRE on those above accounts
    670120     670122     670122.01
    (13,228,910.18)     (13,228,910.18)     13,228,910.18
    When 670122.01 is rolled up to next immediate level, the value in 670122 has negative value. 670122 is rolled up to 670120, but they both have same value - Is this a known issue in the BPC 5.0?

  • Hierarchy display child and parent nodes -- Urgent Please

    Sorry wrong forum
    Message was edited by:
            Shree Sunder

    I like ListAgg :D
    with RELATION(PARENT,CHILD) as(
    select NULL,'A' from dual union all
    select 'A', 'B' from dual union all
    select 'A', 'C' from dual union all
    select 'B', 'D' from dual union all
    select 'B', 'E' from dual union all
    select 'D', 'F' from dual union all
    select 'C', 'G' from dual union all
    select NULL,'H' from dual union all
    select 'H', 'I' from dual union all
    select 'H', 'J' from dual)
    SELECT ListAgg(child,'<-')
           within group(order by Level desc) as revPath
    FROM relation
    START WITH child = 'F'
    CONNECT BY PRIOR parent = child;
    revPath
    A<-B<-D<-F

  • How To Display  attributes of Child Node and Parent Node in same view

    Suppose I have two view Carview and CarDetail View...IN Component context I have Parent Node Called Cars and It have its attribute as Price,Warranty,Year and also One Child Node Called as Brand Name Whose attribute are PrimaryBrand and SecondaryBrand..Now If I do Mapping of My First View i.e CarView with Child node of BrandName..and then I Have To Show Whole Detail of Car in CarDetailView.......How Can I Achieve it..

    Hi Vinay,
    You can map the child node and even the paren tnode to the same view if u want to display in the same window..
    If not if ur requirment is to dispaly in the sme view but should not map the child and parent to the Same view then you can take another new view.. and insert 2 view containers and then add the Child view and parent view in that view containers and then Diaplay the newly created view.
    Regards,
    Raju Bonagiri

  • Issue with child and parnet table

    how i can identified that which table is chiald and which one is parent table.

    If you are keeping referential integrity in the database, not in the application, it is easy to find the child and parent tables. Here is a quick and dirty query. You can join this to dba_cons_columns to find out on which columns the referential constraints are defined. This lists all child-parent table including SYS and SYSTEM users. You can run this for specific users of course.
    select cons1.owner child_owner,cons1.table_name child_table,
    cons2.owner parent_owner,cons2.table_name parent_table
    from dba_constraints cons1,dba_constraints cons2
    where cons1.constraint_type='R'
    and cons1.r_constraint_name=cons2.constraint_name;

  • How do i find out the parental lock code, i am the parent and i don't remember setting a restriction.

    My son's ipod is asking for the code to remove the parental restrictions, I am the parent and i don't remember putting in any restriction code. Any idea how to find out what it is?

    Forgotten RESTRICTIONS Passcode
    - Restore from a backup that was make before you added the Restrictions passcode. If you restore from a backup made with the Restrictions passcode the Restrictions passcode is also restored. Place the iOS device in Recovery Mode if necessary to allow the restore.
    - Restore to factory settings/new iPod.                
    - If you are up to file manipulation see the following but it may not work for iOS 6.1.3:
    How to reset forgotten Restrictions...: Apple Support Communities
    - How to Recover Restrictions Forgotten iPhone Restrictions Passcode | The iPhone and iPad Blog

  • Siebel BIP Integration Objec for Parent, Child and Grand Child

    Hi,
    I 'm trying to create a one report for displaying Parent, Child and Grand Child.
    Service Request
    - Quote
    - Quote Item.
    Successfully create the BIP Integration object and generated the xml file. problem here is when trying to include the fields in BIP desktop word, not able to see the grand child fields, could see only the parent and child fileds and for grand child only 'ListOfQuoteItem' text.
    Could some one please let me know the reason for this behavoir and wherther BIP supports 3 levels.
    Is there any Out of Box Siebel report showing parent, child and grandchild.
    Thanks,
    Ravi kanth

    One Siebel Adapter Upsert operation should be sufficient to insert the parent and child. In the Integration object definition, you define the Template child instances with the Parent of Template. i.e
    You define Template first as an Integration Component and then define
    Template child instances to have a Parent as Template.
    Thanks
    Swarna

  • HT201089 I am setting up an Ipad for my child and downloading apps with Ask to Buy turned on.  As the parent, I am not receiving notices/requests on my device

    I have an ipad mini 2 with ios 8 and and iphone 5s with ios8
    I am setting up the ipad for my child and the Ask to Buy feature is on in family sharing.
    I am trying to download apps from the app store and it pops up the notification that I need to Ask to Buy and the request is being sent.
    The request should be coming to my "parent" device, which happens to be my iphone correct ?   I'm not seeing any sort of requests.
    According to the posts I've read a request is only sent once.

    Apps downloaded on one should also appear on the other as long as the app in question runs on both iPads and iPhones.

  • Treeview Add Child to Parent Node Without Creating a New Parent

    I have a treeview setup with a HierarchicalDataTemplate in my XAML as follows:
    <TreeView Grid.Column="1" Grid.Row="0" ItemsSource="{Binding treeViewObsCollection}">
    <TreeView.ItemTemplate>
    <HierarchicalDataTemplate ItemsSource="{Binding mainNodes}">
    <TextBlock Text="{Binding topNodeName}"/>
    <HierarchicalDataTemplate.ItemTemplate>
    <DataTemplate>
    <TextBlock Text="{Binding subItemName}"></TextBlock>
    </DataTemplate>
    </HierarchicalDataTemplate.ItemTemplate>
    </HierarchicalDataTemplate>
    </TreeView.ItemTemplate>
    </TreeView>
    Here is the ViewModel which is set as the Data Context for the XAML File.
    class AdvancedErrorCalculationViewModel : ViewModelBase
    static ObservableCollection<TreeViewClass> _treeViewObsCollection = new ObservableCollection<TreeViewClass>();
    public static ObservableCollection<TreeViewClass> treeViewObsCollection { get { return _treeViewObsCollection; } }
    public class TreeViewClass : ViewModelBase
    public TreeViewClass(string passedTopNodeName)
    topNodeName = passedTopNodeName;
    mainNodes = new ObservableCollection<TreeViewSubItems>();
    public string topNodeName
    get { return this.GetValue<string>(); }
    set { this.SetValue(value); }
    public ObservableCollection<TreeViewSubItems> mainNodes { get; private set; }
    public class TreeViewSubItems : ViewModelBase
    public TreeViewSubItems(string passedSubItemName, string passedSubItemJobStatus)
    subItemName = passedSubItemName;
    subItemJobStatus = passedSubItemJobStatus;
    public string subItemName
    get { return this.GetValue<string>(); }
    set { this.SetValue(value); }
    public string subItemJobStatus
    get { return this.GetValue<string>(); }
    set { this.SetValue(value); }
    public static void AddTreeViewItems(string passedTopNodeName, string passedChildItemName, string passedChildItemJobStatus)
    treeViewObsCollection.Add(new TreeViewClass(passedTopNodeName)
    mainNodes =
    new TreeViewSubItems(passedChildItemName, passedChildItemJobStatus)
    The problem lies with the AddTreeViewItems method
    seen above. Currently, if I call the method by let's say:
    AdvancedErrorCalculationViewModel.AddTreeViewItems("Parent","Child 1", "Completed");
    it creates the parent and child nodes just fine. No issues there.
    However, if I call the method again with the same Parent name but a different Child; for example: 
    AdvancedErrorCalculationViewModel.AddTreeViewItems("Parent","Child 2", "Completed");
    It creates a new Parent node with a child node Child 2 instead. Thus, I have something like this:
    - Parent
    - Child 1
    - Parent
    - Child 2
    I would like to modify this function so that if the parent name is the same, the child node should belong under the previous Parent instead
    of under a new Parent node. Something like this:
    - Parent
    - Child 1
    - Child 2
    Could anyone help me modify my code to detect if the Parent node exists in the observablecollection already and if so, place the child node under the existing parent? The main problem I am facing is trying to add items to a previously created observable collection
    with an existing hierarchy because I don't know how to access the previous observable collection anymore. Help me with this please.
    Thanks in advance. :)

    You need to try and find an existing entry and if it's there add the child to that instead.
    I notice you're  a student and I guess this is probably an assignment.
    By the way.
    I suggest you work on the name of your collections and classes there.
    EG A class should be singular but way more meaningfull than treeviewsubitem.
    Anyhow, finding the top node could be done using linq.  Since you can get none, SingleOrDefault is the method to use.
    Thus something like:
    TreeViewClass tvc = treeViewObsCollection.Where
    (x=>x.Title == passedTopNodeName).SingleOrDefault();
    Will give you tvc null or the qualifying entry.
    If it's null, do what you have now.
    If it's not then add the child item to tvc.
    tvc is a reference to the TreeViewClass you have in that collection.
    Please don't forget to upvote posts which you like and mark those which answer your question.
    My latest Technet article - Dynamic XAML

  • Safari, Secure connection to sites, and Parental Control

    I'm setting up Safari for a child, and have Parental Controls enabled and am customizing the list of sites that can be visited. I'm allowing Netflix.com and have multiple http and https Netflix URL's allowed. However, when I test accessing this site, Safari gives an error stating that it cannot establish a "secure connection".
    The same computer, with a different account, can access the same URL without the error. My assumption would be that since I specifically allowed several Netflix.com URL's, that this would work just fine. By granting specific access, you are bypassing Parental Controls in a controlled way.
    What's causing this to not work?
    Thanks for your help.

    Netflix only provides HTTPS when loggin in or visting the main site, not for the content or it would have to encrpyt the video stream (expensive).
    It also sends one to another site (with another name "movies.netflix.com" here) to view the content, perhaps you have to access the account from another machine, grab the URL it directs you too and enter that into Parental Controls.
    Silverlight also has to be updated, check your Flash too.
    https://www.mozilla.org/en-US/plugincheck/
    I did see the thread about using the IP address for HTTPS sites, but wouldn't there be a large number of IP addresses associated with a Netflix type of site due to all of the streaming video feeds available?
    If that wouldn't be a problem, does anyone know how to determine the IP address of Netflix?
    The video streams are not encrypted, and IP addresses are just the physical buildings of the servers themselves, the buisness name (URL) can change locations and that's what the Domain Name Server is used for to resolve those IP numbers for you in case they do change.
    Netflix log in and content delivery have different IP addresses, the content delivery may use IP's of servers closer to your location, so it would not assist you for me to give those out.
    You can install Firefox web browser and a add-on called FlagFox, which displays a little country flag in the URL address bar of each website you visit which you can right click and "Copy IP" if you so need it.
    I don't advise using the IP, as that can change, use the URL so the Domain Name Server of your ISP can provide the correct IP address so your comptuer can connect.
    Also Firefox has more add-ons for control and a nearly completely customizable web browser that may be a better choice for children/special needs (big buttons, type etc) than Safari.
    There is Public Fox which can lock down certain aspects of the browser (prevent downloads for instance or changing things.)
    Theme Font & Size Changer which can enlarge the type of Firefox itself, there is NoSquint which can auto-zoom all web pages etc.
    There are Firefox Personas and Themes that can dress up or "childize" the browser so it's more fun for children.

  • My entire phone got hacked and now I believe there is a cloned phone number who is texting my contacts....very bad things and I don't know what to do....get a new phone?  New number?

    Within the last few months I have gotten several snap shots of conversations from friends that showed it was my phone number but the conversation was not from me.  It was someone using my information but texting frieda, family, and some co workers very obscene things.  But the person was using completely juvenile context and I don't do that at all with my texts.  The worst part was it began becoming such a huge issue when the cloned number or whatever was texting guys stuff and I wasn't the actual person texting.  I got no responses to my phone but I had some very confused friends and even at one point my boyfriend got texts from my number when I was literally sitting next to him and my phone was on the coffee table.  Anyone have any ideas on what I need to do.  I have reset my phone, deleted everything off of it, reset passwords, I don't use location services but I am still having people getting crude messages.  It's to the point now that my very own friends don't talk to me through text or my personal email because they don't know if it is truly me.  Please help!

    Your phone is not hacked however your sim card probably IS cloned.
    YOU need to contact your Mobile Network and local police right NOW !

  • Any ideas for security and parental control software yet???

    Just received two of the touchpads from the fire sale and gave them to my kids, both under 10.  I am very interested in limiting the sites that can be accessed through the browser, as well as a few other things.  Has anyone found a practical means of doing this?  I'd hate to give up on this and switch it over to Android, especially since there is only Gingerbread available.  But, I just don't know what else I can do about these.  Any ideas? 
    Thanks!
    Post relates to: HP TouchPad (WiFi)

    Please take this post with a grain of salt. I don't claim to be a security and parental control software expert, but I have researched these solutions and have some personal experience with them. That being said, here's some ideas to get you started.
    As speedtouch mentioned, OpenDNS is a fantastic solution for website filtering. They have a great set of filters that can be customized and are one of the easiest systems to set up. Simply install an updater app on one of your desktop computers (or directly on your router if it's supported), configure your router to use their DNS servers, and you're good to go. I personally use this system mysefl and it works really well. The only downside in my experience is that there is not a temporary override system (at least, not in the free version that I use). An example of when this might be handy: my wife goes clothes shopping and looking at new bras. Every once in a while, a perfectly legitimate site might get blocked (in this case, probably something I don't want my kid looking at but perfectly fine for my wife). The option to "temporarily override the block" or "temporarily allow" the site would be nice, but it doesn't exist.
    Another FANTASTIC solution that I've used in the past is the Astaro Security Gateway. They have a free home version of their "Software Appliance" that goes above and beyond OpenDNS. I haven't used it in a while, but when I did it was able to not only filter web sites but also monitor Instant Messaging and other online activites. It's a bit more involved as you need your own hardware (I used an old computer with 2 network cards and stuck it in between my router and my broadband modem), but the results are pretty powerful.
    The downside to all these solutions, however, is that they will only work when the TouchPad is on your network. If they connect to a neighbors network of if the go to a friends house, all of these systems will be moot because they are completely bypassed. The only way to monitor that content from ANY network would be to install an application on the device itself and to my knowledge, none exist.

Maybe you are looking for

  • Reg : Excise Invoice for Sales from Depot using J1IJ.

    Hi Gurus,               I am trying to create Excise Invoice thro J1IJ for Delivery Sales from Depot.While doing so it throwing an error "Foreign Lock on Delivery 82XXXXXX for Delivery".Please advice what to do for this. Thanks in Advance, Nambi.N

  • Built in camera not working with new iMac

    When I sign in to Facetime it shows the camera is not connected. Is there a way to test the built in camera?

  • Differential Signal to Single Ended Signal Conversion

    Hi, Im facing a problem here. I need an ADC that reads 0-20mA. The signal comes from a signal conditioner that creates a differential signal. However, a NI device with single ended inputs is much cheaper than differential inputs. The signal condition

  • Need log of the users who changed the partner profiles.

    Hi, Some user has been changed partner profiles of the CUA configuration Setup. It is displaying only Agent Name. They delete the Inbound and outbound parameters of the partner profiles created by CUA. So, I need to trace out the user who changed the

  • ERROR: Wip Mass Load-----WIP_ML_ORA_ERROR

    When I import Job order from MES system,I get an Error after request the "WIP Mass Load".The error message is like that : Error: WIP_ML_ORA_ERROR ( ERROR_CODE=-1653) And the Process_Status is updated to WARNIING,the Job Order which is request in this