-1

我需要获取互联网 IP 地址。现在我想使用 linux 终端来获取它,所以我输入“ifconfig”。我的 android 手机通过 thetering 连接,我注意到“ifconfig”的输出中没有我的互联网 IP 地址。

usb0      Link encap:Ethernet  HWaddr 6a:22:38:4d:92:36  
          indirizzo inet:192.168.42.79  Bcast:192.168.42.255  Maschera:255.255.255.0
          indirizzo inet6: fe80::6822:38ff:fe4d:9236/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:31359 errors:4 dropped:0 overruns:0 frame:4
          TX packets:27688 errors:0 dropped:0 overruns:0 carrier:0
          collisioni:0 txqueuelen:1000 
          Byte RX:30033107 (30.0 MB)  Byte TX:4855114 (4.8 MB)

这是命令“ifconfig”的输出。有没有一种通用的方法来获取 IP 地址,通过脚本命令或“c”函数?

4

4 回答 4

1

Here's a Java snippet that might help:

WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
int ipAddress = wifiInfo.getIpAddress();
于 2012-08-12T22:23:25.770 回答
0

下面是通过 Java 代码获取 IP 地址的代码(无论是通过 3G 还是 WIFI 连接)

public String getLocalIpAddress() {
    try {
        for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {
            NetworkInterface intf = en.nextElement();
            for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {
                InetAddress inetAddress = enumIpAddr.nextElement();
                if (!inetAddress.isLoopbackAddress()) {
                    return inetAddress.getHostAddress().toString();
                }
            }
        }
    } catch (SocketException ex) {
        Log.e(LOG_TAG, ex.toString());
    }
    return null;
}

参考:获取你设备的ip地址

如果你想在 C 中获取 IP 地址,这个线程可能会有所帮助:

使用 C 代码获取与 ifconfig 相同的信息

于 2012-08-13T00:18:31.570 回答
0

你的问题有点含糊。您在寻找什么样的 IP 地址?如果您正在寻找您的 LAN IP,ifconfig或者iwconfig就足够了。如果您正在寻找 WAN IP 使用

wget -qO- http://cmyip.com | grep "我的 IP 地址是"
你应该能够看到你的IP。我不知道你使用的安卓终端是否支持wget,但值得一试。

于 2012-08-13T02:07:11.453 回答
0

"inet:" 之后的 IP 地址,即 192.168.42.79 是您的 IP 地址。但是,话虽这么说,最短的python脚本是......

#!/usr/bin/python

import socket

s=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('google.com',80))
return s.getsockname()[0]
于 2012-08-13T02:36:08.510 回答