Aironet 1310 - how to make it automatically reconnect

Hi,
We have deployed a number of IP CCTV cameras to cover a construction project. A number of them are connected using 1310s to provide a wireless link back to the main building.
The building access points are running in Root Bridge mode, the pole mounted 1310s are running in Workgroup Bridge mode.
They connect fine and work well. BUT when the line of site is obstructed by a crane, or a drilling rig for few hours/days, the link goes down. This is fine/expected, but when the obstruction goes away the wireless link stays down until we go to the remote pole and power off and on the 1310 - then it reconnects fine.
Restarting the building 1310 (root bridge) does not normally help.
Is there a setting to force the 1310 to auto-retry the connection every few minutes if the link is down?
Thanks for any help
Richard Cronin

Hi Jeff,
Thanks for the suggestion. I tried the 'root bridge' in Access Point mode but the remote devices did not try to reconnect. I also tried 'non-root bridge', 'root bridge with network clients', 'automatic' etc. I let it sit for a few minutes after each change to see if it helped.
I've going to change it to 'Access Point' again and leave it overnight to see if one of the three remote Workgroup Bridges that are currently unavailable will re-connect.
I know if I ask the site electricians to power the remote Workgroupd Bridges off and on they will connect for a while - its quite frustrating!
Thanks again
Richard Cronin

