Tracking DNS Requests by IP with IOS

Is it possible to track and log dns queries by IP or HW address with IOS?
This is a smaller network, 30 or so users. They have no network management or security aside from a 867VAE branch router, only on offsite syslog server.
I know there are tools made for this but I have been tossing around how to rig it in IOS to basically provide me a log of who is requesting what.
I thought of perhaps dns views, but I need to log the domain and time of the request. This was just thrown in my lap after a weekend long marathon or other work, so maybe I'm just not thinking straight.
How can I get something like this to work with out adding hardware?
Thanks!

with version 2.0 you will be able to rate-limit traffic based on the criteria you mentioned.
However, the action taken when the traffic exceeds the limit is to drop.
Not dropping would mean to buffer data and send them later with a delay.
This is a risky business. Buffering means more memory needed - more cpu. And what happens during a site attack for hackers ?
Definitely, you want to drop.
Applications can recover anyway.
Gilles.

Similar Messages

  • With iOS 6, how do I skip tracks instead of fast forward?

    I run with my iPhone 4. I keep it in the "off" mode to save the battery while listening to music.  I routinely double tap the home button to get the quick controls up so I can quickly skip tracks instead of typing in the acess code (hard to do when you are runnning).  My issue is that with iOS 6, the skip track buttons have become jump forward 15 seconds buttons.  ***?? How do I change this back to skip the entire track?

    Sorry, Apple has no approved method to downgrade the version of iOS on your iDevice. You can voice your displeasure with the iOS by leaving feedback at the appropriate subsection from the link below.
    http://www.apple.com/feedback/

  • Hi everyone,I have an Iphone 4S,when I updated iOS 7 my phone got slow,so please help me how to downgrade it to 6.1.3 or 6.1.3,I have another problem with iOS 7,I cant request my credit balancing,when i type *101

    Hi everyone,I have an Iphone 4S,when I updated iOS 7 my phone got slow,so please help me how to downgrade it to 6.1.3 or 6.1.3,I have another problem with iOS 7,I cant request my credit balancing,when i type *101# automatically calls and says "this number dows not excits",I wnat iOS 6.1.2 back ..

    sorry for my bad english ..

  • Just updated my iPad  with iOS 7.0.3. my iPad music downloads are messed-up, the regular album tracklist is disorganised...can't get them "back on track" who can help me out? Greets Alex

    Just updated my iPad with iOS 7.0.3 > my iTunes music downloads are messed up....the regular tracklist of the albums are in chaos, can someone help me out to get them " in line" again!?

    Well I basically answered my own question. I just ended up deleteing the tracks from the albums missing artwork (I highlighted all of them and right clicked delete) then just dragged over the album again that had the artwork already set and it worked like a charm.
    Couldn't figure out any other way to do it. Still open to ideas for the future if anyone has any.

  • Video play test on an iPad2 or iPad2 with iOS 4.3.5 request

    Howdy all,
    Would someone with iOS 4.3.5 on their iPad1 ord iPad2 please review the post below and let us know if the video plays nominally?
    Does the video play within the video rectangle on the post or opens a new browser widow and plays.
    http://www.drivingthenation.com/wordpress/?p=2064
    much obliged,
    Stretch

    Understood. We are aware that iOS devices do not play Flash.
    Thank you all for responding. Please confirm you are all looking at the page http://www.drivingthenation.com/wordpress/?p=2064 with iOS 4.3.5 on your iPad1 or iPad2.
    The video loads nominally on my iPhone3GS (iOS 4.3.1) in a separate browser window like watching a YouTube video.
    I've attached a screen shot of the iPad2 with iOS 3.4.0.
    Is this what the post looks like on your iPad?
    much obliged,
    Stretch

  • DNS request with netcat

    Hi,
    I would like to do a DNS request via netcat, especially writing my Request on my own and just use netcat to send it out.
    This is how a DNS-Request looks like as a Network dump (via wireshark, tcpdump looks the same if I remember correctly):
    0000 00 00 00 00 00 00 00 00 00 00 00 00 08 00 45 00 ........ ......E.
    0010 00 3c 51 e3 40 00 40 11 ea cb 7f 00 00 01 7f 00 .<Q.@.@. ........
    0020 00 01 ec ed 00 35 00 28 fe 3b 24 1a 01 00 00 01 .....5.( .;$.....
    0030 00 00 00 00 00 00 03 77 77 77 06 67 6f 6f 67 6c .......w ww.googl
    0040 65 03 63 6f 6d 00 00 01 00 01 e.com... ..
    But what of this do I have to use to pipe into "nc -vu 8.8.8.8 53"? Is this even the right command? I'm new to netcat and would like to work on my network-skills, that's why I'm trying this (so please no "you could use host" )
    Thanks for help!
    Last edited by Ovion (2013-09-25 23:55:42)

    It looks like you've not only included the DNS request in your data but also the UDP packet itself. That won't work since you're telling netcat to build (yet another) UDP packet.
    If you captured your packet using wireshark, make sure to only copy the "DNS (query)" part -- not the entire packet.
    Try:
    0000: 064f 0120 0001 0000 0000 0001 0667 6f6f .O. .........goo
    0010: 676c 6503 636f 6d00 0001 0001 0000 2910 gle.com.......).
    0020: 0000 0000 0000 00 .......
    I've also slightly adjusted the format so it can be reverted to binary format using xxd. Now you can do this:
    $ xxd -r my-packet.hex | nc -nu 8.8.8.8 53 | xxd
    0000000: 064f 8180 0001 0006 0000 0001 0667 6f6f .O...........goo
    0000010: 676c 6503 636f 6d00 0001 0001 c00c 0001 gle.com.........
    0000020: 0001 0000 0042 0004 adc2 4666 c00c 0001 .....B....Ff....
    0000030: 0001 0000 0042 0004 adc2 4665 c00c 0001 .....B....Fe....
    0000040: 0001 0000 0042 0004 adc2 4664 c00c 0001 .....B....Fd....
    0000050: 0001 0000 0042 0004 adc2 4671 c00c 0001 .....B....Fq....
    0000060: 0001 0000 0042 0004 adc2 468a c00c 0001 .....B....F.....
    0000070: 0001 0000 0042 0004 adc2 468b 0000 2902 .....B....F...).
    ^C
    What you see is a hex dump of Google's response. You have to quit netcat using control-c because it knows nothing about DNS -- netcat just waits for data.

  • Internal server error while connecting SAP's customer financial fact sheet with iOS device

    Hi all,
    I am trying to connect SAP's customer financial fact sheet latest ( version 3.7)   with iOS phone/iPAD (version 7.1) but it shows internal server error,
    when trying to connect  Neither "Gateway (direct)" nor "SMP Cloud" enabled with port 80/443.
    On other hand my android devices with this app is working ok.
    Trace Log is below:
    2014-09-11 11:27:58.298 Debug Communication error: Error Domain=HTTPRequestErrorDomain Code=11 "INTERNAL SERVER ERROR" UserInfo=0x15eef620 {NSLocalizedDescription=INTERNAL SERVER ERROR}
    2014-09-11 11:27:58.295 Debug Request http://server:8010/url t finished with error Error Domain=HTTPRequestErrorDomain Code=11 "INTERNAL SERVER ERROR" UserInfo=0x15eef620 {NSLocalizedDescription=INTERNAL SERVER ERROR}
    response <?xml version="1.0" encoding="utf-8"?><error xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance"><code>HTTP/500/E/Internal Server Error</code><message> Call of service /sap/opu/odata/sap/fincustfactsheet terminated because of an error. The following error text was processed in system NQT : The ASSERT condition was violated.The error occurred on the application server . The termination type was: RABAX_STATE.If the termination type is RABAX_STATE, you will find more information on the cause of termination in system NQT in transaction ST22. If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server  in transaction SM21. If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process in transaction ST11 on the application server . You may also need to analyze the trace files of other work processes. If you do not yet have a user ID, contact your system adminmistrator. </message></error>
    2014-09-11 11:27:58.286 Debug [ERROR] 500:INTERNAL SERVER ERROR/Location:-[ODPRequest startSynchronous] + 1427
    2014-09-11 11:27:56.239 Debug DE:Using SUP Manual User
    2014-09-11 11:27:56.238 Debug DE:Get svcDoc URL http://server:8010/url
    2014-09-11 11:27:56.216 Debug DE:startSAPODataRequest CompanyCodeCollection
    2014-09-11 11:27:56.204 Debug DE:SAPODataAccess dealloc CompanyCodeCollection
    2014-09-11 11:27:56.198 Debug DE:CustomerCardsViewController refresh
    2014-09-11 11:27:52.600 Debug Logging/Tracing on
    2014-09-11 11:27:19.792 Debug Communication error: Error Domain=HTTPRequestErrorDomain Code=11 "INTERNAL SERVER ERROR" UserInfo=0x193f3060 {NSLocalizedDescription=INTERNAL SERVER ERROR}
    2014-09-11 11:27:19.787 Debug Request http://server:8010/url  finished with error Error Domain=HTTPRequestErrorDomain Code=11 "INTERNAL SERVER ERROR" UserInfo=0x193f3060 {NSLocalizedDescription=INTERNAL SERVER ERROR}
    response <?xml version="1.0" encoding="utf-8"?><error xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance"><code>HTTP/500/E/Internal Server Error</code><message> Call of service /sap/opu/odata/sap/fincustfactsheet terminated because of an error. The following error text was processed in system NQT : The ASSERT condition was violated.The error occurred on the application server. The termination type was: RABAX_STATE.If the termination type is RABAX_STATE, you will find more information on the cause of termination in system NQT in transaction ST22. If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server  in transaction SM21. If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process in transaction ST11 on the application server . You may also need to analyze the trace files of other work processes. If you do not yet have a user ID, contact your system adminmistrator. </message></error>
    2014-09-11 11:27:19.768 Debug [ERROR] 500:INTERNAL SERVER ERROR/Location:-[ODPRequest startSynchronous] + 1427
    2014-09-11 11:27:12.717 Debug timeout
    2014-09-11 11:27:12.681 Debug timeintervalinminutes: 23506917 timeoutInterval: 0
    2014-09-11 11:27:12.679 Debug applicationGoesToForeground
    Can anyone help me how to troubleshoot this error?
    Any help will be highly appreciated.
    Thanks
    Mahesh

    are these LUNs shared or standalone?
    I don't think it's really wise to have more than one DSM on the same server, so you're mixing the EVA and 3par DSMs and on 2003...
    other than ensuring that HBA firmware and drivers are all up to date and DMS drivers are at the latest, not much else you can do from the host side...maybe update the storport.sys driver to the latest for that OS
    are you sure that the HBAs are in fact supported/compatible with both storage back-ends? what about their driver/firmware/DSM versions - some SANs are very picky when it comes to this stuff, check the interop matrixes to find out
    overall, if you don't need SAN connection to one of these storage back-ends, I suggest you get rid of it and its DSM

  • Someone has stolen my iPhone 4S with ios 7. Please help me

    Hi everyone,
    My iPhone 4S with ios 7 with a passcode was taken. I didn't back up my data on to iCloud on itunes. Will the person who has taken my iPhone be able to break in and have access to my details on my iPhone 4S that has been taken. Is there a way to erase my data. This is my first time that I''ve lost my iPhone 4S. I didn't install Find my iPhone on to my 4S, Is there another way that I could track it down?
    Thank you.

    Find my iPhone feature is built into the iPhone.   You just needed to turn it on from Settings.
    If you did not do this, then you cannot track it or wipe it.
    Sorry.

  • IPhone 4S with iOS 6 can't connect to open Wi-Fi network on HP/H3C WX5004 controller

    After upgrading from iOS 5.1.1 to iOS 6, iPhone 4S devices can no longer connect to an open wi-fi network on our campus.
    We have a controller based WLAN from HP/H3C managed by a WX5004 controller with AP models WA2620-AGN and WA2620E-AGN.
    Symptom: In the Wi-Fi dialog on the iPhone, out open campus network with SSID "CampusUniPassau" is displayed. After tapping this SSID, the iPhone tries to connect for a few seconds and then displays the error message 'Unable to join the network "CampusUniPassau'.
    Our WLAN controller logs the following errors:
    *Sep 21 08:40:46:336 2012 ac1 WMAC/7/ERROR : Invalid Extended Capabilities IE length (4).
    *Sep 21 08:40:46:336 2012 ac1 WMAC/7/ERROR :  Error while processing information elements
    #Sep 21 08:40:46:652 2012 ac1 WMAC/4/Station Association Fail: Station Assoc Fail:1.3.6.1.4.1.2011.10.2.75.3.2.0.4<h3cDot11StationAssocFailTrap> StaMac1:68:A8:6D:87:XX:XX StaMac2:68:A8:6D:87:XX:XX StaMac3:68:A8:6D:87:XX:XX Radioid:2 SSIDName:CampusUniPassau Cause:1 Desc:Unknown Failure APID:210235A42MB102000054
    With iOS 5.1.1, all worked well, so this should be an iOS 6 bug. Are there any workarounds until Apple releases a bug fix?
    Thanks in advance for any advice,
       Christian

    HI,
    i am affected by this problem myself. We are also using the H3C WX5004 with WA2620AGN accesspoints.
    Today I got update from H3C and got a new firmware to download.
    HEre is the description:
    The issue of the extended capabilities should be address in 5.20R2308P07  ftp  link below for the WX5004
    The issue was as described below :
    (1)           R2308P06 does not support Extended Capabilities (IE) which is contained in association request from the IPAD 3 IOS6, as below. This has been fixed by  the R2308P07 code.
    Regards
    Florian

  • Smart Playlists no longer updated with iOS 4.3 on iPhone 4

    I've run into an issue with the latest iOS 4.3 update: my smart playlists are no longer dynamically being updated on my iPhone 4.
    All of my main playlists are smart: they exclude songs that I've played in the past week. Earlier today when I'd play a song and it went to the next one, it'd immediately remove the song from the playlist (so I was always on track 1 of XXX). With 4.3, this is no longer happening and the smart playlist only dynamically updates when I sync my phone with my computer. This is annoying because it means that I can end up hearing the same song again if I switch playlists.
    Anyone else run into this? Any fixes? I tried rebooting my phone to no avail.

    My results differ from yours.
    With iOS 4.0x, 4.1 and 4.2x my smart playlists with live updating were broken. It would start with track 1 of 5, then 2 of 4, then 3 of 3, 4 of 2, then would generally crash the iPod app. If I left the playlist and re-entered it would have removed the entries already played, but I would find that some of the entries that should have played had actually been skipped in m playlist.
    With iOS 4.3, my playlists are properly working for me again. Now they play 1 of 5, 2 of 5, 3 of 5, ... If I return to the playlist while it is playing, I see that the entries that have already played are removed, and if I leave the playlist to return later, it starts over a 1 of 2, 2 of 2...
    I have posted another thread of how I have my playlists defined, so perhaps that would help you. I do recall that there were some conditions that used to cause problems if used in a smart playlist.

  • It's now over 6 weeks since I made the mistake of updating my iPad and I am furious and frustrated at the lack of a solution to the problem with ios 5 audio app missing lyrics

    It’s now over 6 weeks since I made the mistake of updating my iPad and I am furious and frustrated at the lack of a solution to the problem with ios 5.
    I recently updated to ios 5.1 but nothing has been done to rectify the audio app problems ie lyrics no longer shown,
    I am extremely disappointed and angrywith those responsible for the iOS 5 update, in regard to the way it hasaffected the music app in my iPad.
    I also own an iPhone 4, am an avid Apple fan, and up until now have beenextremely pleased with the devices, and have sung their praises to friends andassociates.
    I am a professional musician, and purchased an iPad primarily to use with theperformance of my music.
    The changes made to the music app affected my performances over the weekendextremely adversely – limiting my repertoire and causing confusion and delays.
    I have spent many hours talking withApple helpline assistants (who, incidentally have been very good and have triedto help), and I have also spent a lot of time on this letter.
    I greatly regret updating to iOS 5.
    There are two major problems with the music app.
    1. Lyrics no longer displayed
    2. Layout, and appearance and consequently performance have seriouslyregressed.
    I have a repertoire of around 500 song backing tracks, organised into about 20playlists, half of which featured lyrics / chords that I have spent monthsrecently entering into iTunes so that they could be used on my iPad.
    These were working fine up until the update - now they are gone.
    Previously, the app featured large icons for playlist, artists, songs etc. atbottom of page: Now there are small, grey, indistinct barely legible buttons.
    Previously, when playlist icon was selected - all the playlists were listedclearly in order on the left hand side in black on white (as in iTunes).
    Now they are scattered across the whole page in large squares (displayingnothing if there is no album art).
    The identifying wording below eachsquare is now small, grey, indistinct & barely legible.
    Previously, when a playlist was selected - the songs were displayed in adescending list in black & white: now they appear as small, grey indistinct & barely legible.
    Previously, when a song was selected - it appeared filling the page, and withaudio controls clearly positioned at top of screen. One tap would bring uplyrics.
    Now audio controls appear at top once again small, grey, indistinct &barely legible.
    A small square representsalbum art which if tapped fills page. A further tap fails to bring up lyrics.
    Don Wilson

    Lyrics aren't supported in the Music app on iOS 5 on the iPad. These are user-to-user forums, they are not monitored by Apple (there are too many forums/threads/messages for that to happen). If you want to leave feedback for Apple then you can do so here : http://www.apple.com/feedback/ipad.html

  • IPod bug on iPhone 4 with iOS 4.2.1

    This has happened a few times with different albums/tracks:
    I'll play an album and realize that a track has skipped and/or a track starts playing a few seconds into the track. Hitting "back" doesn't fix the problem; the track just starts playing at the wrong spot again no matter what I do. Basically the "start" position for certain songs gets set to the very end of the track (resulting in the track immediately ending and moving on to the next track) or the start position gets set to a few seconds into the track. Only an iPhone reboot fixes this. I can't figure out any reason why certain tracks are affected. There is nothing wrong with the tracks. They are fine on the computer and fine after an iPhone reboot.
    Anyone else having this problem? I'm close to doing a restore of my phone because of wifi and AirPlay related issues. This problem just pushes me closer.
    Erik

    I'm having the same exact problem with my iPod Touch with iOS 4.2.1.
    Also the album art doesn't always show on the lock screen and the videos and songs sometime start from the position I left them to, even if I listened to something else after.
    Apple better release their 4.2.2 or 4.3 soon and correct these bugs because 4.1 was just fine for me.

  • Autoscaling Application block for Azure worker role console app not working. Get error as The HTTP request was forbidden with client authentication

    I have written a console application to test the WASABi(AutoScaling Application Block) for my worker role running in azure. The worker role processes the messages in the queue and I want to scale-up based on the queue length. I have configured and set the
    constraints and reactive rules properly. I get the following error when I run this application.
    [BEGIN DATA]{}
        DateTime=2013-12-11T21:30:02.5731267Z
    Autoscaling General Verbose: 1002 : Rule match.
    [BEGIN DATA]{"EvaluationId":"4f9f7cb0-fc0d-4276-826f-b6a5f3ea6801","MatchingRules":[{"RuleName":"default","RuleDescription":"The default constraint rule","Targets":["AutoscalingWebRole","AutoscalingWorkerRole"]},{"RuleName":"ScaleUpOnHighWebRole","RuleDescription":"Scale
    up the web role","Targets":[]},{"RuleName":"ScaleDownOnLowWebRole","RuleDescription":"Scale down the web role","Targets":[]},{"RuleName":"ScaleUpOnHighWorkerRole","RuleDescription":"Scale
    up the worker role","Targets":[]},{"RuleName":"ScaleDownOnLowWorkerRole","RuleDescription":"Scale down the worker role","Targets":[]},{"RuleName":"ScaleUpOnQueueMessages","RuleDescription":"Scale
    up the web role","Targets":[]},{"RuleName":"ScaleDownOnQueueMessages","RuleDescription":"Scale down the web role","Targets":[]}]}
        DateTime=2013-12-11T21:31:03.7516260Z
    Autoscaling General Warning: 1004 : Undefined target.
    [BEGIN DATA]{"EvaluationId":"4f9f7cb0-fc0d-4276-826f-b6a5f3ea6801","TargetName":"AutoscalingWebRole"}
        DateTime=2013-12-11T21:31:03.7516260Z
    Autoscaling Updates Verbose: 3001 : The current deployment configuration for a hosted service is about to be checked to determine if a change is required (for role scaling or changes to settings).
    [BEGIN DATA]{"EvaluationId":"4f9f7cb0-fc0d-4276-826f-b6a5f3ea6801","HostedServiceDetails":{"Subscription":"psicloud","HostedService":"rmsazure","DeploymentSlot":"Staging"},"ScaleRequests":{"AutoscalingWorkerRole":{"Min":1,"Max":2,"AbsoluteDelta":0,"RelativeDelta":0,"MatchingRules":"default"}},"SettingChangeRequests":{}}
        DateTime=2013-12-11T21:31:03.7516260Z
    Autoscaling Updates Error: 3010 : Microsoft.Practices.EnterpriseLibrary.WindowsAzure.Autoscaling.ServiceManagement.ServiceManagementClientException: The service configuration could not be retrieved from Windows Azure for hosted service with DNS prefix 'rmsazure'
    in subscription id 'af1e96ad-43aa-4d05-b3f1-0c9d752e6cbb' and deployment slot 'Staging'. ---> System.ServiceModel.Security.MessageSecurityException: The HTTP request was forbidden with client authentication scheme 'Anonymous'. ---> System.Net.WebException:
    The remote server returned an error: (403) Forbidden.
       at System.Net.HttpWebRequest.GetResponse()
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
       --- End of inner exception stack trace ---
    Server stack trace: 
       at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory`1 factory)
       at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory`1 factory, WebException responseException, ChannelBinding channelBinding)
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    If anyone know why I am getting this anonymous access violation error. My webrole is secured site but worker role not.
    I appreciate any help.
    Thanks,
    ravi
      

    Hello,
    >>: The service configuration could not be retrieved from Windows Azure for hosted service with DNS prefix 'rmsazure' in subscription id **************
    Base on error message, I guess your azure service didn't get your certificate and other instances didn't have certificate to auto scale. Please check your upload the certificate on your portal management. Also, you could refer to same thread via link(
    http://stackoverflow.com/questions/12843401/azure-autoscaling-block-cannot-find-certificate ).
    Hope it helps.
    Any question or result, please let me know.
    Thanks
    Regards,
    Will 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • AP 1042N with ios 15.2(4)JB5 is not joining to WLC with ios 7.4.121.0

    I am trying to add AP 1042N with ios15.2(4)JB5  in WLC 2504 with IOS version 7.4.121.0 , but AP is not joining and
    Below mentioned is the log I am getting in the AP , here 192.168.100.10 is WLC ip
    *May 20 19:31:22.745: %CAPWAP-3-ERRORLOG: Go join a capwap controller
    *May 20 19:51:24.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 192.168.100.10 peer_port: 5246
    *May 20 19:51:24.804: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 192.168.100.10 peer_port: 5246
    *May 20 19:51:24.805: %CAPWAP-5-SENDJOIN: sending Join Request to 192.168.100.10
    *May 20 19:51:29.804: %CAPWAP-5-SENDJOIN: sending Join Request to 192.168.100.10
    *May 20 19:52:23.222: %DTLS-5-ALERT: Received WARNING : Close notify alert from 192.168.100.10
    *May 20 19:52:23.222: %DTLS-5-SEND_ALERT: Send FATAL : Close notify Alert to 192.168.100.10:5246
    *May 20 19:52:23.223: %CAPWAP-3-ERRORLOG: Go join a capwap controller
    *May 20 19:51:24.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 192.168.100.10 peer_port: 5246
    *May 20 19:51:24.818: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 192.168.100.10 peer_port: 5246
    *May 20 19:51:24.819: %CAPWAP-5-SENDJOIN: sending Join Request to 192.168.100.10
    *May 20 19:51:29.819: %CAPWAP-5-SENDJOIN: sending Join Request to 192.168.100.10
    Can anyone tell me, is there any issue between the AP & WLC IOS compatibility or what else could be reason for this.

    Hi Thanks for everyone's comments,
                        I found solution,  I  i was extracting only one file from the tar  image and supporting files were not extracted to flash
    Now I did " “archive tar /xtract  tftp://<TFTP server IP>/<ImageName>.tar flash: “ and extracted complete tar in to the flash and changed boot priority. Now it is joining to controller
     Thank you

  • I did not install icloud when setup my ipad and now I cannot install icloud on ipad 3 with ios 8.1.

    I did not install icloud when setup my ipad and now I cannot install icloud on ipad 3 with ios 8.1.  Everything in Settings is complete and correct.  I can log in from my PC with no trouble.  If I go to icloud.com on Safari on the ipad, it takes me to a instruction page which only says to complete icloud in Settings.

    That's happening because icloud.com is not designed to be viewed from the mobile version of Safari on your iPad, only from your computer browser.*   You can still access it on your iPad if you're running iOS 8 by going to icloud.com, then tapping on the address bar where the url is displayed, tap the center of the screen and drag down, then tap "Request Desktop Site" under the address bar at the top.  This will load the full desktop version of icloud.com.  You'll find, however, that not all of the the features will respond to the touch screen.
    * That's because all of your iCloud data is already on your iPad and can be accessed from within the apps that you are syncing with iCloud (contacts, calendars, notes, reminders, etc.)  If you need to use Find My iPhone (iPad), you can download the free Find My iPhone app to do so.

Maybe you are looking for