Getting timeout on my traceroute.

Ping package drop on certain website (Godaddy, Verizon), fine on others. Help
Tracing route to www.google.com [64.233.176.99]
over a maximum of 30 hops:
  1     *        *        *     Request timed out.
  2     *        *        *     Request timed out.
  3     *        *        *     Request timed out.
  4     *        *        *     Request timed out.
Also, The support chat is not working for me...
Solved!
Go to Solution.

Timeouts on traceroutes are normal and don't mean much.  The reason is many servers are configured not to reply to ping packets.
Yet something looks wrong with the trace route you posted.  You should at least see your own IP address, 192.168.1.1, as the first step and probably a Verizon server or two as the next couple of steps.
Do I understand correctly that with other sites traceroutes are normal, but not with the Google IP you posted?
FWIW, here's what I get when I trace to that same IP:
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
C:\Users\xxx>tracert 64.233.176.99
Tracing route to 64.233.176.99 over a maximum of 30 hops
  1    <1 ms    <1 ms    <1 ms  192.168.1.1
  2     9 ms     9 ms     7 ms  L100.NYCMNY-VFTTP-119.verizon-gni.net [71.241.153.1]
  3     9 ms     9 ms    10 ms  G0-11-1-5.NYCMNY-LCR-21.verizon-gni.net [130.81.188.78]
  4     *        *        *     Request timed out.
  5     9 ms    19 ms     9 ms  0.ae3.XL3.NYC1.ALTER.NET [140.222.226.31]
  6     8 ms    10 ms     9 ms  0.xe-10-0-0.GW13.NYC1.ALTER.NET [152.63.18.110]
  7     9 ms     9 ms    10 ms  google-gw.customer.alter.net [204.148.18.206]
  8     9 ms    10 ms     9 ms  209.85.247.7
  9     8 ms     9 ms    10 ms  209.85.252.242
 10    19 ms    17 ms    17 ms  209.85.249.11
 11    31 ms    29 ms    30 ms  64.233.174.9
 12    34 ms    34 ms    34 ms  216.239.48.40
 13    35 ms    34 ms    35 ms  64.233.175.12
 14     *        *        *     Request timed out.
 15    29 ms    26 ms    27 ms  64.233.176.99
Trace complete.
C:\Users\xxxf>

