Online computer not responding to pings The 2019 Stack Overflow Developer Survey Results Are...

Inflated grade on resume at previous job, might former employer tell new employer?

Does a dangling wire really electrocute me if I'm standing in water?

Is bread bad for ducks?

Are there any other methods to apply to solving simultaneous equations?

Why don't Unix/Linux systems traverse through directories until they find the required version of a linked library?

Could a US political party gain complete control over the government by removing checks & balances?

Where to refill my bottle in India?

On the insanity of kings as an argument against monarchy

What does "sndry explns" mean in one of the Hitchhiker's guide books?

Could JWST stay at L2 "forever"?

Which Sci-Fi work first showed weapon of galactic-scale mass destruction?

Spanish for "widget"

Monty Hall variation

How to manage monthly salary

How to answer pointed "are you quitting" questioning when I don't want them to suspect

Why is it "Tumoren" and not "Tumore"?

What are the motivations for publishing new editions of an existing textbook, beyond new discoveries in a field?

What is the best strategy for white in this position?

What is the use of option -o in the useradd command?

Lethal sonic weapons

Realistic Alternatives to Dust: What Else Could Feed a Plankton Bloom?

Does duplicating a spell with Wish count as casting that spell?

Access elements in std::string where positon of string is greater than its size

How to deal with fear of taking dependencies



Online computer not responding to pings



The 2019 Stack Overflow Developer Survey Results Are Incan't ping from mac host to windows guest in virtual boxWhy has ping started to resolve hostnames to IPv6 addresses?high latency pings to routerWhat could cause my LAN Pings be greater than 100ms?what does this ping listing mean — it does not have an IP address but some hex numbersCannot connect to my win 7 machinePing IP returned “destination net unreachable”, even with different networkLoopback address set for facebook and youtubeCan not access Network Share by IP Address - Error 0x80070035Why the ping reply time from switch is higher than that from devices on it?Unable to ping specific IP address via WiFi





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















I was doing a bit of scanning on my network lately, knew all the hostnames to each computer connected. But whilst pinging one of them ping returned Request timed out.. This is strange as I know the computer is online and that the computer responds correctly to pinging on a different (enterprise) network. Is there something on the computer, my network, or my computer that is bugging with this? - That's just a sub-question, I don't expect this to be the main answer.



The real question: Why does this happen? Why does pinging the IP4 address not work?




EDIT :

Pinging the Hostname used to default to the IP4 address, but now it defaults to the IP6 address. Why does this happen? But now that it pings using IP6, how come it all of a sudden works?



> ping -6 THE_COMPUTER
Pinging THE_COMPUTER [lengthy IP6 address] with 32 bytes of data:
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms

Ping stats: Sent = 4, Recieved = 4, Lost = 0 (0% loss)


But when this is done using IP4 it doesn't work. So there are now two questions:




  • How come IP6 works and not IP4?

  • Why does IP4 not work?










share|improve this question
















bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Check your firewall settings as different networks have different firewall profiles. E.g. your home network is going to be more relaxed than your enterprise profile (probably pushed by Group Policy) - not sure why a ping would fail, however. Try ping - 4 <the_remote_IP>

    – Kinnectus
    Jun 9 '14 at 9:18











  • ping -4 <IP_instead_of_hostname> also fails. And now IP6 is starting to be on and off. It seems really strange...

    – TheBrenny
    Jun 9 '14 at 9:22






  • 2





    Try disabling IPv6 from your network adapter and see if you get better results. We have an issue at my work place, with SOME devices on wireless, where IPv6 is the cause of connectivity issues but our network team are unsure of the fix. Most devices work perfectly, the odd few simply won't connect if IPv6 is enabled.

    – Kinnectus
    Jun 9 '14 at 9:31











  • Strangely, it works. But still only sometimes. I'm getting a better response rate ping IP6 over IP4. Is this just a strange anomaly that has no fix? Does it happen because of a law similar to Faraday's?

    – TheBrenny
    Jun 9 '14 at 9:39













  • It should work ALL the time. Maybe you have a power setting on either YOUR network adapter, or the remote computer, putting the device to sleep as no network activity? - Most likely the remote machine...

    – Kinnectus
    Jun 9 '14 at 9:46




















