How to get *internet* IP?

后端 未结 15 2091
刺人心
刺人心 2020-11-29 02:57

Imagine a situation, I have PC with two lan cards, one is connected to internet another is connected to local network, how can I detect IP which is connected to internet wi

15条回答
  •  失恋的感觉
    2020-11-29 03:34

    For a quick hack (that will certainly become broken with elaborate LAN configurations or IPv6), get a list of all IPs the current machine has, and strip out all IP:s that match any of the following:

    10.*
    127.*          // <- Kudos to Brian for spotting the mistake
    172.[16-31].*
    192.168.*
    

提交回复
热议问题