Similar Messages

  • How to make trackpad automatically reconnect after sleep?

    I have a magic trackpad and an MB Pro.
    When I return to the computer after it has been sleeping overnight, the magic trackpad will not reconnect automatically.  If the computer sleeps briefly, the connection is restored automatically.  If the trackpad is powered off after sleep, it will reconnect when powered on.  But after a long sleep, or perhaps when I have disconnected the laptop for a while I cannot easily make it reconnect.
    It will not reconnect if: I click the power button, click the trackpad, select the trackpad by name and connect from the bluetooth menubar item, connect manually through bluetooth preferences, or turn off the trackpad entirely then turn it on again (force into discovery mode). 
    The only somewhat reliable way I have found to reconnect is: 1) turn off trackpad power, 2) go to trackpad preferences, 3) set up bluetooth device, 4) power on trackpad, 5) select continue when device is found.
    When disconnected, in bluetooth preferences, the device is shown as being paired.  I added it to Favorites.  It is discoverable.  Battery power is good.
    I can reproduce the same symptoms with these steps: 1) put the computer to sleep, 2) manually turn off the trackpad, 3) turn on the trackpad again (it blinks, indicating attempt to discover), 4) wake the computer.
    Can anyone help me find a less time-consuming way to re-establish a connection when the computer wakes from sleep?
    Thanks,
    Tom

    Hi Jeff,
    Thanks for the suggestion. I tried the 'root bridge' in Access Point mode but the remote devices did not try to reconnect. I also tried 'non-root bridge', 'root bridge with network clients', 'automatic' etc. I let it sit for a few minutes after each change to see if it helped.
    I've going to change it to 'Access Point' again and leave it overnight to see if one of the three remote Workgroup Bridges that are currently unavailable will re-connect.
    I know if I ask the site electricians to power the remote Workgroupd Bridges off and on they will connect for a while - its quite frustrating!
    Thanks again
    Richard Cronin

  • How to make Finder automatically go to the foremost open window?

    I hope I'm explaining this clearly.
    Suddenly, when I click on the Finder from the Dock, it does not go to the last open window. I have to go to the Windows menu and select it, or click and wait on the Finder icon in the dock for it to open. I usually have a lot of apps open so when I go to Finder it's to do some file management - and the extra step of having to bring the last open window to the forefront is annoying me!
    Does anyone know how to make the Finder automatically come to the forefront (with the windows) from click in the Dock? I swear my mac always did that before but now it's stopped!

    can anyone help me here?

  • How to make view automatically scroll when keyboard show up

    Hi all
    I'm like a totally noob for objective-c coding, let alone the iPhone programing. :P
    Anyway, I somehow manage to create a simple application that receive input via UITextField, do some simple math, then display the result in other UITextFields (which can act as a input vice versa).
    Problem is, when I use the UITextField at the buttom of the screen as an input, the keyboard will block that text field out of my view, so I could not see what I'm typing at all.
    That's the question. How to make my view scrollable, and make it simply scroll itself out of the way when the keyboard is shown? I already inherit my view from UIScrollView, but don't know what to do next. Can you guys help enlighten me, please?
    Thanx

    Of course, if you're dealing with textFields, you should change a few things try something like that in your .m file :
    - (void)textFieldDidBeginEditing:(UITextField *)theTextField
    if ([theTextField isEqual:yourTextField])
    // Restore the position of the main view if it was animated to make room for the keyboard.
    if (self.view.frame.origin.y >= 0)
    [self setViewMovedUp:YES];
    // Animate the entire view up or down, to prevent the keyboard from covering the author field.
    - (void)setViewMovedUp:(BOOL)movedUp
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3];
    // Make changes to the view's frame inside the animation block. They will be animated instead
    // of taking place immediately.
    CGRect rect = self.view.frame;
    if (movedUp)
    // If moving up, not only decrease the origin but increase the height so the view
    // covers the entire screen behind the keyboard.
    rect.origin.y -= kOFFSETFORKEYBOARD;
    rect.size.height += kOFFSETFORKEYBOARD;
    else
    // If moving down, not only increase the origin but decrease the height.
    rect.origin.y += kOFFSETFORKEYBOARD;
    rect.size.height -= kOFFSETFORKEYBOARD;
    self.view.frame = rect;
    [UIView commitAnimations];
    - (void)keyboardWillShow:(NSNotification *)notif
    // The keyboard will be shown. If the user is editing the author, adjust the display so that the
    // author field will not be covered by the keyboard.
    if ([yourTextField isFirstResponder] && self.view.frame.origin.y >= 0)
    [self setViewMovedUp:YES];
    else if (![yourTextField isFirstResponder] && self.view.frame.origin.y < 0)
    [self setViewMovedUp:NO];
    #pragma mark - UIViewController delegate methods
    - (void)viewWillAppear:(BOOL)animated
    // watch the keyboard so we can adjust the user interface if necessary.
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:)
    name:UIKeyboardWillShowNotification object:self.view.window];
    - (void)viewWillDisappear:(BOOL)animated
    [self setEditing:NO animated:YES];
    // unregister for keyboard notifications while not visible.
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
    be sure to invoke the method when you dismiss the keyboard, so that the view "falls back" to its normal state:
    if (self.view.frame.origin.y < 0)
    [self setViewMovedUp:NO];
    Of course, declare the method
    (void)setViewMovedUp:(BOOL)movedUp;
    in the .h file
    and the #define you will use in you .m file :
    // the amount of vertical shift upwards keep the text field in view as the keyboard appears
    #define kOFFSETFORKEYBOARD 50.0
    // the duration of the animation for the view shift
    #define kVerticalOffsetAnimationDuration 0.30
    good luck !

  • How to make frame automatically size

    Hi,
    I'm developing a dialog using JFrame , but i'm setting the size of it.Is it possible to make it automatically size as and when i add compoments.
    thanks
    Raj

    use pack().
    Ashish

  • How to make an automatic percentage with a catégory

    Hello,
    Thank you if you answer to my problem and also if you know the response !
    So, I have 3 cells :
    -A : with the category (lets make category game, food and books..)
    -B : the price
    -In C : I would like numbers to calculate automatically the cost with percentage (B x30%) if the category is "game", or B x 40% if the category is food, etc...
    Is it possible in one formula ? And also if I have about 10 categories...?
    Now, I know this formula wich is working only for one category, but I don't know how to add the variable about the category :
    sumif (A;book;B)*30%
    For example I would like in the same formula :
    sumif (A;book;B)*30% or (A;game;B)*40% .....
    With this formula, each time I will make a new entry in A with for example "book", and the price in B, the cell C will be automatically fill with the good percentage.
    I hope someone know the answer.
    Thank you very much.

    Hello
    I repeat that all what is needed is in the guide.
    =SI(ESTERREUR(RECHERCHEV(A;rates :: $A:$B;2;0));"";ARRONDI(B*RECHERCHEV(A;rates :: $A:$B;2;0);2))
    =IF(ISERROR(VLOOKUP(A,rates :: $A:$B,2,0)),"",ROUND(B*VLOOKUP(A,rates :: $A:$B,2,0),2))
    Here it returns an empty string if the category is unavailable.
    If you want a true zero, use:
    =SI(ESTERREUR(RECHERCHEV(A;rates :: $A:$B;2;0));0;ARRONDI(B*RECHERCHEV(A;rates :: $A:$B;2;0);2))
    =IF(ISERROR(VLOOKUP(A,rates :: $A:$B,2,0)),0,ROUND(B*VLOOKUP(A,rates :: $A:$B,2,0),2))
    Yvan KOENIG (from FRANCE samedi 1 août 2009 23:04:53)

  • How to make calendar automatically display special events

    hi, i wanted to make my calendar automatic display the events in a specific month. should i use ifelse statement or switch case statement? my web site have display calendar for the current month. it aotumatically update. now i wanted to highlight the special event on that month like New Year, Christmas etc. it automatically change the event according to the month. when it comes to May, it won't display April event but May event such as Labour Day. this is the example, what i wanted it to be is the event date changes according to the month.
    <html>
    <head>
    <title>Brunsfield e-Homes</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link rel="stylesheet" href="home.css">
    <style type="text/css">
    .main {
    width:130px;
    border:0px solid #8D549B;
    border-collapse:collapse;
    .month {
    background-color:#8D549B;
    font:bold 11px arial;
    color:white;
    border-collapse:collapse;
    border:0px solid #8D549B;
    .daysofweek {
    background-color:#C78FB9;
    font:bold 9px arial;
    color:#000000;
    border-collapse:collapse;
    border:0px solid #8D549B;
    .days {
    font-size: 9px;
    font-family:arial;
    color:black;
    background-color: #FADBF2;
    padding: 1px;
    border-collapse:collapse;
    border:0px solid #8D549B;
    .days #today{
    font-weight: bold;
    color: #cc0000;
    border-collapse:collapse;
    border:0px solid #8D549B;
    </style>
    <script type="text/javascript" src="basiccalendar.js">
    * Basic Calendar-By Brian Gosselin at http://scriptasylum.com/bgaudiodr/
    * Script featured on Dynamic Drive (http://www.dynamicdrive.com)
    * This notice must stay intact for use
    * Visit http://www.dynamicdrive.com/ for full source code
    </script>
    </head>
    <body bgcolor="#FFFFFF" leftmargin="5" topmargin="0" marginwidth="0" marginheight="0" oncontextmenu="return false">
    <!-- ImageReady Slices (home.psd) -->
    <div style="position:absolute; left:0; top:64">
    <table>
    <td width="140" align="center" valign="top">
         <font size="1">eCalender</font>     
         <script type="text/javascript">
         var todaydate=new Date()
         var curmonth=todaydate.getMonth()+1 //get current month (1-12)
         var curyear=todaydate.getFullYear() //get current year                         
         document.write(buildCal(curmonth ,curyear, "main", "month", "daysofweek", "days", 1));
    </script>
    </td>
    </table>
    <table width="130" align="center" border="0" bgcolor="#FDC2D6">
    <tr>
         <td class="events" width="20" align="center">1</td>
         <td class="events" align="left">April Fools Day</td>
         </tr>
         <tr>
         <td class="events" width="20" align="center">4</td>
         <td class="events" align="left">Ching Ming Festival</td>
         </tr>
         <tr>
         <td class="events" width="20" align="center" valign="top">8</td>
         <td class="events" align="left">Birthday of Sultan Johor</td>
         </tr>
         <tr>
         <td class="events" width="20" align="center">9</td>
         <td class="events" align="left">Good Friday</td>
         </tr>
         <tr>
         <td class="events" width="20" align="center">11</td>
         <td class="events" align="left">Easter Sunday</td>
         </tr>
         <tr>
         <td class="events" width="20" align="center" valign="top">19</td>
         <td class="events" align="left">Birthday of Sultan Perak</td>
         </tr>
         <tr>
         <td class="events" width="20" align="center">22</td>
         <td class="events" align="left">Earth Day</td>
         </tr>
         <tr>
         <td class="events" width="20" align="center">25</td>
         <td class="events" align="left">Secretary Day</td>
         </tr>
    </table>     
    </body>
    </html>

    http://www.dotjonline.com/main/index.jsp?url=/taglib/calendar/calendarFixed.jsp

  • OT?  How to make an "automatic" photo gallery site?

    This is a loosely defined question as I'm not sure of all the implications and parameters and have no sample to offer.
    My photog client - who doesn't know DW or html - wants a gallery site with a templated page layout so that he only has to upload some (properly named) jpgs into a folder and new pages with thumbnails are created automatically with links in place. I'm not knowledgible enough about html /dynamic html to make recommendations, but I got something similar done with, if I remember correctly, an ASP developer long ago. Can this be done with dreamweaver alone? Suggestions? Samples?

    Many photographers like JAlbum Web Photo Album maker.  It creates thumbnails, watermarks images, generates the code and scripts for Flash galleries, Lightbox galleries, GPS info, etc.. on the fly.  Drag and drop images into folders. Press a button and voila all done.  All he would need to do is upload his finished JAlbum Folder to remote server.  Simple enough if he can use an FTP client.  Or you could build a password protected upload page for him to use.
    http://jalbum.net/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • How to make Safari automatically open .ram sound clips?

    When I click on, say a a sound clip to preview music, Safari just downloads the file but does not automatically play it, so I have to click on the file for it to be played by RealPlayer instead of this happening automatically after the download. The "open "safe" files after downloading" box is checked in preferences.
    Using Safari 2.03 and RealPlayer 10.0.0 with Tiger

    Safari probably has Open Safe Files disabled in preferences as a security caution. Open Safari's Preferences and click on the General icon. Check Open Safe Files if you want Safari to open files automatically. However, if you do this, make sure you have installed the most recent updates using Software Update because the last security update fixed a couple of exploits related to malicious files.

  • How to make Playback automatically reset transport to start at patch change?

    I am working with some stage tracks in MainStage. We currently use Digital Performer and are wanting to move over to Apple.
    I want to be able to know that whenever I open a patch in my set that it will always recall the transport position to start. I know that I can do this within the Playback plugin and change the "Play From" parameter to "Start". However, when we are rehearsing, I want to be able to always start from wherever we are in the song. For example, I want to still be able to start at Chorus 2 - I don't want it to always begin playing from the start.
    However, I want to reiterate my point: When I move from patch to patch, I want it always cued to the start of the track. Is this possible?
    One last thing, is there a way for me to choose a particular measure that I want the track to start playing back at for rehearsal purposes? For example, maybe I don't want to play the whole Chorus 2 which starts at measure 40, maybe I want to just start in the middle at measure 47? How do I control that?
    If you need any clarity on my question, please let me know?
    As of now, I am just not clearly seeing MainStage as a viable alternative to Digital Performer.
    Thanks,
    - John

    Greetings fellow DP user!!
    The good news is, you can do ALL of this.
    Not sure if you have experimented with "play from relative position"
    I highly recommend you try this out. As long as you are following a click of sorts, MS "transport" is still in play mode the PB will continue according to how many bars you are ahead in the song.
    Also, in any Wave/AIFF you load into the Playback, you can place MARKERS.
    You can set the PB to always start at a certain marker, and also, to skip ahead and back between those markers.
    To make markers, you can use Quicktime, Peak, Apple Loop Utility, Logic and most likely DP.
    Once those markers are embedded into the file, you can assign a MIDI command, or a keyboard command to skip ahead and back.
    Playback not playing back from the start:  Say what?!
    I have a sneaking suspicion that part of your issue might be that you are incorrectly using the "Set" and "Patch" in the MS heirchy.
    If you put a PB into a "Set" and select "Play from Start" it will do this.
    It is an easy mistake to make: every set needs a patch, so you accidentally go into the patch and make adjustments, not realizing that ALL adjustments must be made from a "SET".
    It's only a guess, but its the only reason I can think of as to why your songs/loops are not starting from the beginning.
    Keep me posted, and let me know how it works.
    I do this all the time, and never have this problem.
    TREATMENT

  • How to make iTunes automatically add music to my library when its downloaded from the web?

    Before OS Yosemite, when I downloaded music off the web it would automatically be added to my iTunes library.  Now they just ends up in my downloads folder but once I click on them, they start playing in my iTunes.

    Hi Darg,
    I don't have Safari installed here to look at, but I'd imagine it has a similar way to open certain kinds of downloaded files in specified applications.
    In any case, the second method -- directing the download to your Automatically Add to iTunes folder -- is simple to do in any browser.
    Let me know how it works out!
    Ed

  • How to make videos automatically play right after each other?

    I have four videos that I need to automatically play right after each other. For instance video1 plays and is done so video 2 should automatically start to play and then when video 2 is done video 3 should start and when video 3 is done video 4 should start and when video 4 is done video 1 should start. How do you code for this? Also, when a button is clicked whatever video is playing needs to stop and then the item that the button is linked to should show up whether it is another video or a graphic with scrolling text.

    How do you use a complete listener? Can you give me an example of code to use or give me a link that has step-by-step instructions? I really would appreciate it.

  • How to make Mail automatically choose available smtp server?

    I have recently switched to using Mail from Thunderbird.  In general I'm happy with the move in a number of ways, but one feature of Mail annoys me: I use a laptop as my sole computer and when I'm at work I use the smtp server at work because it responds faster than my Comcast provider. When at home, I have to use the comcast smtp because the work server won't accept outgoing mail from outside the university domain. 
    I have my accounts set so that they may use multiple smtp servers (the "use only this server" box is NOT checked), yet each time I switch locations, Mail tries to use the last used server, but then won't automatically swtich to the other.  I have to respond to a dialog box asking which to use. 
    Is there a way to set it to automatically switch smtp servers if it doesn't get a response from the first one it picks?
    Thanks! 

    You would not use JavaMail to make a mail server. JavaMail is for mail clients.

  • How to make firefox automatically go to suggested URL

    I'm not sure if this is a setting or something cause by firefox updating.
    when I start filling the address bar with the name of a site or URL it gives me suggestions from my history or something. When I click one of the suggestions the URL just sits in my address bar. In order to actually go to the web page I have to press enter. This is annoying. It used to go to the web page as soon as I clicked the suggested page. How do I make it do that again?
    [edit] It will go to to some web pages as soon as I click the suggestion but most of the time the URL will just sit in my address bar waiting for further instruction.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How to make Safari automatically enter ebay Password

    How do I get Safari to automatically put in my Ebay password. I am the only one who uses the computer and I would like to not have to enter it each day.

    HI,
    From your Safari menu bar click Safari / Preferences then select the Autofill tab.
    Select: User names and passwords.
    Go to the eBay site. Login with your user name and password. Click Yes when prompted.
    That will store that data to a new keychain for you in Keychain Access (Applications / Utilities)
    When you revisit eBay, you shouldn't have to enter your username and password.
    If you forget your eBay password, just open the Keychain Access (Applications / Utilities) Select Passwords on the left. Double click the eBay keychain. Click Show Password
    Carolyn

Maybe you are looking for

  • Problem reinstalling App Server 8.1 2005Q1

    I installed App Server 8.1 and run it successfully. Later I had to uninstall it, but then, when I want to reinstall the App Server it fails. When I set the installation folder and press next, nothing happens. Thanks in advance. Marcelo.

  • Quality plan as per production version

    Hi SAP gurus, My client has multiple Production versions and they want to use different Quality plan as per version , how  I can map this process in SAP. I tired using in production version by putting Qualiity plan instaed of routing,  Inpection lot

  • My trackpad is not final and the pointer jumps around the screen

    my trackpad is not final and the pointer jumps around the screen I wonder if physical or software problems my macbook pro is 13 mid 2012 model: MacBookPro9, 2 so mountan lion About a week ago I have this problem and I worry as much care and not my ma

  • Jar Libraries

    Hi, I have my jar file created with the main class specified. That works fine but it fails to find associated libraries which I have included in a lib folder in the jar. So my questions is how do I specify on the command line the classpath to look at

  • Printing Problems with Picturemate

    Hi, has anyone ever printed on the Epson PictureMate? I just can´t get it to go. Not with a single print or with anything else. The printer works fine in PS CS2. Any idea?? Help appreciated