1















I was doing a bit of scanning on my network lately, knew all the hostnames to each computer connected. But whilst pinging one of them ping returned Request timed out.. This is strange as I know the computer is online and that the computer responds correctly to pinging on a different (enterprise) network. Is there something on the computer, my network, or my computer that is bugging with this? - That's just a sub-question, I don't expect this to be the main answer.



The real question: Why does this happen? Why does pinging the IP4 address not work?




EDIT :

Pinging the Hostname used to default to the IP4 address, but now it defaults to the IP6 address. Why does this happen? But now that it pings using IP6, how come it all of a sudden works?



> ping -6 THE_COMPUTER
Pinging THE_COMPUTER [lengthy IP6 address] with 32 bytes of data:
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms

Ping stats: Sent = 4, Recieved = 4, Lost = 0 (0% loss)


But when this is done using IP4 it doesn't work. So there are now two questions:




  • How come IP6 works and not IP4?

  • Why does IP4 not work?










share|improve this question
















bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Check your firewall settings as different networks have different firewall profiles. E.g. your home network is going to be more relaxed than your enterprise profile (probably pushed by Group Policy) - not sure why a ping would fail, however. Try ping - 4 <the_remote_IP>

    – Kinnectus
    Jun 9 '14 at 9:18











  • ping -4 <IP_instead_of_hostname> also fails. And now IP6 is starting to be on and off. It seems really strange...

    – TheBrenny
    Jun 9 '14 at 9:22






  • 2





    Try disabling IPv6 from your network adapter and see if you get better results. We have an issue at my work place, with SOME devices on wireless, where IPv6 is the cause of connectivity issues but our network team are unsure of the fix. Most devices work perfectly, the odd few simply won't connect if IPv6 is enabled.

    – Kinnectus
    Jun 9 '14 at 9:31











  • Strangely, it works. But still only sometimes. I'm getting a better response rate ping IP6 over IP4. Is this just a strange anomaly that has no fix? Does it happen because of a law similar to Faraday's?

    – TheBrenny
    Jun 9 '14 at 9:39













  • It should work ALL the time. Maybe you have a power setting on either YOUR network adapter, or the remote computer, putting the device to sleep as no network activity? - Most likely the remote machine...

    – Kinnectus
    Jun 9 '14 at 9:46
















1












1








1


1






I was doing a bit of scanning on my network lately, knew all the hostnames to each computer connected. But whilst pinging one of them ping returned Request timed out.. This is strange as I know the computer is online and that the computer responds correctly to pinging on a different (enterprise) network. Is there something on the computer, my network, or my computer that is bugging with this? - That's just a sub-question, I don't expect this to be the main answer.



The real question: Why does this happen? Why does pinging the IP4 address not work?




EDIT :

Pinging the Hostname used to default to the IP4 address, but now it defaults to the IP6 address. Why does this happen? But now that it pings using IP6, how come it all of a sudden works?



> ping -6 THE_COMPUTER
Pinging THE_COMPUTER [lengthy IP6 address] with 32 bytes of data:
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms

Ping stats: Sent = 4, Recieved = 4, Lost = 0 (0% loss)


But when this is done using IP4 it doesn't work. So there are now two questions:




  • How come IP6 works and not IP4?

  • Why does IP4 not work?










share|improve this question
















I was doing a bit of scanning on my network lately, knew all the hostnames to each computer connected. But whilst pinging one of them ping returned Request timed out.. This is strange as I know the computer is online and that the computer responds correctly to pinging on a different (enterprise) network. Is there something on the computer, my network, or my computer that is bugging with this? - That's just a sub-question, I don't expect this to be the main answer.



