首先要成功安装Centos操作系统,最新版本是Centos?6.4版本,最小化安装。 [root@localhost named]# ifconfig -a eth1 ? ? ?Link encap:Ethernet ?HWaddr 00:15:5D:01:69:2C ? ? ? ? ? ? inet addr:19...
分类:
其他好文 时间:
2014-08-19 22:35:46
阅读次数:
847
在指定端口监听
下面的程序会在7905端口持续监听,其他的什么也不做
#include
using namespace std;
#include "ace/INET_Addr.h"
#include "ace/Svc_Handler.h"
#include "ace/SOCK_Stream.h"
#include "ace/SOCK_Acceptor.h"
#include "ace/Ac...
分类:
其他好文 时间:
2014-08-04 14:30:07
阅读次数:
256
问题:写了一个程序,尝试在21端口监听,结果在执行bind的时候失败了。sockaddr_in sock_addr;sock_addr.sin_family = AF_INET;sock_addr.sin_addr.s_addr = host_inet_addr;sock_addr.sin_port...
分类:
系统相关 时间:
2014-07-28 14:42:33
阅读次数:
291
inet_addr() inet_ntoa() 及其自实现函数self_inet_ntoa() 和 self_inet_addr()笔记...
分类:
Web程序 时间:
2014-07-10 22:00:44
阅读次数:
638
法1:cut[root@oldboy oldboy]# ifconfig eth0|grep 'inet addr'|cut -d ":" -f2|cut -d " " -f110.0.0.162法2:awk[root@oldboy oldboy]# ifconfig eth0|grep 'inet...
分类:
系统相关 时间:
2014-06-17 21:23:57
阅读次数:
357
转载自:http://blog.chinaunix.net/uid-10298232-id-2964557.html 网络字节转换inet_aton &
inet_ntoa & inet_addr和inet_pton 分类: LINUXinet_aton,inet_addr和inet_ntoa在点分...
分类:
其他好文 时间:
2014-06-02 20:51:05
阅读次数:
235
ifconfig |grep "inet addr"|cut -f 2 -d":"|cut
-f 1 -d " "|head -n 1ifconfigeth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx
inet addr:192.168.1.100 ....
分类:
系统相关 时间:
2014-05-29 20:55:58
阅读次数:
435
1. scoket函数中PF_INET
AF_INET区别在UNIX系列中,PF_INET表示poxis, BSD系列用AF_INET2. in_addr_t inet_addr(const char
*cp);入参是字符型ip,in_addr_t 为uint32_t3. if (setsockop...
分类:
系统相关 时间:
2014-05-24 00:20:02
阅读次数:
401
在进行IP地址字符串与网络字节序转换时,应用inet_pton,inet_ntop函数,这两个函数对IPv4和IPv6都适用;而inet_aton,inet_ntoa,inet_addr只适用于IPv4,应该少用。
分类:
其他好文 时间:
2014-05-17 21:47:13
阅读次数:
264
一、通过命令查看,也就是在上一篇文章中介绍的一个命令:ifconfig
示例一:
[root@desktop40 ~]# ifconfig
br0 Link encap:Ethernet HWaddr 00:0C:29:4E:5B:F2
inet addr:192.168.1.131 Bcast:192.168.1.255 Mask:255.255...
分类:
其他好文 时间:
2014-05-11 02:33:47
阅读次数:
459