我需要获取互联网IP地址。现在我想使用linux终端来获取它,所以我输入“ifconfig”。我通过我的安卓手机通过theter连接,我注意到“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”函数?
答案 0 :(得分:1)
这是一个可能有用的Java代码段:
WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
int ipAddress = wifiInfo.getIpAddress();
答案 1 :(得分: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;
}
参考:Get the ip address of your device
如果你想用C语言获取IP地址,可能这个帖子会有所帮助:
答案 2 :(得分:0)
你的问题有点模糊。您在寻找什么样的IP地址?如果您正在寻找LAN IP,ifconfig
或iwconfig
就足够了。如果您正在寻找WAN IP
wget -qO- http://cmyip.com | grep "My IP Address Is",您应该能够看到您的IP。我不知道您使用的Android终端是否支持
wget
,但值得一试。
答案 3 :(得分: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]