The real question: Why does this happen? Why does pinging the IP4 address not work?




EDIT :

Pinging the Hostname used to default to the IP4 address, but now it defaults to the IP6 address. Why does this happen? But now that it pings using IP6, how come it all of a sudden works?



> ping -6 THE_COMPUTER
Pinging THE_COMPUTER [lengthy IP6 address] with 32 bytes of data:
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms
Reply from [lengthy IP6 address]: time=1ms

Ping stats: Sent = 4, Recieved = 4, Lost = 0 (0% loss)


But when this is done using IP4 it doesn't work. So there are now two questions:




  • How come IP6 works and not IP4?

  • Why does IP4 not work?







windows-7 networking wireless-networking ping






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 9 '14 at 9:08







TheBrenny

















asked Jun 9 '14 at 9:01









TheBrennyTheBrenny

106116




106116





bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    Check your firewall settings as different networks have different firewall profiles. E.g. your home network is going to be more relaxed than your enterprise profile (probably pushed by Group Policy) - not sure why a ping would fail, however. Try ping - 4 <the_remote_IP>

    – Kinnectus
    Jun 9 '14 at 9:18











  • ping -4 <IP_instead_of_hostname> also fails. And now IP6 is starting to be on and off. It seems really strange...

    – TheBrenny
    Jun 9 '14 at 9:22






  • 2





    Try disabling IPv6 from your network adapter and see if you get better results. We have an issue at my work place, with SOME devices on wireless, where IPv6 is the cause of connectivity issues but our network team are unsure of the fix. Most devices work perfectly, the odd few simply won't connect if IPv6 is enabled.

    – Kinnectus
    Jun 9 '14 at 9:31











  • Strangely, it works. But still only sometimes. I'm getting a better response rate ping IP6 over IP4. Is this just a strange anomaly that has no fix? Does it happen because of a law similar to Faraday's?

    – TheBrenny
    Jun 9 '14 at 9:39













  • It should work ALL the time. Maybe you have a power setting on either YOUR network adapter, or the remote computer, putting the device to sleep as no network activity? - Most likely the remote machine...

    – Kinnectus
    Jun 9 '14 at 9:46
















  • 1





    Check your firewall settings as different networks have different firewall profiles. E.g. your home network is going to be more relaxed than your enterprise profile (probably pushed by Group Policy) - not sure why a ping would fail, however. Try ping - 4 <the_remote_IP>

    – Kinnectus
    Jun 9 '14 at 9:18











  • ping -4 <IP_instead_of_hostname> also fails. And now IP6 is starting to be on and off. It seems really strange...

    – TheBrenny
    Jun 9 '14 at 9:22






  • 2





    Try disabling IPv6 from your network adapter and see if you get better results. We have an issue at my work place, with SOME devices on wireless, where IPv6 is the cause of connectivity issues but our network team are unsure of the fix. Most devices work perfectly, the odd few simply won't connect if IPv6 is enabled.

    – Kinnectus
    Jun 9 '14 at 9:31











  • Strangely, it works. But still only sometimes. I'm getting a better response rate ping IP6 over IP4. Is this just a strange anomaly that has no fix? Does it happen because of a law similar to Faraday's?

    – TheBrenny
    Jun 9 '14 at 9:39













  • It should work ALL the time. Maybe you have a power setting on either YOUR network adapter, or the remote computer, putting the device to sleep as no network activity? - Most likely the remote machine...

    – Kinnectus
    Jun 9 '14 at 9:46










1




1





Check your firewall settings as different networks have different firewall profiles. E.g. your home network is going to be more relaxed than your enterprise profile (probably pushed by Group Policy) - not sure why a ping would fail, however. Try ping - 4 <the_remote_IP>

– Kinnectus
Jun 9 '14 at 9:18





Check your firewall settings as different networks have different firewall profiles. E.g. your home network is going to be more relaxed than your enterprise profile (probably pushed by Group Policy) - not sure why a ping would fail, however. Try ping - 4 <the_remote_IP>

