How can I check what is my ip on any particular endpoint?

NotGaeL

I know I can do curl curlmyip.com or something like that, but that just shows me the ip curlmyip.com is seeing.

Is there any tool I can use that tells me what's my ip on the endpoint for any TCP connection endpoint (not just curlmyip.com)?

omercnet

The Internet Protocol does not have an inherit way of disclosing the address of either party

If you have control over those endpoints you could set up such as service, or simply capture an ICMP echo (ping) on the remote endpoint to see what IP it's being presented with

Another solution would be to use netcat to open a simple server and connect to it, when running with a verbose switch it will display information about the connected peer

server:~# nc -lvp 1234
Listening on [0.0.0.0] (family 0, port 1234)
Connection from [127.0.0.1] port 1234 [tcp/*] accepted (family 2, sport 42852)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I check my SSD without any OS installed?

From Dev

how can I type check this particular function?

From Dev

How can i check what the coordinates of a specific object on my map is?

From Dev

How can i check if i have a particular format

From Dev

How can I set a static IP on my IoT device and have if work on any network automatically

From Dev

How can i check if my host command in script got a valid ip

From Dev

In R, how can I check whether a list contains a particular key?

From Dev

how can I check a particular gcc feature in configure.ac

From Dev

How can I check if a string ends with a particular substring in Liquid?

From Dev

How can I check if a particular partition ext4 is journaled?

From Dev

How can i check if a particular process is a critical process?

From Dev

How can I tell Tesseract that my font has a particular size?

From Dev

How can I jump to a particular window, no matter what workspace it's on?

From Dev

How can i make a button that pastes what's on my clipboard to any location?

From Dev

How to get *my* ip from udp endpoint

From Dev

How can I check if my AVPlayer is buffering?

From Dev

How can I check RAM of my laptop?

From Dev

How can I check what csrf token is my rails controller expecting?

From Dev

Can I check what policies are being applied to a particular security group in ADUC?

From Dev

How can I figure out what IPv6 to use if I want to set a static IP for my computer?

From Dev

How do I allow access to my Mule flow only for a particular set of IP addresses?

From Dev

What can I do about my site being blocked by a particular server?

From Dev

How do i check if the numbers in my JTable Column is lesser than a specified no and display only that particular row

From Dev

How can I check latest available version of Symfony with any API?

From Dev

How can I check if there are any common bits between two bitmasks?

From Dev

How can I check if an ArrayList contains any element of another ArrayList?

From Dev

How can I check if any button of a two dimensional array was clicked?

From Dev

How Can I Check If Any IF Block Executed In SQL Server

From Dev

How can I check if rsync made any changes in bash?

Related Related

  1. 1

    How can I check my SSD without any OS installed?

  2. 2

    how can I type check this particular function?

  3. 3

    How can i check what the coordinates of a specific object on my map is?

  4. 4

    How can i check if i have a particular format

  5. 5

    How can I set a static IP on my IoT device and have if work on any network automatically

  6. 6

    How can i check if my host command in script got a valid ip

  7. 7

    In R, how can I check whether a list contains a particular key?

  8. 8

    how can I check a particular gcc feature in configure.ac

  9. 9

    How can I check if a string ends with a particular substring in Liquid?

  10. 10

    How can I check if a particular partition ext4 is journaled?

  11. 11

    How can i check if a particular process is a critical process?

  12. 12

    How can I tell Tesseract that my font has a particular size?

  13. 13

    How can I jump to a particular window, no matter what workspace it's on?

  14. 14

    How can i make a button that pastes what's on my clipboard to any location?

  15. 15

    How to get *my* ip from udp endpoint

  16. 16

    How can I check if my AVPlayer is buffering?

  17. 17

    How can I check RAM of my laptop?

  18. 18

    How can I check what csrf token is my rails controller expecting?

  19. 19

    Can I check what policies are being applied to a particular security group in ADUC?

  20. 20

    How can I figure out what IPv6 to use if I want to set a static IP for my computer?

  21. 21

    How do I allow access to my Mule flow only for a particular set of IP addresses?

  22. 22

    What can I do about my site being blocked by a particular server?

  23. 23

    How do i check if the numbers in my JTable Column is lesser than a specified no and display only that particular row

  24. 24

    How can I check latest available version of Symfony with any API?

  25. 25

    How can I check if there are any common bits between two bitmasks?

  26. 26

    How can I check if an ArrayList contains any element of another ArrayList?

  27. 27

    How can I check if any button of a two dimensional array was clicked?

  28. 28

    How Can I Check If Any IF Block Executed In SQL Server

  29. 29

    How can I check if rsync made any changes in bash?

HotTag

Archive