Intermittent problem with access point (WAP321)

We hane an intermittent problem with our Wifi access point WAP321. Suddenly, all clients are unable to access Internet, server and local network. The signal is 100%. The message is no internet connection or limited connection (on all device, Iphone, computer, etc.). When I check to Ip configuration, the ip adress have change for loca 169.x.x.x. The only way to resolve is to reboot the access point. (POE).
It seem that access point don't relay information to rest of network. Strange.
The access point is connected to a simple unmanaged switch. This switch is connect to router and server. The serveur (Win2008) is the DHCP Server and DNS Server.
Can you help me to find a solution. ?

This may be the problem;
Devices: WAP discovers devices with ASSOC method that don't have an IP
CSCtz20891
Description
Symptom:
The OnPlus topology will show nodes with no IP address. Devices associated to WAP121/321 VAP/SSID not on the management VLAN will display topology nodes with with no IP address.
Conditions:
This occurs when the client associated to the WAP121/321 but is on a VLAN other than the management VLAN. In this case the WAP client information can be collected on the management VLAN, but the clients cannot be ARP/ping to validate.
Workaround:
None

Similar Messages

  • Problem with Access Point app

    Yesterday I experienced a problem with my internet sharing where it wouldn't start and gave me an error: Connection not shared, Internet sharing isn't currently available
    . I ran across an article on wpcentral.com where they suggested installing the Access Point app from this thread:
    http://discussions.nokia.com/t5/Pool-of-Knowledge/Nokia-Windows-Phone-8-App-Updates/td-p/1640082
    Now I've done that and I see 3 profiles in the app, only 2 are LTE. Activating either of those LTE profiles now gets me an error when trying to internet share that looks like this: Connection not shared, To enable tethering on this device, go to att.com/mywireless or dial 611. When I use the 3g access point profile I get the same message I was getting yesterday.
    At this point I don't think this app is doing anything for me. I dont' use multiple sims, I'm not a world traveller. I also don't know which profile I should be on. I'm clearly in over my head and would like to just take a step back. However, I can't see a way to uninstall the app as it's now in settings. How do I get myself back to where I was yesterday?
    And for bonus points, does anybody know what the original error I was getting means?
    Thanks,
    Joel

    Hi Adrian,
    Yes, I've tried a soft reset to no avail. I've gone to both the AT&T store and the Microsoft store and neither of them have any thoughts on what's going on. At this point I think I will need to replace the hardware since I've not found a solution from anyone.
    Thanks for you help.
    Joel

  • N73 problem with access point.

    I have 3 APN : orange mms, orange wap and orange internet. I deleted the orange internet apn (from tools settings connections) and set the phone browser to use the orange wap apn. My problem is that periodically the Orage Internet apn appears again in the list and the browser automaticaly switches to that one. The browser does not have any option to ask on connection. In the last 2 days I browsed 20 mb on the internet without knowing that it is internet not wap and this will cost me 25 $.
    This is the most stupid thing I've ever seen, the phone lets you change your settings but it does what it wants (stupid factory settings).
    Any ideas/ solutions?

    Is your phone locked to the Orange network or did you buy it SIM free? Seems like typical behaviour for a phone with firmware designed for Orange.

  • Intermittent problem with TestStand calling CVI DLL calling MSCV DLL

    Sorry about cross post, but I am not sure which group is best to address
    this issue.
    Setup:
    Windows 2000 SP1
    TestStand 2.01f
    CVI 6.0
    MSVC++ 6.0 SP5
    Problem:
    I have a CVI Test Library DLL that contains test functions called by
    TestStand using the C/CVI adapter. The CVI Test Library DLL in turn makes
    several calls to another DLL written in MSVC++. I am experiencing an
    intermittent problem with one of the MSVC functions. The problem ~appears~
    to be stack related, but I am not sure. Among other things, this MSVC
    function accepts a const char * argument that is a TestStand lookup string.
    The function uses this string to access the TestStand API.
    What happens is this: Everything works fine. I then recompile the CVI DLL
    after making some mod, then run. The MSVC++ DLL asserts that the const char
    * arg passed by the CVI DLL is NULL. However, this is not the case if I
    single step through the CVI code. It has happened both with passing
    variables as the const char * argument and as hardcoded strings literals, so
    its not that I am actually passing NULL. The other argument to this
    function is the TestStand sequence context dispatch pointer (LPDISPATCH
    pobjSequenceContextDisp) and it always ~appears~ to be passed correctly.
    The problem is frustrating and hard to debug because I can not
    deterministically reproduce it. The problem ~never~ appears when I debug my
    MSVC++ DLL in Visual Studio. And it only occasionally appears otherwise.
    The problem, when it appears, always appears on the first run after
    recompiling the CVI DLL, though the problem does not happen after ~every~
    recompilation. I'd say it happens 1 in 6 times after a recompile.
    Recompiling the exact same code does not always make the problem disappear.
    If I change the CVI code (code that has nothing to do with the argument
    itself though) and recompile the problem almost always goes away. Selecting
    'Mark all for compilation' and rebuilding does not make the problem go away.
    Only tweaking the CVI code and recompiling does (usually).
    Whats more, the problem appears:
    * With the CVI DLL built as Debug or Release mode.
    * With the CVI default calling convention set to __stdcall or __cdecl.
    * With the C/CVI TestStand adapter set to run in-process or external
    instance of CVI.
    The problem appears to be some sort of stack or argument passing problem
    between CVI and MSVC, though thats just a guess based on the symptoms. I
    have quadruple checked the calling conventions of all declared functions.
    The CVI DLL functions all use TX_TEST (which resolves to __cdecl). The MSVC
    DLL functions all explicitly use __stdcall. Is there a problem with calling
    __stdcall MSVC functions from a __cdecl CVI function?
    I can find no other memory leaks or indications of memory corruption
    elsewhere in either the CVI or MSVC DLLs. Its only this one function that
    exhibits this strange 'null const char *' problem.
    Can anyone offer any ideas about what may be causing this problem? Anything
    else I should check/verify?
    Regards,
    Joe

    Silvius,
    > Although I'm not sure if any of the following are the real cause of
    > your problem, I have the following suggestions:
    Thanks for the reply. At this point any and all suggestions are welcome...
    > 1. There could be a problem with calling
    > __stdcall MSVC functions from a __cdecl CVI function. As a workaround
    > wrap the _cdecl call inside a _stdcall call that is exposed or
    > exported to TestStand or vice-versa. This can be a problem because if
    > _cdecl is used, the calling function is responsible for cleaning up
    > the stack and if _stdcall is used, the called function is responsible
    > for cleaning up the stack.
    I was under the impression that as long as everything was explicitly and
    consistently declared, you could safely mix cdecl and stdcall f
    unction
    calls. Is it bad to do this? Is this a known issue with the CVI compiler?
    I've never seen a problem with doing this under MSVC++.
    I'll try wrapping them in cdecl calls for CVI - though we have a
    depressingly large number of stdcall functions in the MSVC DLL ;-). They
    need to remain stdcall in the DLL because we also call them from Visual
    Basic.
    > 2.Don't mix Debug version of one DLL with the Release version of the
    > other DLL. I had some bad experiences doing this and both DLLs where
    > developed in MSVC. Allways use either Debug either Release versions of
    > DLLs.
    I verified that the MSVC DLLs were either ALL Debug or Release. I too have
    seen nasty problems when MSVC Debug and Release is mixed.
    One thing I had not thought of until your reply: What about mixing CVI Debug
    DLLs with MSVC Release DLLs? Have you ever seen issues with doing this?
    Thanks!
    Joe

  • Problem with access to SipFactory from jsp-pages in JBoss environment

    Hello!
    I have an installation of the OCMS 10.1.3.3. deployed into a JBoss (jboss-4.0.5.GA) environment. Unfortunately I have a problem with accessing the SipFactory from a jps-page. Encouraged by the "messagesender" example I tried to get an instance of SipFactory from my jsp-page simply by calling:
    SipFactory sipFactory = (SipFactory) application.getAttribute(SipServlet.SIP_FACTORY);
    But unfortunately there seems to be no attribute "SipServlet.SIP_FACTORY" and I only get a null pointer. I have also tried running that code in the orignal messagesender example but it didn't work either. So I wonder if this should definetely work in a JBoss environment or if this might be a known problem. Is there anything that I could check/do regarding this problem? I suppose there must be an oracle module which should take care of making the SipFactory availabe after it is deployed. Perhaps something went wrong during the deployment?!
    Best regards,
    Tim

    Hi
    On JBoss, OCMS does not support converge applications.
    I.e the SipFactory can be retrieved from the servlet context when running on OC4J.
    Instead the SipFactory can be found in JNDI as described in the Developer's Guide:
    "External Access to SIP Servlets
    To enable convergent applications between SIP and HTTP, the OCMS Container allows you to get access to the javax.servlet.sip.SipFactory by looking it up through JNDI. The SIP Factory will be registered under the same name as the display name of your SIP servlet as illustrated in Example 2–12. The <display-name> in the sip.xml in this case must be "My sip app".
    Example 2–12 Accessing the Data for a SIP Session through JNDI
    InitialContext ic = new InitialContext();
    SipFactory sipFactory = (SipFactory)ic.lookup("sip/My sip app");"
    Cheers
    Lucas Persson

  • Help intermittent problem with logging in

    Help i have intermittent problem with logging in, sometimes it just comes up with the desktop without any icons or dock and i have to restart the server so i can log on properly, but it doesn't happen all the time, any ideas would be appreciated???

    The clients login window just shakes and won't login. I did find one thing that helps some of my Mac Lab woes.
    Some students get a dock that only has 3 icons. These students also will have saving and printing problems when they get this default dock.
    I think some of the problems occur when the student gets over quota, some preference files get corrupted.
    1. Student will login.
    2. Open the student's home folder. Then open Library and Preferences.
    3. Find the file com.apple.homesync.plist and delete it.
    4. Empty Safari Cache and the user's Trash Can and make sure they are not over quota.
    5. Logout and login.
    This will fix some problems, but not the problem when students can't login at all.

  • I recently upgraded to Firefox 13.0.1 and I'm operating a Mac Powerbook Pro with OS of 10.6.8 (Snow Leopard). Now I'm having intermittent problems with sending

    I recently upgraded to Firefox 13.0.1 and I’m operating a Mac Powerbook Pro with OS of 10.6.8 (Snow Leopard).
    Now I’m having intermittent problems with sending emails where Firefox freezes up. There is often a yellow warning above suggesting 32-bit mode, sometimes I can click to shift it that way, sometimes not.
    Anyone having these problems?
    Any suggestions?

    I recently upgraded to Firefox 13.0.1 and I’m operating a Mac Powerbook Pro with OS of 10.6.8 (Snow Leopard).
    Now I’m having intermittent problems with sending emails where Firefox freezes up. There is often a yellow warning above suggesting 32-bit mode, sometimes I can click to shift it that way, sometimes not.
    Anyone having these problems?
    Any suggestions?

  • I'm having an intermittent problem with my midi controllers triggering Mainstage 3. I'm using a PreSonus Firebox audio interface. It's been working fine for months, but now when I first turn on the computer in the morning , I'm not able to trigger Ma

    I’m having an intermittent problem with my midi controllers triggering Mainstage 3.
    I’m using a PreSonus Firebox audio interface.
    It’s been working fine for months, but now when I first turn on the computer in the morning , I’m not able to trigger MainStage from the keyboard.  I tried different midi controllers, different keyboards, different midi cords, and check midi preferences.  The audio interface is working fine and is recogonized, but the midi doesn’twork.  I re-started the computer several times and then finally it miraculously starts working again.
      I’ve been having to this every day now.  Any help or ideas is very much appreciated.

    I Had the same problem with a FireStudio. Try unplugging the FireWire plug and the power plug. Wait for a few seconds, then plug both back in. The light on my FireStudio was flashing blue/red which means "not connecting." I did what I just described, and everything works again. Hope it works for you.

  • Problem with decimal point in Korea and Japan

    Hi all,
    I have one problem with decimal points.
    I need to change in my out put cuurency values as per japan or korea standards.
    Please help me is there any function module for this one.
    program using alv grid display.
    i use write statement but it is not working. Because
    data: L_AMT  type glpca-hsl,
             G_AMT  TYPE CHAR15.
    CURR this value is 'JPY'.
    WRITE L_AMT CURRENCY CURR TO G_AMT.
    here i need to do
    L_AMT = G_AMT.   "" going to runtime error.
    if i taken like
    data: L_AMT  TYPE CHAR15,
             G_AMT  TYPE CHAR15.
    CURR this value is 'JPY'.
    WRITE L_AMT CURRENCY CURR TO G_AMT.   "" it is not working
    Regards
    margani

    Hello,
    This is pretty basic, whenever you've currency & quantity fields you need to pass the corres. reference fields.
    In your case you need to populate the cfieldname & ctabname fields of the FieldCat.
    BR,
    Suhas

  • Problem with Access Policies (create multiple resources)

    I'm having a problem with Access Policies:
    The first policy must create a resource.
    And the following policies should create childs on the resource.
    The problem here is that when policies will add the childs, the resource is not provisioned yet.
    And then each one will create a resource but i just want one resource with the childs.
    When the resource is already provisioned, the policies update this resource properly.
    How can I fix this?
    tks

    Ricardo,
    I had a similar problem. In a post-process handler I was managing the user membership in specific roles through the removeMemberUser and the addMemberUser of the tcGroupOperationsIntf class.
    The last parameter of this method was a boolean which, when true, would automatically trigger the access policies programmatically in the post-process.
    The problem is that there also is an OOTB event handler for triggering access policies, so I was basically triggering the access policies twice and duplicated resources were appearing.
    Hope this helps.
    Cheers

  • I've an intermittent problem with microphone on iphone4

    i have an intermittent problem with my microphone on my iphone4

    what kind of problem do you have with the microphone?
    You may want to take a look at http://support.apple.com/kb/ts2802 since its the iphone hardware troubleshooting page.
    It could just be a hardware problem. You may need to get it in to an apple store.

  • Intermittent problem with Personal Hotspot

    Hello All
    I think either my iPad 2 or my iPhone 4 is mental.  Can anyone convince me otherwise?
    For some months now I have been experiencing an intermittent problem with tethering my iPad 2 to my iPhone 4 Personal Hotspot. 
    Sometimes it works without a hitch (although I have to turn the Personal Hotspot on the phone off and on again to get iPad to 'see' it) and at others, like now, it shows me the message 'Unable to join the network 'iPhone'.  It throws the message up so quickly that even though it 'sees' the phone in the list of networks, it behaves as though it can't actually be bothered to even try to connect.
    I have tried reboots and restarts, 'forgetting' the network, changing passwords, sacrificing a chicken... all the usual stuff.  But still when it gets in this kind of mood it stubbornly refuses to do anything.  I have even taken it to the Apple store where, not surprisingly it worked first time and the assistant looked at me as though I was an idiot.  It then proceeded not to work for a couple of days again as if punishing me.  There is no problem with the general Wi-Fi connection as I have another phone (an Android) that I run as a Hotspot too.  It has never once had a problem connecting to this or any other Wi-Fi connection..    
    Confusingly, and rather irritatingly, after a few days of this not-connecting lark it will have a few days of not having a problem connecting at all.  I won't have changed any settings on either iPad or iPhone and so I have no way of figuring out why this is happening.  This has been the same situation with all versions of iOS I have installed ever since buying the phone in April 2012, and the iPad in June 2012.
    Please, is there anyone out in the ether that can suggest a solution to this?  Or is one of my Apple products simply mad?  I have given both devices a strong talking-to, but this hasn't sorted the problem either.  Next, I think I might have to try sacrificing a goat.

    I have the same issues with my iPhone 5 (6.1.4).  I do not have an answer for you, and perhaps my "workaround" will lead someone with more knowledge about these things to offer us more information.
    When I turn on the Personal Hotspot and it does not show up as visible on my iPad or MacBook, or offers that ambiguous message about being unavle to join the network, I perform a few steps that almost always resolves it.  I have to go through these steps twice sometimes.  The order of operations seems to affect the outcome (at least it appears to me that it does)
    Turn off WiFi on the client device (iPad, MacBook, Windows laptop, KindleFire, etc)
    Turn off Personal Hotspot on iPhone
    Turn off Bluetooth on iPhone
    Turn off WiFi on iPhone
    Then turn on Personal Hotspot and allow it to automatically start WiFi and Bluetooth.
    Turn on the client WiFi services.
    Connection successful!
    As I said, I sometimes need to perform the steps ablve twice, but it eventually works.  It is incredibly frustrating to go through these hoops to make the device perform.  I do not know precisely when the problem began to occur, but I don't think it did not occur on my iPhone 4s with IOS5.
    Any help from the Apple guys would be appreciated.  I think it is a software issue, because the shutdown of services and restart seems to resolve the issue.  I guess I might take a trip to the Aple Store to have them look at this behavior.

  • Problem with access to SMTP, IMAP, POP3 protocols in CAS 2013.

    Hi,
    we have problem with access thgrough SMTP, IMAP, POP3 protocols in CAS 2013.
    If I test connection to SMTP 25 port from other computer, session end quickly.
    Test from CAS2013 to localhost or public IP is OK (similar also for IMAP and POP3).
    Receive connectors are with defaults settings, firewall is disabled.
    Service Microsoft Frontend Transport Services restarted, but no success.
    Certificate is assigned to IMAP, POP3, SMTP, IIS.
    IIS and HTTP(s), protocols are OK. Clients can connects only thgrough web, mobile (ActiveSync), or with Outlook with proxy.
    Do you have some tip, what to test?
    If I create new testing receive connector on port 26 for anonymous, behaviour is same, quick disconnecting.
    Thank's Mirek

    Hi,
    Pleaser try to use the following link to test your STMP/POP/IMAP e-mail, and check the test if successful:
    https://testconnectivity.microsoft.com/
    If unsuccessful, please check the test result, it will tell us what caused the problem.
    Thanks.
    Niko Cheng
    TechNet Community Support

  • Subject: FlexConnect compatibility with Access Point

    Subject: FlexConnect compatibility with Access Point
    Summary: Hi,
    We have today one Cisco 5508 and those access point on remote sites
    o CISCO AIR-LAP-1131AG-E-K9
    o CISCO AIR-LAP-1231G-E-K9
    o CISCO AIR-LAP-1142N-E-K9
    We plan to use redundancy on the controller and implement Flexconnect on the remote site. What we need to know is if I can implement Flexconnect on all actual access point - I think it is possible on 1142N + 1131G but do not know on 1231AG - is it correct or I'm wrong
    We plan to install the latest SW version for 5508 controller.
    Thank you
    Jean

    Here is what is supported
    Note All features discussed in this chapter apply to indoor (1040, 1140, 1250, 1260, 3500) and outdoor mesh access points (1500 series) unless noted otherwise. Mesh access point or MAP is hereafter used to refer to both indoor and outdoor mesh access points.
    Link to the guide
    http://www.cisco.com/en/US/products/ps11635/products_tech_note09186a0080b7f141.shtml
    Sent from Cisco Technical Support iPhone App

  • Problem with Vanishing Point

    hello!
    I've got a problem using Vanishing Point filter in Photoshop CS4. When I load this filter an error message pops saying "The operation could not be completed"
    I attach a screen cap of the error. Somebody can help? thanks.

    I run into this problem with Vanishing Point on about a quarter of the files I run the filter on. I can initially create a grid and do one transform, but the next time I try to run the filter I get the error, "The operation could not be completed". Then the error seems to stay attached to the file. I can run the filter on another file, but even if I close and reopen the file, I still can't run the filter. Even doing Save As and renaming the file doesn't rid it of the error.
    This has been the case since VP was introduced. I'm now on CS4. MacPro Dual-Core, 8GB Ram.
    I've tried changing the memory allocation to 55% with no change.
    I see that this has been addressed before in the Forum with no solution, Chris Cox care to wade in?
    This is a potentially valuable tool if it were implemented better.
    Craig

Maybe you are looking for

  • How can I use "write to spreadsheet" during the data is taking but not the end of all the loops

    Hi, I have to run an experiment on Labview 6 or 5. I don't have Labview 7 on that computer for some reason. My experiment is talking about 1000 hours, and I have a probelm on storing the data. Right now I am using "Write to spread sheet" and I set th

  • Max records that retrieves in pdf and excel

    Hi All, I have one XML report whose output should be viewed in excel/pdf.The report is running fine for few number of records and if the count is very large i.e, more than 6lacs the report is erroring out.To my knowledge i am thinking the pdf/excel w

  • Re: NEW GT72 2QE Dominator Pro and question on refresh rate

    When i go into screen resolution > advanced settings > monitor I also tried to overclock in the nvidia console to 75hz, tested it, noticed the screen was shaking + unfocused, then refertd back to 60hz

  • Report which gives the landed cost of the item

    Hi , Can anyone let me know is there anr report in R/3 which gives gives me the landed cost of the item for a particular considering my net price of the item including my delivery costs, credit memos, sub sequent debit/ credit. Either in R/3 or in BI

  • BAPI call from Process Chain

    Hi, in our system , a Program runs everyday in R3 system to fill the customized delta tables and we run the process chain to load the data in BW from Delta tables in R3 system.But problem in the above scenario, after completion of R3 Job in R3 system