How can I do a loopback test?
Clash Royale CLAN TAG#URR8PPP
Book Computer Networks says
all addresses of the form 127.xx.yy.zz are reserved for loopback
testing. Packets sent to that address are not put out onto the wire; they are processed locally and treated as incoming packets. This allows packets to be sent to
the host without the sender knowing its number, which is useful for testing.
Can you tell me how to do a loopback test in Linux, and contrast it with a non-loopback test which tests the same thing (any thing)? Thanks.
networking loopback
add a comment |
Book Computer Networks says
all addresses of the form 127.xx.yy.zz are reserved for loopback
testing. Packets sent to that address are not put out onto the wire; they are processed locally and treated as incoming packets. This allows packets to be sent to
the host without the sender knowing its number, which is useful for testing.
Can you tell me how to do a loopback test in Linux, and contrast it with a non-loopback test which tests the same thing (any thing)? Thanks.
networking loopback
Could you elaborate on what the text refers to asnumber
?
– Jeff Schaller
Feb 11 at 16:33
1
@JeffSchaller by "number" the book means "IP" (likely written before IPv6).
– user1133275
Feb 11 at 17:01
@user1133275 that seems likely, but since Tim has the source material, I wanted to make sure we were speaking the same language.
– Jeff Schaller
Feb 11 at 17:02
add a comment |
Book Computer Networks says
all addresses of the form 127.xx.yy.zz are reserved for loopback
testing. Packets sent to that address are not put out onto the wire; they are processed locally and treated as incoming packets. This allows packets to be sent to
the host without the sender knowing its number, which is useful for testing.
Can you tell me how to do a loopback test in Linux, and contrast it with a non-loopback test which tests the same thing (any thing)? Thanks.
networking loopback
Book Computer Networks says
all addresses of the form 127.xx.yy.zz are reserved for loopback
testing. Packets sent to that address are not put out onto the wire; they are processed locally and treated as incoming packets. This allows packets to be sent to
the host without the sender knowing its number, which is useful for testing.
Can you tell me how to do a loopback test in Linux, and contrast it with a non-loopback test which tests the same thing (any thing)? Thanks.
networking loopback
networking loopback
edited Feb 11 at 16:25
Tim
asked Feb 11 at 16:16
TimTim
27.4k78264475
27.4k78264475
Could you elaborate on what the text refers to asnumber
?
– Jeff Schaller
Feb 11 at 16:33
1
@JeffSchaller by "number" the book means "IP" (likely written before IPv6).
– user1133275
Feb 11 at 17:01
@user1133275 that seems likely, but since Tim has the source material, I wanted to make sure we were speaking the same language.
– Jeff Schaller
Feb 11 at 17:02
add a comment |
Could you elaborate on what the text refers to asnumber
?
– Jeff Schaller
Feb 11 at 16:33
1
@JeffSchaller by "number" the book means "IP" (likely written before IPv6).
– user1133275
Feb 11 at 17:01
@user1133275 that seems likely, but since Tim has the source material, I wanted to make sure we were speaking the same language.
– Jeff Schaller
Feb 11 at 17:02
Could you elaborate on what the text refers to as
number
?– Jeff Schaller
Feb 11 at 16:33
Could you elaborate on what the text refers to as
number
?– Jeff Schaller
Feb 11 at 16:33
1
1
@JeffSchaller by "number" the book means "IP" (likely written before IPv6).
– user1133275
Feb 11 at 17:01
@JeffSchaller by "number" the book means "IP" (likely written before IPv6).
– user1133275
Feb 11 at 17:01
@user1133275 that seems likely, but since Tim has the source material, I wanted to make sure we were speaking the same language.
– Jeff Schaller
Feb 11 at 17:02
@user1133275 that seems likely, but since Tim has the source material, I wanted to make sure we were speaking the same language.
– Jeff Schaller
Feb 11 at 17:02
add a comment |
4 Answers
4
active
oldest
votes
Simply configure whichever service you wish to test to a valid IP address within the 127.0.0.0/8
CIDR block. Then attempt to connect to it from the same host at that IP address you selected. If it works, then your loopback test succeeded.
The loopback interface and address space is only significant to network infrastructure; to an application or service an IP in the 127.0.0.0/8 block is just like any other IP address.
The difference between running a service on the loopback interface and on an "actual" network interface is that, as the quote in your question says, loopback traffic never goes out "on the wire", which is to say no data are ever transmitted beyond the host itself.
This means that if you are setting a service up on the loopback range for testing, you must test from the same host. If you want to test connections from another host (so as to test network connectivity) you must instead bind your service to a "wire"-facing interface and address, either directly or indirectly.
Without using loopback IP address, how would you do the test instead?
– Tim
Feb 12 at 3:28
1
I don't understand the follow-up question. How would one test a service on a loopback IP without using the loopback IP? That's like asking how to test a radio without.. a radio.
– DopeGhoti
Feb 12 at 15:43
How would one test a service without using the loopback IP?
– Tim
Feb 12 at 15:59
1
This is getting far afield of the original question. Most services have configuration files or parameters or other means of configuring them. If you have a specific question that this answer to the OP at the top of the page is not addressing, please edit your question to clarify the intent of your inquiry.
– DopeGhoti
Feb 12 at 17:16
1
That's really not what I said at all. I'm just saying that your question doesn't really tell us anything about the background knowledge you already have or the context in which you're reading this book. I answered usingtelnet
as an example, but I have no idea whether you know what that is. I don't know if the result of telnetting to an HTTP server will mean anything to you. I don't really know if you know what I mean by "host" or "interface". If you do know those things, great, but I had to guess. If you don't, I just sparked a cascade of future questions and that isn't a good way to learn.
– Useless
Feb 13 at 13:31
|
show 4 more comments
tell me how to do a loopback test in Linux
Connect to a service running on the local host via loopback (in this case an HTTP server). If the server is configured to listen on all interfaces, you don't even need to reconfigure it.
$ telnet 127.0.0.1 80
, and contrast it with a non-loopback test which tests the same thing (any thing)?
Connect to the same server from a different host via a real network interface (obviously, since that's the only way to get packets to communicate with a different machine).
$ telnet 192.168.0.100 80
(replace 192... with a real IP address or the network hostname)
add a comment |
Yes, but using 1.1.1.1
introduces a dependency on an existing IP address in Australia. Maybe ping -c 1 google.com
?
1.1.1.1 is not necessarily in Australia, the IP is not tied to only one server.
– Rui F Ribeiro
Feb 13 at 9:26
add a comment |
Can you tell me how to do a loopback test in Linux
ping -c 1 127.0.0.1
, and contrast it with a non-loopback test which tests the same thing (any thing)?
ping -c 1 1.1.1.1
3
1.1.1.1 is not a loopback address...
– Rui F Ribeiro
Feb 11 at 18:17
@RuiFRibeiro and?
– user1133275
Feb 12 at 20:26
Perhapsping $(ip addr | grep 'inet ' | grep -v 127.0 | awk ' print $2 ' | cut -d/ -f1)
would be more appropriate for the non-loopback test?
– Doug O'Neal
Feb 12 at 20:59
@Doug I originally considered that but I have had incompatibilities with that sort of thing in the past and it over complicates the answer so I decided to leave it out.
– user1133275
Feb 12 at 22:23
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f499978%2fhow-can-i-do-a-loopback-test%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Simply configure whichever service you wish to test to a valid IP address within the 127.0.0.0/8
CIDR block. Then attempt to connect to it from the same host at that IP address you selected. If it works, then your loopback test succeeded.
The loopback interface and address space is only significant to network infrastructure; to an application or service an IP in the 127.0.0.0/8 block is just like any other IP address.
The difference between running a service on the loopback interface and on an "actual" network interface is that, as the quote in your question says, loopback traffic never goes out "on the wire", which is to say no data are ever transmitted beyond the host itself.
This means that if you are setting a service up on the loopback range for testing, you must test from the same host. If you want to test connections from another host (so as to test network connectivity) you must instead bind your service to a "wire"-facing interface and address, either directly or indirectly.
Without using loopback IP address, how would you do the test instead?
– Tim
Feb 12 at 3:28
1
I don't understand the follow-up question. How would one test a service on a loopback IP without using the loopback IP? That's like asking how to test a radio without.. a radio.
– DopeGhoti
Feb 12 at 15:43
How would one test a service without using the loopback IP?
– Tim
Feb 12 at 15:59
1
This is getting far afield of the original question. Most services have configuration files or parameters or other means of configuring them. If you have a specific question that this answer to the OP at the top of the page is not addressing, please edit your question to clarify the intent of your inquiry.
– DopeGhoti
Feb 12 at 17:16
1
That's really not what I said at all. I'm just saying that your question doesn't really tell us anything about the background knowledge you already have or the context in which you're reading this book. I answered usingtelnet
as an example, but I have no idea whether you know what that is. I don't know if the result of telnetting to an HTTP server will mean anything to you. I don't really know if you know what I mean by "host" or "interface". If you do know those things, great, but I had to guess. If you don't, I just sparked a cascade of future questions and that isn't a good way to learn.
– Useless
Feb 13 at 13:31
|
show 4 more comments
Simply configure whichever service you wish to test to a valid IP address within the 127.0.0.0/8
CIDR block. Then attempt to connect to it from the same host at that IP address you selected. If it works, then your loopback test succeeded.
The loopback interface and address space is only significant to network infrastructure; to an application or service an IP in the 127.0.0.0/8 block is just like any other IP address.
The difference between running a service on the loopback interface and on an "actual" network interface is that, as the quote in your question says, loopback traffic never goes out "on the wire", which is to say no data are ever transmitted beyond the host itself.
This means that if you are setting a service up on the loopback range for testing, you must test from the same host. If you want to test connections from another host (so as to test network connectivity) you must instead bind your service to a "wire"-facing interface and address, either directly or indirectly.
Without using loopback IP address, how would you do the test instead?
– Tim
Feb 12 at 3:28
1
I don't understand the follow-up question. How would one test a service on a loopback IP without using the loopback IP? That's like asking how to test a radio without.. a radio.
– DopeGhoti
Feb 12 at 15:43
How would one test a service without using the loopback IP?
– Tim
Feb 12 at 15:59
1
This is getting far afield of the original question. Most services have configuration files or parameters or other means of configuring them. If you have a specific question that this answer to the OP at the top of the page is not addressing, please edit your question to clarify the intent of your inquiry.
– DopeGhoti
Feb 12 at 17:16
1
That's really not what I said at all. I'm just saying that your question doesn't really tell us anything about the background knowledge you already have or the context in which you're reading this book. I answered usingtelnet
as an example, but I have no idea whether you know what that is. I don't know if the result of telnetting to an HTTP server will mean anything to you. I don't really know if you know what I mean by "host" or "interface". If you do know those things, great, but I had to guess. If you don't, I just sparked a cascade of future questions and that isn't a good way to learn.
– Useless
Feb 13 at 13:31
|
show 4 more comments
Simply configure whichever service you wish to test to a valid IP address within the 127.0.0.0/8
CIDR block. Then attempt to connect to it from the same host at that IP address you selected. If it works, then your loopback test succeeded.
The loopback interface and address space is only significant to network infrastructure; to an application or service an IP in the 127.0.0.0/8 block is just like any other IP address.
The difference between running a service on the loopback interface and on an "actual" network interface is that, as the quote in your question says, loopback traffic never goes out "on the wire", which is to say no data are ever transmitted beyond the host itself.
This means that if you are setting a service up on the loopback range for testing, you must test from the same host. If you want to test connections from another host (so as to test network connectivity) you must instead bind your service to a "wire"-facing interface and address, either directly or indirectly.
Simply configure whichever service you wish to test to a valid IP address within the 127.0.0.0/8
CIDR block. Then attempt to connect to it from the same host at that IP address you selected. If it works, then your loopback test succeeded.
The loopback interface and address space is only significant to network infrastructure; to an application or service an IP in the 127.0.0.0/8 block is just like any other IP address.
The difference between running a service on the loopback interface and on an "actual" network interface is that, as the quote in your question says, loopback traffic never goes out "on the wire", which is to say no data are ever transmitted beyond the host itself.
This means that if you are setting a service up on the loopback range for testing, you must test from the same host. If you want to test connections from another host (so as to test network connectivity) you must instead bind your service to a "wire"-facing interface and address, either directly or indirectly.
edited Feb 12 at 17:20
answered Feb 11 at 17:05
DopeGhotiDopeGhoti
46k56089
46k56089
Without using loopback IP address, how would you do the test instead?
– Tim
Feb 12 at 3:28
1
I don't understand the follow-up question. How would one test a service on a loopback IP without using the loopback IP? That's like asking how to test a radio without.. a radio.
– DopeGhoti
Feb 12 at 15:43
How would one test a service without using the loopback IP?
– Tim
Feb 12 at 15:59
1
This is getting far afield of the original question. Most services have configuration files or parameters or other means of configuring them. If you have a specific question that this answer to the OP at the top of the page is not addressing, please edit your question to clarify the intent of your inquiry.
– DopeGhoti
Feb 12 at 17:16
1
That's really not what I said at all. I'm just saying that your question doesn't really tell us anything about the background knowledge you already have or the context in which you're reading this book. I answered usingtelnet
as an example, but I have no idea whether you know what that is. I don't know if the result of telnetting to an HTTP server will mean anything to you. I don't really know if you know what I mean by "host" or "interface". If you do know those things, great, but I had to guess. If you don't, I just sparked a cascade of future questions and that isn't a good way to learn.
– Useless
Feb 13 at 13:31
|
show 4 more comments
Without using loopback IP address, how would you do the test instead?
– Tim
Feb 12 at 3:28
1
I don't understand the follow-up question. How would one test a service on a loopback IP without using the loopback IP? That's like asking how to test a radio without.. a radio.
– DopeGhoti
Feb 12 at 15:43
How would one test a service without using the loopback IP?
– Tim
Feb 12 at 15:59
1
This is getting far afield of the original question. Most services have configuration files or parameters or other means of configuring them. If you have a specific question that this answer to the OP at the top of the page is not addressing, please edit your question to clarify the intent of your inquiry.
– DopeGhoti
Feb 12 at 17:16
1
That's really not what I said at all. I'm just saying that your question doesn't really tell us anything about the background knowledge you already have or the context in which you're reading this book. I answered usingtelnet
as an example, but I have no idea whether you know what that is. I don't know if the result of telnetting to an HTTP server will mean anything to you. I don't really know if you know what I mean by "host" or "interface". If you do know those things, great, but I had to guess. If you don't, I just sparked a cascade of future questions and that isn't a good way to learn.
– Useless
Feb 13 at 13:31
Without using loopback IP address, how would you do the test instead?
– Tim
Feb 12 at 3:28
Without using loopback IP address, how would you do the test instead?
– Tim
Feb 12 at 3:28
1
1
I don't understand the follow-up question. How would one test a service on a loopback IP without using the loopback IP? That's like asking how to test a radio without.. a radio.
– DopeGhoti
Feb 12 at 15:43
I don't understand the follow-up question. How would one test a service on a loopback IP without using the loopback IP? That's like asking how to test a radio without.. a radio.
– DopeGhoti
Feb 12 at 15:43
How would one test a service without using the loopback IP?
– Tim
Feb 12 at 15:59
How would one test a service without using the loopback IP?
– Tim
Feb 12 at 15:59
1
1
This is getting far afield of the original question. Most services have configuration files or parameters or other means of configuring them. If you have a specific question that this answer to the OP at the top of the page is not addressing, please edit your question to clarify the intent of your inquiry.
– DopeGhoti
Feb 12 at 17:16
This is getting far afield of the original question. Most services have configuration files or parameters or other means of configuring them. If you have a specific question that this answer to the OP at the top of the page is not addressing, please edit your question to clarify the intent of your inquiry.
– DopeGhoti
Feb 12 at 17:16
1
1
That's really not what I said at all. I'm just saying that your question doesn't really tell us anything about the background knowledge you already have or the context in which you're reading this book. I answered using
telnet
as an example, but I have no idea whether you know what that is. I don't know if the result of telnetting to an HTTP server will mean anything to you. I don't really know if you know what I mean by "host" or "interface". If you do know those things, great, but I had to guess. If you don't, I just sparked a cascade of future questions and that isn't a good way to learn.– Useless
Feb 13 at 13:31
That's really not what I said at all. I'm just saying that your question doesn't really tell us anything about the background knowledge you already have or the context in which you're reading this book. I answered using
telnet
as an example, but I have no idea whether you know what that is. I don't know if the result of telnetting to an HTTP server will mean anything to you. I don't really know if you know what I mean by "host" or "interface". If you do know those things, great, but I had to guess. If you don't, I just sparked a cascade of future questions and that isn't a good way to learn.– Useless
Feb 13 at 13:31
|
show 4 more comments
tell me how to do a loopback test in Linux
Connect to a service running on the local host via loopback (in this case an HTTP server). If the server is configured to listen on all interfaces, you don't even need to reconfigure it.
$ telnet 127.0.0.1 80
, and contrast it with a non-loopback test which tests the same thing (any thing)?
Connect to the same server from a different host via a real network interface (obviously, since that's the only way to get packets to communicate with a different machine).
$ telnet 192.168.0.100 80
(replace 192... with a real IP address or the network hostname)
add a comment |
tell me how to do a loopback test in Linux
Connect to a service running on the local host via loopback (in this case an HTTP server). If the server is configured to listen on all interfaces, you don't even need to reconfigure it.
$ telnet 127.0.0.1 80
, and contrast it with a non-loopback test which tests the same thing (any thing)?
Connect to the same server from a different host via a real network interface (obviously, since that's the only way to get packets to communicate with a different machine).
$ telnet 192.168.0.100 80
(replace 192... with a real IP address or the network hostname)
add a comment |
tell me how to do a loopback test in Linux
Connect to a service running on the local host via loopback (in this case an HTTP server). If the server is configured to listen on all interfaces, you don't even need to reconfigure it.
$ telnet 127.0.0.1 80
, and contrast it with a non-loopback test which tests the same thing (any thing)?
Connect to the same server from a different host via a real network interface (obviously, since that's the only way to get packets to communicate with a different machine).
$ telnet 192.168.0.100 80
(replace 192... with a real IP address or the network hostname)
tell me how to do a loopback test in Linux
Connect to a service running on the local host via loopback (in this case an HTTP server). If the server is configured to listen on all interfaces, you don't even need to reconfigure it.
$ telnet 127.0.0.1 80
, and contrast it with a non-loopback test which tests the same thing (any thing)?
Connect to the same server from a different host via a real network interface (obviously, since that's the only way to get packets to communicate with a different machine).
$ telnet 192.168.0.100 80
(replace 192... with a real IP address or the network hostname)
answered Feb 12 at 21:12
UselessUseless
3,4281419
3,4281419
add a comment |
add a comment |
Yes, but using 1.1.1.1
introduces a dependency on an existing IP address in Australia. Maybe ping -c 1 google.com
?
1.1.1.1 is not necessarily in Australia, the IP is not tied to only one server.
– Rui F Ribeiro
Feb 13 at 9:26
add a comment |
Yes, but using 1.1.1.1
introduces a dependency on an existing IP address in Australia. Maybe ping -c 1 google.com
?
1.1.1.1 is not necessarily in Australia, the IP is not tied to only one server.
– Rui F Ribeiro
Feb 13 at 9:26
add a comment |
Yes, but using 1.1.1.1
introduces a dependency on an existing IP address in Australia. Maybe ping -c 1 google.com
?
Yes, but using 1.1.1.1
introduces a dependency on an existing IP address in Australia. Maybe ping -c 1 google.com
?
answered Feb 12 at 23:27
Doug O'NealDoug O'Neal
2,9501818
2,9501818
1.1.1.1 is not necessarily in Australia, the IP is not tied to only one server.
– Rui F Ribeiro
Feb 13 at 9:26
add a comment |
1.1.1.1 is not necessarily in Australia, the IP is not tied to only one server.
– Rui F Ribeiro
Feb 13 at 9:26
1.1.1.1 is not necessarily in Australia, the IP is not tied to only one server.
– Rui F Ribeiro
Feb 13 at 9:26
1.1.1.1 is not necessarily in Australia, the IP is not tied to only one server.
– Rui F Ribeiro
Feb 13 at 9:26
add a comment |
Can you tell me how to do a loopback test in Linux
ping -c 1 127.0.0.1
, and contrast it with a non-loopback test which tests the same thing (any thing)?
ping -c 1 1.1.1.1
3
1.1.1.1 is not a loopback address...
– Rui F Ribeiro
Feb 11 at 18:17
@RuiFRibeiro and?
– user1133275
Feb 12 at 20:26
Perhapsping $(ip addr | grep 'inet ' | grep -v 127.0 | awk ' print $2 ' | cut -d/ -f1)
would be more appropriate for the non-loopback test?
– Doug O'Neal
Feb 12 at 20:59
@Doug I originally considered that but I have had incompatibilities with that sort of thing in the past and it over complicates the answer so I decided to leave it out.
– user1133275
Feb 12 at 22:23
add a comment |
Can you tell me how to do a loopback test in Linux
ping -c 1 127.0.0.1
, and contrast it with a non-loopback test which tests the same thing (any thing)?
ping -c 1 1.1.1.1
3
1.1.1.1 is not a loopback address...
– Rui F Ribeiro
Feb 11 at 18:17
@RuiFRibeiro and?
– user1133275
Feb 12 at 20:26
Perhapsping $(ip addr | grep 'inet ' | grep -v 127.0 | awk ' print $2 ' | cut -d/ -f1)
would be more appropriate for the non-loopback test?
– Doug O'Neal
Feb 12 at 20:59
@Doug I originally considered that but I have had incompatibilities with that sort of thing in the past and it over complicates the answer so I decided to leave it out.
– user1133275
Feb 12 at 22:23
add a comment |
Can you tell me how to do a loopback test in Linux
ping -c 1 127.0.0.1
, and contrast it with a non-loopback test which tests the same thing (any thing)?
ping -c 1 1.1.1.1
Can you tell me how to do a loopback test in Linux
ping -c 1 127.0.0.1
, and contrast it with a non-loopback test which tests the same thing (any thing)?
ping -c 1 1.1.1.1
edited Feb 12 at 20:26
answered Feb 11 at 16:58
user1133275user1133275
3,570823
3,570823
3
1.1.1.1 is not a loopback address...
– Rui F Ribeiro
Feb 11 at 18:17
@RuiFRibeiro and?
– user1133275
Feb 12 at 20:26
Perhapsping $(ip addr | grep 'inet ' | grep -v 127.0 | awk ' print $2 ' | cut -d/ -f1)
would be more appropriate for the non-loopback test?
– Doug O'Neal
Feb 12 at 20:59
@Doug I originally considered that but I have had incompatibilities with that sort of thing in the past and it over complicates the answer so I decided to leave it out.
– user1133275
Feb 12 at 22:23
add a comment |
3
1.1.1.1 is not a loopback address...
– Rui F Ribeiro
Feb 11 at 18:17
@RuiFRibeiro and?
– user1133275
Feb 12 at 20:26
Perhapsping $(ip addr | grep 'inet ' | grep -v 127.0 | awk ' print $2 ' | cut -d/ -f1)
would be more appropriate for the non-loopback test?
– Doug O'Neal
Feb 12 at 20:59
@Doug I originally considered that but I have had incompatibilities with that sort of thing in the past and it over complicates the answer so I decided to leave it out.
– user1133275
Feb 12 at 22:23
3
3
1.1.1.1 is not a loopback address...
– Rui F Ribeiro
Feb 11 at 18:17
1.1.1.1 is not a loopback address...
– Rui F Ribeiro
Feb 11 at 18:17
@RuiFRibeiro and?
– user1133275
Feb 12 at 20:26
@RuiFRibeiro and?
– user1133275
Feb 12 at 20:26
Perhaps
ping $(ip addr | grep 'inet ' | grep -v 127.0 | awk ' print $2 ' | cut -d/ -f1)
would be more appropriate for the non-loopback test?– Doug O'Neal
Feb 12 at 20:59
Perhaps
ping $(ip addr | grep 'inet ' | grep -v 127.0 | awk ' print $2 ' | cut -d/ -f1)
would be more appropriate for the non-loopback test?– Doug O'Neal
Feb 12 at 20:59
@Doug I originally considered that but I have had incompatibilities with that sort of thing in the past and it over complicates the answer so I decided to leave it out.
– user1133275
Feb 12 at 22:23
@Doug I originally considered that but I have had incompatibilities with that sort of thing in the past and it over complicates the answer so I decided to leave it out.
– user1133275
Feb 12 at 22:23
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f499978%2fhow-can-i-do-a-loopback-test%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
Could you elaborate on what the text refers to as
number
?– Jeff Schaller
Feb 11 at 16:33
1
@JeffSchaller by "number" the book means "IP" (likely written before IPv6).
– user1133275
Feb 11 at 17:01
@user1133275 that seems likely, but since Tim has the source material, I wanted to make sure we were speaking the same language.
– Jeff Schaller
Feb 11 at 17:02