– Kinnectus
Jun 9 '14 at 9:18













ping -4 <IP_instead_of_hostname> also fails. And now IP6 is starting to be on and off. It seems really strange...

– TheBrenny
Jun 9 '14 at 9:22





ping -4 <IP_instead_of_hostname> also fails. And now IP6 is starting to be on and off. It seems really strange...

– TheBrenny
Jun 9 '14 at 9:22




2




2





Try disabling IPv6 from your network adapter and see if you get better results. We have an issue at my work place, with SOME devices on wireless, where IPv6 is the cause of connectivity issues but our network team are unsure of the fix. Most devices work perfectly, the odd few simply won't connect if IPv6 is enabled.

– Kinnectus
Jun 9 '14 at 9:31





Try disabling IPv6 from your network adapter and see if you get better results. We have an issue at my work place, with SOME devices on wireless, where IPv6 is the cause of connectivity issues but our network team are unsure of the fix. Most devices work perfectly, the odd few simply won't connect if IPv6 is enabled.

– Kinnectus
Jun 9 '14 at 9:31













Strangely, it works. But still only sometimes. I'm getting a better response rate ping IP6 over IP4. Is this just a strange anomaly that has no fix? Does it happen because of a law similar to Faraday's?

– TheBrenny
Jun 9 '14 at 9:39







Strangely, it works. But still only sometimes. I'm getting a better response rate ping IP6 over IP4. Is this just a strange anomaly that has no fix? Does it happen because of a law similar to Faraday's?

– TheBrenny
Jun 9 '14 at 9:39















It should work ALL the time. Maybe you have a power setting on either YOUR network adapter, or the remote computer, putting the device to sleep as no network activity? - Most likely the remote machine...

– Kinnectus
Jun 9 '14 at 9:46







It should work ALL the time. Maybe you have a power setting on either YOUR network adapter, or the remote computer, putting the device to sleep as no network activity? - Most likely the remote machine...

– Kinnectus
Jun 9 '14 at 9:46












1 Answer
1






active

oldest

votes


















0














there are a few things I would recommend you try to see if you can fix this:



1)Disable windows firewall if you have not done so already. It is a fairly well documented "feature" of windows firewall that it randomly blocks packets even if an exception is made. Look on Technet and you will see what I am on about!



2)Disable IPv6 on your NIC. If you are not using it, it will only cause problems! Especially in situations where both PCs speak ipv6 and the router/switch between them doesn't.



4)Reinstall your network adapter drivers. Intermittent connectivity cal often be caused by faultering/failing driver installs. Even if it doesn't fix the problem, it definitely won't hurt!



I have often found that the main reson this happens is one of the above... hopefully this will help set you on your way.






share|improve this answer
























  • I am not sure about point2. There were a lot of broken implementations out in the field even a decade after IPv6 got introduced. But these days it should no longer be relevant.

    – Hennes
    Apr 27 '16 at 11:50











  • I am not sure about point 1 either. Do you have a reference link?

    – grawity
    May 14 '17 at 11:37












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f766404%2fonline-computer-not-responding-to-pings%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














there are a few things I would recommend you try to see if you can fix this:



1)Disable windows firewall if you have not done so already. It is a fairly well documented "feature" of windows firewall that it randomly blocks packets even if an exception is made. Look on Technet and you will see what I am on about!



2)Disable IPv6 on your NIC. If you are not using it, it will only cause problems! Especially in situations where both PCs speak ipv6 and the router/switch between them doesn't.



4)Reinstall your network adapter drivers. Intermittent connectivity cal often be caused by faultering/failing driver installs. Even if it doesn't fix the problem, it definitely won't hurt!



I have often found that the main reson this happens is one of the above... hopefully this will help set you on your way.






