Route exists but I get no route to host error on centos 7Linux add route errorAdd Persistent Static Route in Centos 5centos route problems, can't connect to networkWindows route add errordynamic 'route add' command doesn't work but static is workingCan't access LAN host from the firewallhow to add static route to specific hostIs there a way to ssh using hostname alias without modifying the etc/hosts file?Get IPv6 route for VM“No route to host” until “ping” or “route”
Is it a bad idea to replace pull-up resistors with hard pull-ups?
Is "now" UTC time in Solidity?
Can you book a one-way ticket to the UK on a visa?
How do I compare the result of "1d20+x, with advantage" to "1d20+y, without advantage", assuming x < y?
What did Rocket give Hawkeye in "Avengers: Endgame"?
What's the best way to update Homebrew when upgrading macOS?
We are two immediate neighbors who forged our own powers to form concatenated relationship. Who are we?
Does Lawful Interception of 4G / the proposed 5G provide a back door for hackers as well?
How do I tell my supervisor that he is choosing poor replacements for me while I am on maternity leave?
expl3-strategy to automatically update the title of a document, depending on its content
What are the ramifications of setting ARITHABORT ON for all connections in SQL Server?
Guns in space with bullets that return?
"Fīliolō me auctum scito, salva Terentia"; what is "me" role in this phrase?
What does i386 mean on macOS Mojave?
Why does "decimal.TryParse()" always return 0 for the input string "-1" in the below code?
Delta TSA-Precheck status removed
semanage not changing file context
Early arrival in Australia, early hotel check in not available
Pre-1993 comic in which Wolverine's claws were turned to rubber?
Why can't RGB or bicolour LEDs produce a decent yellow?
stdout and stderr redirection to different files
How to select certain lines (n, n+4, n+8, n+12...) from the file?
Washer drain pipe overflow
Unit Test - Testing API Methods
Route exists but I get no route to host error on centos 7
Linux add route errorAdd Persistent Static Route in Centos 5centos route problems, can't connect to networkWindows route add errordynamic 'route add' command doesn't work but static is workingCan't access LAN host from the firewallhow to add static route to specific hostIs there a way to ssh using hostname alias without modifying the etc/hosts file?Get IPv6 route for VM“No route to host” until “ping” or “route”
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
route exists on OS but when I try to telnet I get no route to host error. Any suggestions on how to resolve it?
[user@hostname ~]$ ip route
10.0.0.0/8 via 172.16.123.141 dev ens192 proto static metric 100
172.16.0.0/16 via 172.16.123.141 dev ens192 proto static metric 100
172.16.123.0/24 dev ens192 proto kernel scope link src 172.16.123.141 metric 100
192.168.0.0/16 via 172.16.123.141 dev ens192 proto static metric 100
telnet 172.16.133.71 3306
No route to host
route
|
show 3 more comments
route exists on OS but when I try to telnet I get no route to host error. Any suggestions on how to resolve it?
[user@hostname ~]$ ip route
10.0.0.0/8 via 172.16.123.141 dev ens192 proto static metric 100
172.16.0.0/16 via 172.16.123.141 dev ens192 proto static metric 100
172.16.123.0/24 dev ens192 proto kernel scope link src 172.16.123.141 metric 100
192.168.0.0/16 via 172.16.123.141 dev ens192 proto static metric 100
telnet 172.16.133.71 3306
No route to host
route
This routing table doesn't seem consistent. It shows 172.16.123.141 as both a local address on dev ens192 and a remote router, without being onlink and without a default route.
– user188737
May 1 at 13:03
seem to get the same error with just172.16.0.0/16 dev ens192 proto kernel scope link src 172.16.123.141 metric 100
– user
May 1 at 13:11
And address 172.16.123.141 is attached locally to ens192 with the same /16?
– user188737
May 1 at 13:32
yea it's attached locally to ens192 with /16 subnet
– user
May 1 at 13:37
Ok, then it seems that there is no broadcast allowed on that subnet on the network attached to ens192. You could check your arp table to see if there is a MAC address for 172.16.133.71. If not then you could try adding it manually. Also try traceroute.
– user188737
May 1 at 13:47
|
show 3 more comments
route exists on OS but when I try to telnet I get no route to host error. Any suggestions on how to resolve it?
[user@hostname ~]$ ip route
10.0.0.0/8 via 172.16.123.141 dev ens192 proto static metric 100
172.16.0.0/16 via 172.16.123.141 dev ens192 proto static metric 100
172.16.123.0/24 dev ens192 proto kernel scope link src 172.16.123.141 metric 100
192.168.0.0/16 via 172.16.123.141 dev ens192 proto static metric 100
telnet 172.16.133.71 3306
No route to host
route
route exists on OS but when I try to telnet I get no route to host error. Any suggestions on how to resolve it?
[user@hostname ~]$ ip route
10.0.0.0/8 via 172.16.123.141 dev ens192 proto static metric 100
172.16.0.0/16 via 172.16.123.141 dev ens192 proto static metric 100
172.16.123.0/24 dev ens192 proto kernel scope link src 172.16.123.141 metric 100
192.168.0.0/16 via 172.16.123.141 dev ens192 proto static metric 100
telnet 172.16.133.71 3306
No route to host
route
route
asked May 1 at 12:47
useruser
1
1
This routing table doesn't seem consistent. It shows 172.16.123.141 as both a local address on dev ens192 and a remote router, without being onlink and without a default route.
– user188737
May 1 at 13:03
seem to get the same error with just172.16.0.0/16 dev ens192 proto kernel scope link src 172.16.123.141 metric 100
– user
May 1 at 13:11
And address 172.16.123.141 is attached locally to ens192 with the same /16?
– user188737
May 1 at 13:32
yea it's attached locally to ens192 with /16 subnet
– user
May 1 at 13:37
Ok, then it seems that there is no broadcast allowed on that subnet on the network attached to ens192. You could check your arp table to see if there is a MAC address for 172.16.133.71. If not then you could try adding it manually. Also try traceroute.
– user188737
May 1 at 13:47
|
show 3 more comments
This routing table doesn't seem consistent. It shows 172.16.123.141 as both a local address on dev ens192 and a remote router, without being onlink and without a default route.
– user188737
May 1 at 13:03
seem to get the same error with just172.16.0.0/16 dev ens192 proto kernel scope link src 172.16.123.141 metric 100
– user
May 1 at 13:11
And address 172.16.123.141 is attached locally to ens192 with the same /16?
– user188737
May 1 at 13:32
yea it's attached locally to ens192 with /16 subnet
– user
May 1 at 13:37
Ok, then it seems that there is no broadcast allowed on that subnet on the network attached to ens192. You could check your arp table to see if there is a MAC address for 172.16.133.71. If not then you could try adding it manually. Also try traceroute.
– user188737
May 1 at 13:47
This routing table doesn't seem consistent. It shows 172.16.123.141 as both a local address on dev ens192 and a remote router, without being onlink and without a default route.
– user188737
May 1 at 13:03
This routing table doesn't seem consistent. It shows 172.16.123.141 as both a local address on dev ens192 and a remote router, without being onlink and without a default route.
– user188737
May 1 at 13:03
seem to get the same error with just
172.16.0.0/16 dev ens192 proto kernel scope link src 172.16.123.141 metric 100– user
May 1 at 13:11
seem to get the same error with just
172.16.0.0/16 dev ens192 proto kernel scope link src 172.16.123.141 metric 100– user
May 1 at 13:11
And address 172.16.123.141 is attached locally to ens192 with the same /16?
– user188737
May 1 at 13:32
And address 172.16.123.141 is attached locally to ens192 with the same /16?
– user188737
May 1 at 13:32
yea it's attached locally to ens192 with /16 subnet
– user
May 1 at 13:37
yea it's attached locally to ens192 with /16 subnet
– user
May 1 at 13:37
Ok, then it seems that there is no broadcast allowed on that subnet on the network attached to ens192. You could check your arp table to see if there is a MAC address for 172.16.133.71. If not then you could try adding it manually. Also try traceroute.
– user188737
May 1 at 13:47
Ok, then it seems that there is no broadcast allowed on that subnet on the network attached to ens192. You could check your arp table to see if there is a MAC address for 172.16.133.71. If not then you could try adding it manually. Also try traceroute.
– user188737
May 1 at 13:47
|
show 3 more comments
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f965418%2froute-exists-but-i-get-no-route-to-host-error-on-centos-7%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Server Fault!
- 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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f965418%2froute-exists-but-i-get-no-route-to-host-error-on-centos-7%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
This routing table doesn't seem consistent. It shows 172.16.123.141 as both a local address on dev ens192 and a remote router, without being onlink and without a default route.
– user188737
May 1 at 13:03
seem to get the same error with just
172.16.0.0/16 dev ens192 proto kernel scope link src 172.16.123.141 metric 100– user
May 1 at 13:11
And address 172.16.123.141 is attached locally to ens192 with the same /16?
– user188737
May 1 at 13:32
yea it's attached locally to ens192 with /16 subnet
– user
May 1 at 13:37
Ok, then it seems that there is no broadcast allowed on that subnet on the network attached to ens192. You could check your arp table to see if there is a MAC address for 172.16.133.71. If not then you could try adding it manually. Also try traceroute.
– user188737
May 1 at 13:47