Similar Messages

  • I am trying to upload a podcast rss and I am getting timeouts

    I am attepting to upload an rss podcast but I am getting timeouts. Does anyone know how to correct this?

    It depends on whether your server is failing to respond, or whether the problem lies with the iTunes Store's submission process. Try subscribing manually to your feed from the 'Advanced' menu and see how it behaves: if it fails to load there, or is very slow to do so, then you should look at your server. If it's OK, then the problem may lie with the Store and all you can really do is wait for a bit then try again.

  • Why do I get timeout when deploying SQL Server data source in Weblogic Admin Console?

    Hi all
    I'm attempting connectivity between WLS 10.3.6.0 and SQL Server 2008R. I've downloaded sqljdbc4.jar and added to the end of the Weblogic Classpath in commEnv.cmd. Then I set up a data source in Admin Console and pressed the Test Data Source button - success. But when I tick the box to deploy to AdminServer it hangs for ages and I get timeout exception.
    Any ideas?
    Many thanks
    James

    Make sure the web server settings between the QA and the Production servers are also compatible.
    I suspect your suspecion about permissions is the closest to the answer.  But this is a little out of my depth of expertise.
    Realize that ColdFusion default behavior is to NOT generate and actual swf FILE.  Rather what it does is generate the swf content in memory and directly deliver it to the client.  But if the web server is configured to look for an actual file system file you may have a clash going on

  • Unable to read AsynchronousSocketChannel after getting timeout exception

    i am trying to read some data on the server using a AsynchronousSocketChannel .
    I have this scenario :
    1- Call channel.read : this will print "Received"
    2- Call channel.read : this should fail due to timeout exception.
    3- Call channel.read : I am sending data in this case but I got the exception "Reading not allowed due to timeout or cancellation"
    Below is the source code
    My environment is :
    OS : Windows 7
    JDK :
    Java(TM) SE Runtime Environment (build 1.7.0-b147)
    Java HotSpot(TM) 64-Bit Server VM (build 21.0-b17, mixed mode)
    package com.qmic.asynchronous;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import java.net.InetAddress;
    import java.net.InetSocketAddress;
    import java.net.Socket;
    import java.nio.ByteBuffer;
    import java.nio.channels.AsynchronousChannelGroup;
    import java.nio.channels.AsynchronousServerSocketChannel;
    import java.nio.channels.AsynchronousSocketChannel;
    import java.nio.channels.CompletionHandler;
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;
    import java.util.concurrent.TimeUnit;
    public class NIOChannel {
         public static void main(String[] args) {
              try{
                   MyAsynchronousTcpServer server = new MyAsynchronousTcpServer();
                   Thread serverThread = new Thread(server);
                   serverThread.start();
                   Socket socket = new Socket(InetAddress.getByName("127.0.0.1"), 9001, InetAddress.getByName("127.0.0.1"), 9003);
                   socket.setSoTimeout(30000);
                   socket.setKeepAlive(true);
                   if (socket.isConnected()){
                        PrintWriter dos = new PrintWriter(socket.getOutputStream());
                        InputStream input = socket.getInputStream();
                        byte[] buffer = new byte[1024];
                        // Data of the first call
                        dos.print("ABCDEFGH");
                        dos.flush();
                        byte[] data = new byte[50];
                        socket.getInputStream().read(data);
                        // Print the result from server, written in handler of first read operation.
                        System.out.println("Result is:" + new String(data));
                        if (data.length > 0){
                             Thread.sleep(10000); // Wait for 10 Seconds so the second read on the server will fail.
                        // Data of the third call
                        dos.print("ABCDEFGH");
                        dos.flush();
              }catch(Exception ex){
                   ex.printStackTrace();
         class MyAsynchronousTcpServer implements Runnable{
              final int SERVER_PORT = 9001;
              final String SERVER_IP = "127.0.0.1";
              private int THREAD_POOL_SIZE = 10;
              private int DEFAULT_THREAD_POOL_SIZE = 2;
              ConcurrentLinkedQueue<ListenHandler> handlers = new ConcurrentLinkedQueue<ListenHandler>();
              boolean shutDown = false;
              public void run(){
                   //create asynchronous server-socket channel bound to the default group
                   try {
                        // Create the ChannelGroup(thread pool).
                        ExecutorService executorService = Executors.newFixedThreadPool(THREAD_POOL_SIZE);
                        AsynchronousChannelGroup group = AsynchronousChannelGroup.withCachedThreadPool(executorService, DEFAULT_THREAD_POOL_SIZE);
                        AsynchronousServerSocketChannel asynchronousServerSocketChannel =
                             AsynchronousServerSocketChannel.open(group);
                        if (asynchronousServerSocketChannel.isOpen())
                             //bind to local address
                             asynchronousServerSocketChannel.bind(new InetSocketAddress(SERVER_IP, SERVER_PORT));
                             while(!shutDown){
                                  Future<AsynchronousSocketChannel> asynchronousSocketChannelFuture =asynchronousServerSocketChannel.accept();
                                  final AsynchronousSocketChannel channel = asynchronousSocketChannelFuture.get(); // Timeout can be specified in the get() function, thread is blocked here
                                  System.out.println("New channel created successfully");
                                  // First call, should print Result of call 1 is : 10 (size of ABCDEFGH)
                                  ByteBuffer buffer1 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer1, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 1 is :" + result);
                                            ByteBuffer response = ByteBuffer.wrap("Received".getBytes());
                                            channel.write(response);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                                  Thread.sleep(3000);
                                  // Second read, should print error InterruptedByTimeoutException
                                  ByteBuffer buffer2 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer2, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 2 is :" + result);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                                  Thread.sleep(9000);
                                  // Second read operation was failed, no try to read again . AN EXCEPTION IS THROWN HERE : Reading not allowed due to timeout or cancellation
                                  ByteBuffer buffer3 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer3, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 3 is :" + result);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                        else
                             System.out.println("The asynchronous server-socket channel cannot be opened!");
                   catch (Exception ex)
                        ex.printStackTrace();
                        System.err.println(ex);
         }

    I'm having the same "Unable to read the SIM card" issue. My phone is less than two months old, the unable to read SIM card issue started about a week after I purchased the phone. That was followed by a host of erratic, sporadic issues to the phone becomes unusable and the only way to temporarily fix it is to remove the battery for a few seconds.  I've gone through the factory reset with Verizon reps where I purchased the phone from as well as with a Verizon online Chat representative. In a nutshell, I got a ticket to send the phone back to Samsung in Plano, Texas to get the phone fixed, I am going to do that today because this problem is ridiculous.

  • Session getting timeout

    we have an application in CF5. after we migrating the IE6 to IE8, we are getting intermittent error that session is getting timeout due to the cookie is getting expired automatically or not saving in the users pc. do the people are aware of this issue.  before upgrading to IE6 it was working fine. how we can avoid this or what are the alternatives.

    Browser choice is in the hands of the visitor. There's little you can do about that.
    It may be necessary to adapt your code to cope with new browsers. How did you set sessions using cfapplication, cfcookie and so on?

  • Trying to upgrade to ISO 5 but always get timeout error

    Trying to update via PC/itune but get timeout error everytime. " network connection timed out " but nothing wrong with the connection.
    Any solution?

    Thks it went a bit longer but same error - using Kaspersky which I closed
    I am now trying it on my XP laptop (kaspersky closed) & it is downloading but 'time remaining is 2hrs!
    not happy to have an open system for that long

  • CCM we are getting timeout error.

    Hello Gurus
    In CCM2.0 & SRM4.0 we are having issue while creating shopping cart from CCM.We are getting timeout error.
    When we checked report /CCM/CHECK_TREX it's not showing the master catalog file too.
    We have tried full & delta publishing also but it didn't resolved the issue.
    Can any have any suggesstion for it.
    Best Regards.
    Sandip.
    Edited by: Saha Sandip on May 19, 2011 11:38 AM

    Hi Sandip,
    Please close this thread, it is already created on the SRM General forum.
    Thank you
    Lisa

  • Have you been getting timeouts and other weird connection issues lately?

    Internet connection has become a bit wonky as of late, have you been experiencing some or all of the following symptons?
    1) Most internet speed test sites just stop before completing as if they have timed out (i.e. speedtest.net).
    2) Sites will start loading quickly but then sometimes randomly stop and have to be manually refreshed.
    3) Downloads will randomly stop downloading for some moments before resuming (particularly from Steam)
    4) Tracert to some websites that were causing issues show timeouts on peering with Alter.net servers.
    Looks like there are some issues between Verizon and Alter.net (formerly MCI, now Verizon owned) in NY.... Any word on when we can expect a resolution? This is quite frustrating as it affects a good amount of traffic.

    I'm a little further east than you out here on Long Island, Touyats, but I've seen none of the issues you or the Original Poster here are experiencing.
    Assuming you're having the problems on a device connected to your router by Ethernet cable (WiFi opens up an entire range of other possible problems) you might try getting your router assigned a new WAN IP address. 
    If you want to give that a try, see this post for the steps involved:
    http://forums.verizon.com/t5/FiOS-Internet/How-am-I-able-to-change-my-ip-address/m-p/703336#M47733

  • Getting timeout error while executing my report

    Hi experts,
    I need to get data from a Ztable which is having more than 64 millions of records. That query itself is taking more than 20 min to execute. I have used package size while retrieving tha data but still taking same time to execute, Giving me the TIMEOUT error .
    Provide some suggetions to use different types of SELECT quries that can be used to improve the performance.
    Thanks & Regards,
    Bhanu

    Hi ,
    I am working as an abaper for Service Management module.
    I need to show the prmise details inthe output of alv. Before that i need to get the meter reading details and need to do some calculations, by which i need to show idle one (Here only i need to hit a ZTABLE which is having more than 64 million records). For that idle premise user can select multiple pemises by using check boxes and can create notification by pressing a pushbutton 'CREATE IS NOTIFICATION' which exist on the application toolbar . So i can not run this report in background.
    Thanks & regards,
    Bhanu.

  • Why do i get "timeout download" at 47 %?

    I been having nothing but problems all day trying to download the flash player, i even uninstalled but can't get it reinstall. every time i do try to reinstall it all i get is &quot;TIMEOUT DOWNLOAD&quot; at 47%.
    i disabled my security system. i dont what else to do. i also keep getting this popup from security systems saying can't download because of malious software or not safe to download.
    SPECIFICS:
    i have a windows 7,
    64 bits
    IE 9.
    please someone tell me what is going on or help me.

    It sounds like you have a third-party application interfering with the download, or you're downloading a fake Flash Player distrubtion from somewhere that is not adobe.com.  (Always get Adobe software from adobe.com to ensure that it hasn't been tampered with.)
    Can you post the link you're using to download the Flash Player?
    If you want the beta, use: http://www.adobe.com/go/flashplayerbeta
    If you want the standard release version, use http://get.adobe.com/flashplayer
    Thanks!

  • Getting Timeout Error when running web performance Webtest using App-Insights

    Hi All,
    I have created web performance test using VSTS 2013. When I am running this test using App-Insights (Azure Version) I am getting error "Web Test exceeded the configured timeout (00:02:00) and was aborted." In webtest property I set timeout limit
    is 300 Sec. still webtest is timeout in 2 min. Kindly let me know Is this problem of App-Insights (Azure Version) or webtest?
    Regards,
    Sandip

    Sandip, Application Insights (both the Azure and VSO versions) override the timeout internally to a max of 2 minutes. No web tests in AI can run for longer than 2 minutes.
    This posting is provided "AS IS" with no warranties, and confers no rights. Use of included script samples are subject to the terms specified at http://www.microsoft.com/info/cpyright.htm

  • Http Get + Timeout Functionailty?

    Hi all,
    I am planning to do a HTTP/S POST and GET and wondered if there is a way of specifiying a timeout on the GET.
    So I do the Get and if after x minutes no value has been returned from the webserver then the timeout says ok move onto the next Get request in the ArrayList....
    Does anyone know of such a call as I cant find one, also which package would be best to look at to investigate this futher?

    In tiger (1.5) URLConnection has a setConnectTimeout(int timeout) method. Otherwise, this works pretty well:
    http://www.innovation.ch/java/HTTPClient/
    or:
    http://jakarta.apache.org/commons/httpclient/

  • Getting timeout exception

    Hi i am gettig below error in logs-
    ####<Feb 20, 2013 3:33:56 AM EST> <Warning> <Socket> <server1> <managed-m04> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tunin
    g)'> <<WLS Kernel>> <> <> <1361349236603> <BEA-000449> <Closing socket as no data read from it on 10.36.2.11:1,261 during the configured idle timeout of 5 secs>
    ####<Feb 20, 2013 3:33:56 AM EST> <Warning> <Socket> <server1> <managed-m04> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tunin
    g)'> <<WLS Kernel>> <> <> <1361349236603> <BEA-000449> <Closing socket as no data read from it on 10.36.2.11:1,377 during the configured idle timeout of 5 secs>
    ####<Feb 20, 2013 3:33:56 AM EST> <Warning> <Socket> <server1> <managed-m04> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tunin
    g)'> <<WLS Kernel>> <> <> <1361349236603> <BEA-000449> <Closing socket as no data read from it on 10.36.2.11:1,272 during the configured idle timeout of 5 secs>
    can someone please help me out to get this issue fixed.
    Thanks in Advance.
    Regards,
    Sarath

    Hi,
    it is not the problem with you, for time out problems there may be a many reasons....for example due to huge data checking or taking lot of time to complete the program execution it will give this type of shortdumps, no need to apply any SAP notes.
    contact your BASIS team, in ever server they put some time stamp for Tcodes, it it exceeds then it will go for short dumps.
    Reward if useful.
    Thanks,
    Sreeram.

  • Getting timeout on a network but is ok on pc or other macs

    Basically i am getting a network timeout on a mac but works forever on other devices please help me with a solution please.

    Do you have any anti-virus or firewall software installed? Is the firewall in System Preferences/Security & Privacy turned on? If so, try disabling them and see what happens.

  • Why do I get timeouts with a GPIB-ENET/100 under Solaris that I did not get with GPIB-ENET.

    We have an existing application that works fine under Solaris 2.6 and Solaris 7 with a GPIB-ENET. When we swap the GPIB-ENET with a GPIB-ENET/100, we get devices timeouts all the time.

    Hello-
    Unfortunately, it's difficult to determine any possible cause for this occurance. It was mentioned in a previous email that the instrument will communicate for a few commands. When does the timeout happen? What command fails? Also, what type of instrument is connected (make, model, etc)? Is this a timeout from the write or read? What is the distance of the Ethernet from the host? Is it possible that another machine is accessing the GPIB-ENET/100? Would it be possible to include the code that communicates with this instrument? Does ibic or VISAic communicate with the instrument without timeouts?
    Hopefully, this information can pinpoint the exact cause of the timeout.
    Randy Solomonson
    Applications Engineer
    National Instruments

Maybe you are looking for

  • How do I put a check mark to all the songs in the library/

    somehow this morning after deleting voice memos from the iTunes library i noticed that all my songs became de-checked. Which means they won't play until i put a check mark in the check mark column. How do I check them all ?

  • JDBC re-connection to oracle

    I have an application using connection pooling. When the oracle server it is connected to is rebooted/shut down, the connections are of course broken. I can detect this fine but when I try to re-connect to the database with Connection connection = Dr

  • Keynote fails to play quick time movies

    HI, I am trying to play a quicktime movie which I added to one of the slides. It starts out fine then the screen goes white but the control at the bottom of the screen shows that the movie is still playing. Some times you get the same white slide whe

  • To add new key figure in existing info cube (BI 7.0)

    I m using BI 7.0 How can I add new Key figure in my existing info cube? Thanks KS

  • Different Support Pack Levels

    Hi experts, we are running a federated portal network, between our BI Portal with a ABAP daat source and our EP Portal which is your standard ldap data source. We are looking at implementing ESS MSS or XSS into our portal landscape. I understand from