Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. sw14111@OF060VL39VHTD6D:~$ scutil -r 127.0.0.1
  2. Reachable,Local Address,Directly Reachable Address
  3.  
  4. sw14111@OF060VL39VHTD6D:~$ ping 127.0.0.1
  5. PING 127.0.0.1 (127.0.0.1): 56 data bytes
  6. 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.063 ms
  7. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.047 ms
  8. 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.117 ms
  9. 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.073 ms
  10.  
  11. sw14111@OF060VL39VHTD6D:~$ curl -v -x "" localhost:8000
  12. * Rebuilt URL to: localhost:8000/
  13. * Trying ::1...
  14. * TCP_NODELAY set
  15. * Trying 127.0.0.1...
  16. * TCP_NODELAY set
  17. * Connection failed
  18. * connect to ::1 port 8000 failed: Operation timed out
  19. * Trying fe80::1...
  20. * TCP_NODELAY set
  21. * Connection failed
  22. * connect to 127.0.0.1 port 8000 failed: Operation timed out
  23. * Connection failed
  24. * connect to fe80::1 port 8000 failed: Operation timed out
  25. * Failed to connect to localhost port 8000: Operation timed out
  26. * Closing connection 0
  27. curl: (7) Failed to connect to localhost port 8000: Operation timed out
  28.  
  29. traceroute to 127.0.0.1 (127.0.0.1), 64 hops max, 52 byte packets
  30. 1 * * *
  31. 2 * * *
  32. 3 * * *
  33.  
  34. sw14111@OF060VL39VHTD6D:~$ netstat -an | grep 127.0.0.1
  35. tcp4 0 0 127.0.0.1.49679 127.0.0.1.8000 SYN_SENT
  36.  
  37. ##
  38. ##
  39. # Host Database
  40. #
  41. # localhost is used to configure the loopback interface
  42. # when the system is booting. Do not change this entry.
  43. ##
  44. 127.0.0.1 localhost
  45. 255.255.255.255 broadcasthost
  46. ::1 localhost
  47. fe80::1%lo0 localhost
  48.  
  49. lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
  50. options=1203<RXCSUM,TXCSUM,TXSTATUS,SW_TIMESTAMP>
  51. inet 127.0.0.1 netmask 0xff000000
  52. inet6 ::1 prefixlen 128
  53. inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
  54. nd6 options=201<PERFORMNUD,DAD>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement