为了能够在不同平台上获得本机的IP地址,按照boost的例子写了一个
获取本地IP的测试程序 getip。
#include <boost/asio.hpp>
#include <iostream>
using boost::asio::ip::tcp;
main() {
boost::asio::io_service io_service;
tcp::resolver resolver(io_service);
tcp::resolver::query query(boost::asio::ip::host_name(), "");
tcp::resolver::iterator iter = resolver.resolve(query);
tcp::resolver::iterator end; // End marker.
while (iter != end)
{
tcp::endpoint ep = *iter++;
std::cout << ep.address().to_string() << std::endl;
}
}
在用于开发的PC_A上运行正常。然而,当将之移到另一台Linux PC_B上报如下
错误。
terminate called after throwing an instance of 'boost::exception_detail::clone_
impl<boost::exception_detail::error_info_injector<boost::system::system_error>
>'
what(): reslolve: Host not found (non-authoritative), try again later
比较了两台机器的差别,在于PC_A上没有设定 hostname,所以其hostname是 localhost.localdomain,
而 PC_B被设定为 MYHOST.
尝试在 PC A 上运行命令
hostname MYHOST
后,再次运行 getip, 重现了在 PC B 上的现象。
解决办法是在 /etc/hosts 上增加一行
123.123.123.123 MYHOST
用于指定一个 IP 与 MYHOST的对应关系。
现在运行 getip 又正常了。