如何在C ++中查找用户的外部IP?我需要一种适用于任何系统的方法,而不仅仅是我的系统。此外,系统可能位于路由器后面,因此NAT会起作用,使得检索外部IP变得更加困难。
理想情况下,我想在不使用任何第三方服务(如whatsmyip)的情况下这样做。但是,我不确定这是否可行。如果我不使用第三方服务,我必须通过路由器,如果ping被禁用,我猜这可能是不可能的(我可能是错的,不太确定)。
如果我要使用像whatsmyip这样的第三方服务,我该怎么办呢?是否有他们公开的Web服务?我看过这个链接:http://automation.whatismyip.com/n09230945.asp但它似乎没有用。 是否可以通过使用某些HTTP方法获取外部IP并检索它,或者我是否有效地需要刮取页面以从中获取IP?
我只能使用Windows API来完成此任务(没有第三方API)
答案 0 :(得分:1)
这与C ++或任何特定语言无关。
此外,知道路由器的地址对你没有多大好处,你会知道它的NAT地址,而不是它的外部地址,它你的路由器也可能不是去往互联网的最后一个路由器。
你必须使用外部实体 - 通常是某种类型的网络服务,它将报告与之联系的路由器的IP地址。这是一个有人询问如何在PHP中获取客户端IP地址。
答案 1 :(得分:1)
这是winsock方式。它只是提取服务器发送的HTML代码中嵌入的IP地址。
此代码使用http://api.ipify.org/。
以下是两个不同的代码。一个用于VS2012-2015,使用strcpy_s( )
,一个用于使用strcpy( )
的Visual C ++ 6.0,因为VS2012-2015会抛出一条错误消息,提示您使用strcpy_s( )
而不是strcpy( )
Visual Studio 2012-2015代码。
#include "stdafx.h"
#include <string.h>
#include <winsock2.h>
#include <windows.h>
#include <iostream>
#include <vector>
#include <locale>
#include <sstream>
using namespace std;
#pragma comment(lib,"ws2_32.lib")
string website_HTML;
locale local;
void get_Website(string url);
char lineBuffer[200][80] = { ' ' };
char buffer[10000];
char ip_address[16];
int i = 0, bufLen = 0, j = 0, lineCount = 0;
int lineIndex = 0, posIndex = 0;
//****************************************************
int main(void){
cout << "\n\n\n";
get_Website("api.ipify.org");
for (size_t i = 0; i<website_HTML.length(); ++i) website_HTML[i] = tolower(website_HTML[i], local);
istringstream ss(website_HTML);
string stoken;
while (getline(ss, stoken, '\n')) {
//cout <<"-->"<< stoken.c_str() << '\n';
strcpy_s(lineBuffer[lineIndex], stoken.c_str());
int dot = 0;
for (int ii = 0; ii< strlen(lineBuffer[lineIndex]); ii++){
if (lineBuffer[lineIndex][ii] == '.') dot++;
if (dot >= 3){
dot = 0;
strcpy_s(ip_address, lineBuffer[lineIndex]);
}
}
lineIndex++;
}
cout << "Your IP Address is " << ip_address << " \n\n";
cout << "\nPress ANY key to close.\n\n";
cin.ignore(); cin.get();
return 0;
}
//****************************************************
void get_Website(string url){
WSADATA wsaData;
SOCKET Socket;
SOCKADDR_IN SockAddr;
int lineCount = 0;
int rowCount = 0;
struct hostent *host;
string get_http;
get_http = "GET / HTTP/1.1\r\nHost: " + url + "\r\nConnection: close\r\n\r\n";
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0){
cout << "WSAStartup failed.\n";
system("pause");
//return 1;
}
Socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
host = gethostbyname(url.c_str());
SockAddr.sin_port = htons(80);
SockAddr.sin_family = AF_INET;
SockAddr.sin_addr.s_addr = *((unsigned long*)host->h_addr);
if (connect(Socket, (SOCKADDR*)(&SockAddr), sizeof(SockAddr)) != 0){
cout << "Could not connect";
system("pause");
//return 1;
}
send(Socket, get_http.c_str(), strlen(get_http.c_str()), 0);
int nDataLength;
while ((nDataLength = recv(Socket, buffer, 10000, 0)) > 0){
int i = 0;
while (buffer[i] >= 32 || buffer[i] == '\n' || buffer[i] == '\r'){
website_HTML += buffer[i];
i += 1;
}
}
closesocket(Socket);
WSACleanup();
}
Visual C ++ 6.0代码
#include <string.h>
#include <winsock2.h>
#include <windows.h>
#include <iostream>
#include <vector>
#include <locale>
#include <sstream>
using namespace std;
#pragma comment(lib,"ws2_32.lib")
string website_HTML;
locale local;
void get_Website(string url );
char lineBuffer[200][80] ={' '};
char buffer[10000];
char ip_address[16];
int i = 0, bufLen=0, j=0,lineCount=0;
int lineIndex=0, posIndex=0;
//****************************************************
int main( void ){
cout << "\n\n\n";
get_Website("api.ipify.org" );
for (size_t i=0; i<website_HTML.length(); ++i) website_HTML[i]= tolower(website_HTML[i],local);
istringstream ss(website_HTML);
string stoken;
while(getline(ss, stoken, '\n')) {
strcpy(lineBuffer[lineIndex],stoken.c_str());
int dot=0;
for (int ii=0; ii< strlen( lineBuffer[lineIndex] ); ii++ ){
if (lineBuffer[lineIndex][ii] == '.') dot++;
if (dot>=3){
dot=0;
strcpy(ip_address,lineBuffer[lineIndex]);
}
}
lineIndex++;
}
cout<<"Your IP Address is "<< ip_address<<" \n\n";
cout<<"\nPress ANY key to close.\n\n";
cin.ignore(); cin.get();
return 0;
}
//****************************************************
void get_Website(string url ){
WSADATA wsaData;
SOCKET Socket;
SOCKADDR_IN SockAddr;
int lineCount=0;
int rowCount=0;
struct hostent *host;
string get_http;
get_http = "GET / HTTP/1.1\r\nHost: " + url + "\r\nConnection: close\r\n\r\n";
if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0){
cout << "WSAStartup failed.\n";
system("pause");
//return 1;
}
Socket=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
host = gethostbyname(url.c_str());
SockAddr.sin_port=htons(80);
SockAddr.sin_family=AF_INET;
SockAddr.sin_addr.s_addr = *((unsigned long*)host->h_addr);
if(connect(Socket,(SOCKADDR*)(&SockAddr),sizeof(SockAddr)) != 0){
cout << "Could not connect";
system("pause");
//return 1;
}
send(Socket,get_http.c_str(), strlen(get_http.c_str()),0 );
int nDataLength;
while ((nDataLength = recv(Socket,buffer,10000,0)) > 0){
int i = 0;
while (buffer[i] >= 32 || buffer[i] == '\n' || buffer[i] == '\r'){
website_HTML+=buffer[i];
i += 1;
}
}
closesocket(Socket);
WSACleanup();
}
答案 2 :(得分:1)
理论上,您可以使用Windows uPnP API执行此操作。您首先使用UPnPDeviceFinder
枚举Internet网关设备。然后你得到一个IUPnPRemoteEndpointInfo
的网关(好吧,通常只有一个),然后调用它的GetStringValue
,传递一个包含"RemoteAddress"
的字符串来获取它远程地址(我认为表示其外部地址,但我承认我并不完全确定)。哦,因为这是COM,它必须是系统字符串,而不是普通的字符串。
从外部提供商获取IP更容易批次。如果不使用任何3个 rd 派对库,它的代码如下所示:
#include <windows.h>
#include <wininet.h>
#include <string>
#include <iostream>
std::string real_ip() {
HINTERNET net = InternetOpen("IP retriever",
INTERNET_OPEN_TYPE_PRECONFIG,
NULL,
NULL,
0);
HINTERNET conn = InternetOpenUrl(net,
"http://myexternalip.com/raw",
NULL,
0,
INTERNET_FLAG_RELOAD,
0);
char buffer[4096];
DWORD read;
InternetReadFile(conn, buffer, sizeof(buffer)/sizeof(buffer[0]), &read);
InternetCloseHandle(net);
return std::string(buffer, read);
}
int main() {
std::cout << real_ip() << "\n";
}
编译:
cl ip_addr.cpp wininet.lib
注意:如果您的计算机配置为使用IPv6,则可以(并将)检索您的IPv6地址。
答案 3 :(得分:0)
您可以使用curl或curlpp等库来获取http://myexternalip.com/raw的内容。它的响应只是你的外部ip,你可以阅读和使用它。