Network connection error (-6)

"There was a problem connecting to the network. There was a problem with your network connection. Check your settings and try again. (-6)".
I'm trying to connect AppleTv with Apple Time Capsule WPA/WPA2 Personal. when i make my time capsule Radio Mode 802.11n only(5 GHz) work like charm, when i change to 802.11n (802.11b/g compatible) give above mentioned error and it was working before perfectly fine , no setting changed, so sudden stop working. any clue will help. i tryied to change channel and everything

I have exactly the same issue with my Apple TV since just this evening. Have a 3Com 7760 Access Point connected to a SonicWall TZ-180. Everything else connects fine including my iPhone 3G with OS 3.0 onboard. No way no how will my Apple TV connect. Even restored to Factory Settings and upgraded to latest S/W using Ethernet and still no joy.
Really odd.

Similar Messages

  • HP Officejet Pro 8600 Network connection error message in EWS

    I just got an Officejet Pro 8600 Premium.  The printer is connected to the network via a network cable.  When navigating through the EWS, sometimes the message "Network connection error.  Check network and try again." message is shown (the message could appear in various pages, such as Settings, Tools, etc.).  Refreshing the page should get rid of the message. 
    At first, I suspected if it was a problem with the network. So I pinged the printer's ip address continuously.  It did not miss a single beat.  The printer prints and scans well via the network.  So I think the error may be caused by something inside of the print, such as bug of EWS software, or internal error. 
    Anyone see the same message during the use?  Any suggestion?  Does it indicate there is hardware problem with the printer?  Thanks.

    HP Support has escalated the case.  I referred this thread in the support request.  Hopefully, they can have a look at the issue.
    For me, the only setting does not stick is "Use the same time zone set on this computer" in Settings\Date & Time.  I've created another ticket for this issue.  8500A has the same problem.
    You can try to restart the EWS.  Unplug the power cord while the printer is on.  Then wait 15 sec and reconnect the power cord.  Press the power button if the printer does not turn on by itself.
    If you would like to reset to the printer and reconfigure from scratch, you can check here: http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/How-to-reset-Officejet-Pro-8600-Plus-P...

  • Restoring Network Connections Error

    We are using the Lenovo IOMEGA IX2 NAS. We have around 10 users who connect to this network drive. One PC is able to connect to it but the others get a Restoring Network Connections Error:
    Microsoft Windows Network: Insufficient system resources exist to complete the requested service.
    This connection has not been restored.
    Anybody else have this issue?

    Hello jamescheung
    The affected PC's do were they actually able to mount the share(s) at any point or are you getting this error while trying to mount the share(s)?
    If they are able to mount, are you getting the error in explorer or a backup utility such as robocopy?
    Do the affected computers experience the issue right after a PC reboot?
    How many of the protocols are enabled on the ix2 and do you have media server and/or any of the active folder options enabled?  
    Have you tried to disable any non-critical protocols/features for troubleshooting?
    LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
    US and Canada: https://lenovo-na-en.custhelp.com/
    Latin America and Mexico: https://lenovo-la-es.custhelp.com/
    EU: https://lenovo-eu-en.custhelp.com/
    India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
    http://support.lenovoemc.com/

  • Handle the Network Connection Error ...

    The main purpose is to handle the Network Connection Error,
    when there is a Network Connection Error or pc loss the
    connection (remove the ETH cable),
    and it work in IE but not with firefox.
    When there isn't connection during play of sound1, Flash call
    "sound1.onSoundComplete" that point to an other frame, where i load
    an other es:Sound2.mp3, BUt there isn't connection and Flash call
    "sound1.onLoad" with "success=false" and that's OK because i handle
    the error for example retry to load every 10 Seconds.
    With Firefox when it happens the player call load sound2.mp3
    but there isn't connection and it can't find the file (OK) BUT is
    NOT CALL the "sound2.onLoad" and STOPS it in this frame mute and
    nothing more happens.
    This is the sample Code:
    //on frame (1)
    sound1 = new Sound();
    sound2 = new Sound();
    //on frame (2)
    sound1.onLoad = function(success) {
    if (success) {
    //on load OK...
    trace("Sound1 loading ok...");
    } else {
    //on load FAIL...
    trace("Sound1 error ...");
    //call error function. (es: goto frame 1 and reload all.)
    _root.sounderror();
    sound1.loadSound("sound1.mp3", true);
    sound1.setVolume(100);
    sound1.onSoundComplete = function() {
    //goto next frame and load the Second sound
    gotoAndStop(3);
    //on the Frame-3
    //there is the same code but with sound2 and
    "onSoundComplete" -> gotoAndStop(2); for a loop of the two
    sounds.
    Thanks in advance for HELP ME.
    PLAEASE READ and Comment!!!
    This is my work! Sorry for the Bad English.

    Thanks for your support, i have modify like your suggest but
    the problem continue.
    I've notice that in local work very fine also with Firefox. i
    try during play to remove in one shot all mp3 file, and it call the
    error handler function correctly, But if i put it on the web, when
    i unplug the eth cable, it stop after sound2 or 3.loadsond and
    write me back it in a text box, stop! it NOT Call the onload
    triger, and do not call the error function.
    WHY ?!? in local work whit all browser, and on web only with
    IE?
    HELP ME PLEASE!
    Post the new code:
    //Frame#1
    soundintro = new Sound();
    sounda = new Sound();
    soundb = new Sound();
    soundintro.onLoad = function(success) {
    if (success) {
    //find soundi - wait for onsoundcomplete...
    } else {
    //Sound error
    //Lunch error hander function.
    _root.sounderror();
    soundintro.onSoundComplete = function() {
    debug1 = debug1+("Trace-> soundintro Complete
    goto2..."+chr(13));
    gotoAndStop(2);
    d = new Date();
    soundintro.loadSound("soundintro.mp3?r="+d.getTime(), true);
    soundintro.setVolume(100);
    stop;
    //Frame#2
    sound2.onLoad = function(success) {
    if (success) {
    //find sound2 - wait for onsoundcomplete...
    } else {
    //Sound error
    //Lunch error hander function.
    _root.sounderror();
    sound2.onSoundComplete = function() {
    debug1 = debug1+("Trace-> sound2 Complete
    goto3..."+chr(13));
    gotoAndStop(3);
    d = new Date();
    sounda.loadSound("sound2.mp3?r="+d.getTime(), true);
    sounda.setVolume(100);
    stop;
    //Frame#3
    sound3.onLoad = function(success) {
    if (success) {
    //find sound3 - wait for onsoundcomplete...
    } else {
    //Sound error
    //Lunch error hander function.
    _root.sounderror();
    sound3.onSoundComplete = function() {
    debug1 = debug1+("Trace-> sound3 Complete goto back
    to2..."+chr(13));
    //Back to 2 for loop
    gotoAndStop(2);
    d = new Date();
    sound3.loadSound("sound3.mp3?r="+d.getTime(), true);
    sound3.setVolume(100);
    stop;

  • HT201210 I have just downloaded ios7 and have lost my iMessages it keeps asking me to sign in which aim doing then says cannot sign it network connection error try again later even though I have full gone and wifi signals please help

    I have just downloaded ios7 and have lost all use of my iMessage I have reset all my settings but still nothing. I have entered my apple ID as requested but keep getting a message saying cannot sign in network connection error try again later even though I have full phone and wifi signals. Please help

    Hello JD_NINJA,
    Thanks for using Apple Support Communities.
    Error 9006 when restoring your iOS device indicates that there is security software on your computer which is preventing connection to the Apple server or your device.  To troubleshoot this issue please follow the directions below.
    Check your security software
    Related errors: 2, 4, 6, 9, 1611, 9006. Sometimes security software can stop your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't blocking a connection to the Apple servers.
    Get help with iOS update and restore errors - Apple Support
    When restoring your iPhone, please make sure to follow the directions in the link below to properly restore.
    Restore your device from an iCloud or iTunes backup - Apple Support
    Take care,
    Alex H.

  • I have attempted to update my software over 10 times but I get a network connection error. Anyone with the same problem? Got it on the wireless and wired network.

    I have attempted to update my software over 10 times but I get a network connection error. Anyone with the same problem? Got it on the wireless and wired network.

    Disable all Firewalls & Anti-Virus software...try again.

  • Network Connection error when Bluetooth tries to turn on?

    Bluetooth DUN not connected, when I try to connect or set up bluetooth device, a network connection error comes up;
    Network Connection
    Your connection failed because the communicaton device is unabailable.  Make sure it is connected to your computer and try reconnecting.
    Anyone have any idea what this mean?

    Are you SURE you got the model with the optional BlueTooth module? Does Apple System profiler show it there (on the USB sub-page) ?

  • Personas 2.0 SP02 Network Connectivity Error

    Hello,
    We upgraded to Personas 2.0 SP02 and now when trying to loving receive the 'problem with network connectivity' error. We had no issues logging in on SP01. I checked through the configuration and everything has remained the same. Restgui tests successfully and both XML files are reachable. I've also checked that user authorization has remained the same.
    Getting the below HTTP 500 error:
    "9/5/2014 01:58:00,515311 ERROR Sap.Imagineering.Personas.Common.Utils.<>c__DisplayClass6-><GetResponse>b__5 -
    [HttpWebRequest_WebException_RemoteServer]
    Arguments: NotFound
    In ST22 we are now getting:
    Category               ABAP Programming Error
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO
    Except.                CX_SY_REF_IS_INITIAL
    ABAP Program           /PERSOS/CL_PERSOS_HELPER======CP
    Application Component  CA
    Error analysis
        An exception has occurred which is explained in more detail belo
        exception is assigned to class 'CX_SY_REF_IS_INITIAL' and was no
         procedure
        "GET_SYSTEM_INFO" "(METHOD)", nor was it propagated by a RAISING
        Since the caller of the procedure could not have anticipated thi
        exception, the current program was terminated.
        The reason for the exception is:
        You are trying to access a component with a 'ZERO' object refere
        (points to 'nothing').
        An object reference must point to an object (an instance of a cl
        before it can be used to access a component. The reference has e
        never been set, or it was set to 'ZERO' with a CLEAR statement.

    We're on Kernel: 741 patch 27
    I noticed from: Configuration Check - SAP Screen Personas - SAP Library
    It lists 'unable to determine' possible causes as:
    Could be due to the following reasons
    The RFC destination is not maintained correctly.
    Error occurred while connecting to host/target
    The RFC destination is not maintained in fieldHTTP Connector ofMaintain Systemsnode in SPRO.
    Refer to the Configuration guide to rectify
    I did not have an RFC set in 'HTTP Connection'
    I created a connection type H RFC, however I couldn't find any mention of it in the Configuration guide so I'm unsure exactly how to configure it. Specifically for the Path Prefix.

  • I keep getting network connections error when downloading update for iPhone 4. Any suggestions?

    I keep getting network connections error when downloading update for iPhone 4. Any suggestions?

    I think I solved the problem by initiating the update in a different way, from the itunes panel where I can click to start the update, instead of saying yes when asked if I want to update when itunes launches in response to the iphone being plugged into the computer.

  • Network connection error comes up when trying to activate iMessage and FaceTime even when connected to wifi

    I have recently got a new SIM card and is working but as soon I try to activate FaceTime and iMessage it says network connection error although my network is fine etc, as on a Apple help page it says contact Apple if this occurs but there is no way to contact Apple. Please help!

    For anyone who has this problem check your time and date is set to automatically as this has fixed my problem!

  • Network connection error, not able to download from App Store. But am able to download other stuffs with my browser !?

    Am getting a Network Connection error and am not able to download apps from the App store. But to check my network connection, when I download stuffs using my Browser, it downloads as usual ! So what is the problem & its solution? please reply.. Thank you.

    Select  ▹ System Preferences ▹ Network ▹ Advanced ▹ Proxies. If any proxies are selected, deselect them, apply your changes, and try again. You must apply the changes before they take effect. You don’t need to change the other settings.

  • Unable to purchase, iTunes network connection error?

    I'm trying to purchase a music video for my son who has autism.  I can click on "buy" and it says "Purchasing Not Over You" for several minutes and then I receive an error message that there was a network connection error and to try again later.  It's been 3 hours at least.  Does anyone know what's going on?  If we can't download this first thing in the morning, it's going to be a firestorm of a tantrum. Help, Apple, you're supposed to be great for the autism community, but this is killing us!

    iTunes: Possible iTunes Store errors

  • 8600 network connection error

    8600 Premium.  During a multipage scan, the printer will stop after 5 or so pages with the error "Network connection error.  Check network and try again."  I have an 8500 Premier on the same network and it will scan multipage documents perfectly. Windows 7, 64 bit.  Latest firmware installed. 
    Any help would be appreciated.

    HP Support has escalated the case.  I referred this thread in the support request.  Hopefully, they can have a look at the issue.
    For me, the only setting does not stick is "Use the same time zone set on this computer" in Settings\Date & Time.  I've created another ticket for this issue.  8500A has the same problem.
    You can try to restart the EWS.  Unplug the power cord while the printer is on.  Then wait 15 sec and reconnect the power cord.  Press the power button if the printer does not turn on by itself.
    If you would like to reset to the printer and reconfigure from scratch, you can check here: http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/How-to-reset-Officejet-Pro-8600-Plus-P...

  • WEBDB network connection error - reset by peer

    I'm experiencing a network connection error when connecting and
    querying a database by way the WEBDB.
    I got a pc running Oracle 8i on a RedHat Linux 6,, and on the
    same
    machine it's running webdb.
    When i make a heavy query i got the connection error described on
    the top (and in the subject).
    null

    Did you ever get a solution to this problem?
    Patrick (guest) wrote:
    : Fabrizio Guarino (guest) wrote:
    : : I'm experiencing a network connection error when connecting
    : and
    : : querying a database by way the WEBDB.
    : : I got a pc running Oracle 8i on a RedHat Linux 6,, and on the
    : : same
    : : machine it's running webdb.
    : : When i make a heavy query i got the connection error
    described
    : on
    : : the top (and in the subject).
    : I'm having the same problem when working from any machine
    other
    : than the db server machine. It happens consistently from a
    : parameter form for a report, or a query form for a table. Any
    : query that takes more than a half or three quarters of a
    second
    : gets interupted with the "Connection to server was reset"
    : error. Any help would be greatly appreciated.
    null

  • I cannot sign into my apple id on my iphone 5, im trying to activate imessage.. im connected to both wifi and my mobile data is on- however it is still saying network connection error!? help?!

    i cannot sign into my apple id on my iphone 5, im trying to activate imessage.. im connected to both wifi and my mobile data is on- however it is still saying network connection error!? help?!

    Try this but you need a current email address:
    http://support.apple.com/kb/HE34

  • Network connection error lollipop 5.1 update

    Yesterday I uploaded the lollipop 5.1 update to my z2 tablet through pc companion and everything seemed to work fine. However I get a network connection error in sony movies and the play store whenever I try to download something. It's odd as I can connect to the Internet fine through chrome etc and surf the Web can't seem to download on the device. I have tried this on three different wifi networks so it must be something to do with the device. Can anyone shed any light on this error?

    Hi @SilverMerlin If you can connect to Internet and surf the Web using for example the Chrome browser, your network connection works ok. I would try to clear the Play Store cache since this could be a reason of this error of repeatedly getting this network error message. To do this go to: Settings -> App, scroll down to All apps and finally to Google Play Store app. Open the app details and tap on "Force stop " and then "Clear Cache". Then restart your app. I hope can be useful. I'm at disposal for any question. Best Regards,

Maybe you are looking for