Does pinging 127.0.0.1 work on your machine if it's not on the network?
Can these two machine be on the same network?
machine A (192.168.173.11)
machine B (192.168.163.11)
|
Does pinging Can these two machine be on the same network?
|
||||
|
|
|
Yes, 127.0.0.1 is called loopback network and is always available. This address points to the machine itself. EDIT: To answer the second part of the question: Yes, machines A and B can be on the same network (but NOT the same as 127.0.0.1, while loopback is virtual) if the netmask is set properly. Use IP calculator to get what you need. |
|||||||||||||||||
|
|
|||||||||||||||||
|
|
Yes, pinging 127.0.0.1 works if you're not plugged in. Those addresses can be on the same network, but it depends on some other things on whether or not they actually are. They might be on different subnets. What are the subnet masks on the machines? |
|||
|
|
|
You can ping 127.0.0.1 if a computer is not connected to a network. Machine A and B can both be on the same network, as their IPs are different. Assuming a 24-bit subnet mask, they are on different subnets though, so you will need routing between the subnets in order for them to communicate. |
|||||
|
|
Kernel firewall packet filtering could be used to prevent ICMP packets from hitting loopback. In which case a ping would appear to fail (although the interface would still be up). You could theoretically take it down, but then you would disable sockets. You'd have a seriously stripped down box that would boot up without loopback. It would resemble... MS-DOS! |
|||
|
|
|
Yes, you can. In the PC world, 127.0.0.1 is the "loopback" address. On each network card, there is actually a circuit which "loops back" to the network interface, which allows you to test sending/receiving traffic without traffic actually leaving the card. It also allows you to connect to local network services without placing any load onto whatever switch you are connected to. In switches and routing equipment you can actually define the loopback address as any ip address you like, but the functionality is the same. |
|||
|
|