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 又正常了。

为了能够在不同平台上获得本机的IP地址,按照boost的例子写了一个获取本地IP的测试程序 getip。 #include #include using boost::asio::ip::tcp;main() { boost::asio::io_service io_service; tcp::resolver resolver(io_servi // Boost others network function.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 #include &lt;iostream&gt; #include &lt; boost / asio .hpp&gt; #include... 帮客户新建了vSphere7的新环境,需要将vCenter6.5上面的虚拟机迁移至最新环境。由于vSphere7已经自带Cross vCenter Workload Migration Utility插件,跨vCenter迁移很方便了。 vCenter版本:7.0u2b ESXi版本:7.0u2a vCenter地址:https://vcsa.test.local vCenter版本:6.5 ESXi版本:6.5 vCenter地址:https://192.168.1 select 实在是太慢了. 在这种背景下, IBM 老大哥带领着MS老弟先搞了 IOCP . 然而开源的人有开源的做法, 在 NIH 综合症的影响下, BSD 的人敢为天下所不齿, 发明了 Kqueue. 同样在 NIH 综合症影响下, Linux 的一群 M* 的猴子捣鼓出了 epoll. 分裂, 让人头疼.
对于 IP 地址的处理, Boost . Asio 提供了 ip ::address , ip ::address_v4和 ip ::address_v6类。 它们提供了相当多的函数。下面列出了最重要的几个: ip ::address(v4_or_v6_address):这个函数把一个v4或者v6的地址转换成 ip ::address ip ::address:from_string(str):这个函数根据一个 IP v4地址
#include <WinSock2.h> #include < Ip hlpapi.h> #pragma comment(lib," Ip hlpapi.lib") //需要添加 Ip hlpapi.lib库 #endif std::vector<std::string> getLocalMachineNetworkAdapterList() pcap_if