7920 associates to root bridge but not to non-root bridge

I have 7920s using open authentication with WEP128 cipher. I have two 1300 root AP's (with client support) and three non-root AP's (also client support) in the same lab area. The root AP's and non-Root AP's associate and link to each other no problem. However, the 7920's will only associate with the Root APs. If I power down the root APs, the 7920s show "no AP found". I've verified SSID and WEP128 keys. I've also noted that the root AP does have a channel specified under dot11radio0 but the non-roots do not. Do the 7920's just scan for any channel until it finds an association or do I need to specify a channel in the non-root bridges?
Thanks,
Mike.

With static WEP, the authentication is happening at the AP level. Will want to ensure non-root is associated to a root though otherwise the interface may be in "reset" state.
The 7920 will look at these 2 as individual APs regardless of channel. Non-roots should have the same channel as the root, otherwise will not be able to communicate.

Similar Messages

  • JTREE: Custom TreeModel does not update non-root nodes

    I have a JTree that uses a custom TreeModel that wraps over (delegates to) a data class X which keeps track of all its children. The class X maintains its own data structure internally (references to other data objects). It also implements 'equals' and 'hashcode' methods. When the data changes in X, it invokes fireTreeStructureChanged on the TreeModel. (There is a TreeModelListener registered with the TreeModel). This works very well for the root node but not for the other non-root nodes. The JTree correctly calls 'equals' and I can see that equals returns 'false' but for non-root nodes the JTree does not refresh though I can see the underlying data structure has changed.
    I am wondering if I may not have fully & correctly implemented fireTreeStructureChanged as it doesn't seem to do much. Or I may be looking at the wrong place. Any pointers would be appreciated.
    BTW, this question is very similar to one asked years earlier http://forums.sun.com/thread.jspa?threadID=153854 but it didn't help me :(
    Thanks.
    ps: working with jdk1.6.0_06 on WinXP.

    I have a same problem. I got an error "Cannot Update Libray".

  • 340 bridge traffic between two non root bridges

    I have a deployent with a 340 series bridge acting as root bridge and two 340 bridges acting as non-root remotes. The hosts hanging off the non-root bridges can communicate with the hosts hanging off the root bridge but i cannot get communication to work between hosts on the two non-root bridges. Is there some sort of split horizon type setting I need to configure on the root-bridge to allow traffic back out the radio interface.

    There isn't anything in the bridges that would block traffic between the two sites. Is this one large subnet, or are there two subnets? If there are two, how are you routing between the two?
    Can one non-root bridge ping the other non-root?

  • Just got iphone 4 yesterday.  I can text to iphone users but not to non-apple users.  I am connected to wifi and the imessage is on.  What else can I try?

    Just got iphone 4 yesterday.  I can text to iphone users but not to non-apple users.  I am connected to wifi and the imessage is on.  What else can I try?

    o2_Team wrote:
    Settings - Messages - Send As SMS is on?
    That setting is only related to iMessage. It causes iMessages to be resent as SMS if iMessage fails.

  • Video plays on Root folder but not in Cgi-bin folder...Help!

    Hello-
    I just transfered my entire website content form one domain to another and for some reson my videos will not play on the new domain whereas they played correctly in the cg-bin folder of the old domain.  I do not understand why and need your help to figure it out since I am not a flash guy.
    Here is the link to the videos that are not working correctly.  http://www.healthywaterlife.com/cgi-bin/d.cgi/phil/videos.html
    My cgi guy says that all of the cgi is working correctly and he has stated that the problem lies within the code of the html.  So here is the html code for one of the videos...
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="605" height="350" id="FLVPlayer1">
               <param name="movie" value="FLVPlayer_Progressive.swf" />
               <param name="salign" value="lt" />
               <param name="quality" value="high" />
               <param name="scale" value="noscale" />
               <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=http://www.healthywaterlife.com/videos/historyofkangenwater&autoPlay=false&autoRewind=fals e" />
               <embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=http://www.healthywaterlife.com/videos/historyofkangenwater&autoPlay=false&autoRewind=fals e" quality="high" scale="noscale" width="605" height="350" name="FLVPlayer1" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" />        
    </object>
    And yes, my server, codero, supports all of the cgi as the old domain worked well and was operating on the codero server.
    Thanks for your help!

    Are you sure that all the files have been uploaded?
    The player.swf, the skin.swf, the actual .flv video file, and what about any javascript files used for Flash detection? So that could be as many as 4 files.
    To test, paste the entire absolute address to each of those files directly into your browser address bar, like this:
    http://www.healthywaterlife.com/videos/FLVPlayer_Progressive.swf
    You should not see ANY file not found messages.
    After verifying that each file exists on the server, then it's only a matter of correctly pathing all the Flash assets, and pathing includes correctly spelling file names (upper or lower case.. must be exact) as well using correct folder names.
    To review Flash pathing:
    Pathing issues
    Almost always when it works on the local machine and not the server, it's a pathing problem.
    You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
    Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
    In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
    So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    If that doesn't fix it, post a link. That really give us the best chance to help you.
    Best of luck!
    Adninjastrator

  • Networked files show padlock (can't open) in Bridge, but not PS CS3

    When looking at files on a network in Bridge CS3, they all show a padlock in the upper right corner of the icon representing the file and cannot be accessed via Bridge, but they are not locked.  The same files can be seen, and opened (no padlock) in Photoshop CS3.  Any suggestions?

    Great, thanks Ian.  This worked a treat. I'd forgotten that I needed to download that again.  Cheers. Thanks for your help. Marc.

  • Trying to lock out Solaris 11 non-root users but not working-

    Hi,
    We are trying to lock out non-root user after 5 unsuccessful login attempts by editing the policy.conf file but it's not working..It's working in the global zone but not in the non-global zones. Is there something else we need to do?
    This is Solaris 11 with Solaris 11 NGZs.
    kind regards

    It works exactly the same way in the global and non global zone cases. This code is 100% userland so it doesn't mater if it is running
    in a global or non global zone.
    Note that you do need to configure policy.conf in both the global and non global zone.
    Are both configured similarly with respect to nameservices ?
    Currently we only support lock_after_retries for the local files nameservice.

  • "Big Bridge" does not launch with Mini Bridge

    When I open Photoshop and launch Mini-Bridge, it does not launch "big bridge."  The littel wheel turns around and a note says "waiting for Bridge CS5," but Bridge CS5 never opens.  The little wheel keeps turning around and keeps waiting and waiting.  I have gone into settings and tried both settings.  1. Open Bridge automatically when Mini-Bridge starts.  2.  Do not start Bridge until browse files is checked.  On either setting, Bridge still will not launch.  Does this call for a re-install of Photoshop?  Need advice.  Thanks

    I have not kept up on this issue.  There was quite a discussion on the topic in the Photoshop Forum when CS5 came out, but issues must have been resloved as have not see anythiing on it for awhile.
    Make sure you have the latest Bridge and PS updates.  The use the search fuction (many times google is faster) and read some of the replies.

  • User option in fstab not allowing non-root to mount drives

    Hi, when i try to mount my drives, mount says "only root can do that". they mount fine as root but i thought putting the user option in fstab meant any user can mount that device. My fstab is as follows
    /dev/dvd               /mnt/dvd  udf       ro,user,noauto,unhide   0      0
    /dev/hdb1             /mnt/win ntfs       user,umask=022           0      0
    i looked at the /dev devices - dvd is just a symlink to hdc. Please bear in mind i am a member of both disk and optical groups
    brw-rw----  1 root disk     3, 65 2006-05-31 10:31 hdb1
    brw-rw----  1 root optical 22, 0 2006-05-31 10:31 hdc
    Hope someone can clear this up for me as its not good being root all the time
    Thanks
    Dan

    nobby_trussin wrote:
    Hi, when i try to mount my drives, mount says "only root can do that". they mount fine as root but i thought putting the user option in fstab meant any user can mount that device. My fstab is as follows
    /dev/dvd               /mnt/dvd  udf       ro,user,noauto,unhide   0      0
    /dev/hdb1             /mnt/win ntfs       user,umask=022           0      0
    What is the exact command you are trying? As user, you must only specify either the device or the mountpoint, never both (specifying both will result in the exact error message you quoted).
    i looked at the /dev devices - dvd is just a symlink to hdc. Please bear in mind i am a member of both disk and optical groups
    brw-rw----  1 root disk     3, 65 2006-05-31 10:31 hdb1
    brw-rw----  1 root optical 22, 0 2006-05-31 10:31 hdc
    You don't need read and/or write permissions to the devices to mount them. While being in optical may prove useful for some tasks, being a member of disk is useless and irresponsible. You could read the whole filesystem (including files owned by root) and even overwrite or manipulate the whole thing without root privileges. This is a big security risk.

  • Recovering Snow Leopard notes from non-root mail folders.

    I knew this was an issue and it was one of the things holding me back from updating my primary machine, but yesterday in a fit of forgetfulness when I upgraded some other software to my machine was more ready to move up to 10.8, I forgot about figuring out this issue and upgraded. Now I'm in a bit of a pickle trying to undersand how everything fits together and how I can make it work as desired.
    The sort statement of the problem: In Mail.app from Mac OS X 10.6.8 I had a bunch of yellow "notes" stored in a variety of folders, both "On My Mac" as well as on various IMAP servers. These notes are not available from iOS or Mail.app on Mac OS X 10.8.2, except for those stored in the inbox of my iCloud account. How do I access them?
    My understanding of "notes" in Mail.app from 10.6.8 is that they are merely a "special" email message that can be edited, and thus are easily stored on a mail server (IMAP and other protocols perhaps?) or in a local folder. With Mac OS X 10.8, I don't know if this format changed, but in any case, Mail.app no longer pays any attention to these files, and leaves them to Notes.app to deal with, but Notes.app does not traverse the regular mail folder hierarchy and so does not find the old notes. Is this understanding correct?
    Does anyone know how I can access these old notes, stored in mail folders like "On my mac" > "Domestic" > "Finances" > "Bank of Bob". I have probably two or three dozen of these notes with records of phone numbers, contact names, transaction information, etc. They were very useful to have nicely stored next to related email messages, and don't know how I will best deal with no longer having them in one place, but first I need to find them all in the first place!
    I suppose I might be able to fire up a copy of Mac OS X 10.6 and use it Mail.app from there to search through all the IMAP servers and recover/move the notes to iCloud's IMAP top level, and maybe do the same for those "On my mac" - but it would be nice if I could do it all within Mac OS X 10.8.
    Any ideas?
    - johann

    OK, you all solved my problem (or at least part). How did you do it? By making me wait. Today I opened up Notes and it said something like "Hey, you've got a bunch of notes on your local machine - should I upload them to iCloud?" It then proceeded to move all of the notes in the various local folders up to matching named folders in iCloud.
    I still have notes in subfolders on some IMAP servers that are MIA, so if you have any idea how to access to them in Mac OS X 10.8 Mountain Lion, feel free to pipe up.

  • Unix: How do I start weblogic as root, yet have owned by non-root uid

    I have a weblogic domain that used to be started by a non-root unix user, we
    now wish to have this domain
    started by the user "root" as we are using ports < 1024.
    [Q] What do I have to do to achieve this ?
    [Q] Which files will need to be owned by root ?
    Weblogic documentation isn't clear on this.

    http://e-docs.bea.com/wls/docs81/ConsoleHelp/machines.html
    Does that answer it?
    mbg
    "Tarang" <[email protected]> wrote in message
    news:3e7fc4cc$[email protected]..
    >
    >
    I have a weblogic domain that used to be started by a non-root unixuser, we
    now wish to have this domain
    started by the user "root" as we are using ports < 1024.
    [Q] What do I have to do to achieve this ?
    [Q] Which files will need to be owned by root ?
    Weblogic documentation isn't clear on this.

  • Acr opens raw in bridge but not in photoshop cs5

    When opening a raw (RAF ) file in bridge everything  works fine ,when I want to open the file, ps cs5 opens the file, no problem.
    But when opening the same file in ps, acr comes up and when I click open image, I get the message " could not comlete your request because there  is not enough memory (RAM)".
    When opening acr in bridge and then: open image, ps works fine.
    I just upgraded my mobo ,memory and processor ( i7-2600k .8Mb). Still running windows xp 32bit with intel hd 3000 video ,dual monitor. Never had this problem before with less memory and pentium 4.
    Very strange. Any ideas?

    What type of RAW files are we talking about, NEF,CR2 or other?
    Bridge is just a flle browser, and RAW files are opened and edited in Adobe Camera Raw.  Do you just get a thumbnail, but it willl not open in ACR?
    Does ACR work with other RAW images that have not been corrupted.
    Do you have a backup (highly recommended) of these images somewhere?  Should be on seperate physical drive or on a DVD.

  • Recovered files open in Bridge but not in PS4 or Camera Raw

    My Canon T1i failed with dozens of images on the SD card.  I used DiskInternals Partition Recovery to recover the files from the SD card.  Many of the CR2 images show up fine in Bridge CS4, both the Content thumbnail and the Preview screen. (Screen shot 1)    However, when I try to open them in either Camera Raw or PS4, most of images either do not open or only some sections of the image appear.  For example, if you divided the image into 9 equal rectangular segments -  1, 2 or 3 may be visible, but the other are blank. (Screen shot 2)  
    Does anyone have an idea of how to recover the files?

    MizzouTiger71 wrote:
    These are Canon Raw files (.CR2) - I do not think I have any other software that will open them other than Camera Raw and PS4.
    How about the Cannon software that came with camera?  Or one you can download from Cannon.

  • Corrupted RAW files show in Bridge but not Photoshop?

    Hi,
    I have recovered some RAW files that were accidently deleted but most of them are corrupt in windows explorer (using recuva).  Adobe Bridge can see them but nothing else will open the files (or see them).  I really need to edit these files, any help would be appreciated.  I'm on win7 64 bit.  with adobe bridge cs 5.

    What type of RAW files are we talking about, NEF,CR2 or other?
    Bridge is just a flle browser, and RAW files are opened and edited in Adobe Camera Raw.  Do you just get a thumbnail, but it willl not open in ACR?
    Does ACR work with other RAW images that have not been corrupted.
    Do you have a backup (highly recommended) of these images somewhere?  Should be on seperate physical drive or on a DVD.

  • Image rotated in bridge but not photoshop

    Hi All,
    re: CS5 bridge and photoshop
    I rotated a bunch of images in bridge.  But, they did not rotate 180degrees in photoshop.  The orientation is noted in the EXIF metedata.
    I saw this rotation command performed on a CS5 video tutorial.
    Can you tell me what setting in bridge or photoshop is preventing the conversion in photoshop?
    Thanks,
    Starsky
    Windows 7 64bit
    CS5 bridge 4042
    CS5 photoshop 1203

    What type of RAW files are we talking about, NEF,CR2 or other?
    Bridge is just a flle browser, and RAW files are opened and edited in Adobe Camera Raw.  Do you just get a thumbnail, but it willl not open in ACR?
    Does ACR work with other RAW images that have not been corrupted.
    Do you have a backup (highly recommended) of these images somewhere?  Should be on seperate physical drive or on a DVD.

Maybe you are looking for