share|improve this answer
























  • I am not sure about point2. There were a lot of broken implementations out in the field even a decade after IPv6 got introduced. But these days it should no longer be relevant.

    – Hennes
    Apr 27 '16 at 11:50











  • I am not sure about point 1 either. Do you have a reference link?

    – grawity
    May 14 '17 at 11:37
















0














there are a few things I would recommend you try to see if you can fix this:



1)Disable windows firewall if you have not done so already. It is a fairly well documented "feature" of windows firewall that it randomly blocks packets even if an exception is made. Look on Technet and you will see what I am on about!



2)Disable IPv6 on your NIC. If you are not using it, it will only cause problems! Especially in situations where both PCs speak ipv6 and the router/switch between them doesn't.



4)Reinstall your network adapter drivers. Intermittent connectivity cal often be caused by faultering/failing driver installs. Even if it doesn't fix the problem, it definitely won't hurt!



I have often found that the main reson this happens is one of the above... hopefully this will help set you on your way.






share|improve this answer
























  • I am not sure about point2. There were a lot of broken implementations out in the field even a decade after IPv6 got introduced. But these days it should no longer be relevant.

    – Hennes
    Apr 27 '16 at 11:50











  • I am not sure about point 1 either. Do you have a reference link?

    – grawity
    May 14 '17 at 11:37














0












0








0







there are a few things I would recommend you try to see if you can fix this:



1)Disable windows firewall if you have not done so already. It is a fairly well documented "feature" of windows firewall that it randomly blocks packets even if an exception is made. Look on Technet and you will see what I am on about!



2)Disable IPv6 on your NIC. If you are not using it, it will only cause problems! Especially in situations where both PCs speak ipv6 and the router/switch between them doesn't.



4)Reinstall your network adapter drivers. Intermittent connectivity cal often be caused by faultering/failing driver installs. Even if it doesn't fix the problem, it definitely won't hurt!



I have often found that the main reson this happens is one of the above... hopefully this will help set you on your way.






share|improve this answer













there are a few things I would recommend you try to see if you can fix this:



1)Disable windows firewall if you have not done so already. It is a fairly well documented "feature" of windows firewall that it randomly blocks packets even if an exception is made. Look on Technet and you will see what I am on about!



2)Disable IPv6 on your NIC. If you are not using it, it will only cause problems! Especially in situations where both PCs speak ipv6 and the router/switch between them doesn't.



4)Reinstall your network adapter drivers. Intermittent connectivity cal often be caused by faultering/failing driver installs. Even if it doesn't fix the problem, it definitely won't hurt!



I have often found that the main reson this happens is one of the above... hopefully this will help set you on your way.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jun 9 '14 at 9:55









Fazer87Fazer87

10.6k12742




10.6k12742













  • I am not sure about point2. There were a lot of broken implementations out in the field even a decade after IPv6 got introduced. But these days it should no longer be relevant.

    – Hennes
    Apr 27 '16 at 11:50











  • I am not sure about point 1 either. Do you have a reference link?

    – grawity
    May 14 '17 at 11:37



















  • I am not sure about point2. There were a lot of broken implementations out in the field even a decade after IPv6 got introduced. But these days it should no longer be relevant.

    – Hennes
    Apr 27 '16 at 11:50











  • I am not sure about point 1 either. Do you have a reference link?

    – grawity
    May 14 '17 at 11:37

















I am not sure about point2. There were a lot of broken implementations out in the field even a decade after IPv6 got introduced. But these days it should no longer be relevant.

– Hennes
Apr 27 '16 at 11:50





I am not sure about point2. There were a lot of broken implementations out in the field even a decade after IPv6 got introduced. But these days it should no longer be relevant.

– Hennes
Apr 27 '16 at 11:50













I am not sure about point 1 either. Do you have a reference link?

– grawity
May 14 '17 at 11:37





I am not sure about point 1 either. Do you have a reference link?

– grawity
May 14 '17 at 11:37


















draft saved

draft discarded




















































Thanks for contributing an answer to Super User!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f766404%2fonline-computer-not-responding-to-pings%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...