使用gethostname()函数和gethostbyname()函数获取主机相关信息

from http://ty1992.blog.51cto.com/7098269/1685880

gethostname() : 返回本地主机的标准主机名。

原型如下:

#include <unistd.h>

int gethostname(char *name, size_t len);

参数说明:

这个函数需要两个参数:

接收缓冲区name,其长度必须为len字节或是更长,存获得的主机名。

接收缓冲区name的最大长度

返回值:

如果函数成功,则返回0。如果发生错误则返回-1。错误号存放在外部变量errno中。

gethostbyname()函数说明——用域名或主机名获取IP地址
    包含头文件
    #include <netdb.h>
    #include <sys/socket.h>

函数原型
    struct hostent *gethostbyname(const char *name);
    这个函数的传入值是域名或者主机名,例如"www.google.cn"等等。传出值,是一个hostent的结构。如果函数调用失败,将返回NULL。

返回hostent结构体类型指针


1

2

3

4

5

6

7

8

   struct hostent {

               char  *h_name;            /* official name of host */

               char **h_aliases;         /* alias list */

               int    h_addrtype;        /* host address type */

               int    h_length;          /* length of address */

               char **h_addr_list;       /* list of addresses */

           }

           #define h_addr h_addr_list[0] /* for backward compatibility */

hostent->h_name
    表示的是主机的规范名。例如www.google.com的规范名其实是www.l.google.com。
    
    hostent->h_aliases
    表示的是主机的别名.www.google.com就是google他自己的别名。有的时候,有的主机可能有好几个别名,这些,其实都是为了易于用户记忆而为自己的网站多取的名字。

hostent->h_addrtype    
    表示的是主机ip地址的类型,到底是ipv4(AF_INET),还是pv6(AF_INET6)

hostent->h_length      
    表示的是主机ip地址的长度

hostent->h_addr_lisst
    表示的是主机的ip地址,注意,这个是以网络字节序存储的。千万不要直接用printf带%s参数来打这个东西,会有问题的哇。所以到真正需要打印出这个IP的话,需要调用inet_ntop()。

const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt) :
    这个函数,是将类型为af的网络地址结构src,转换成主机序的字符串形式,存放在长度为cnt的字符串中。返回指向dst的一个指针。如果函数调用错误,返回值是NULL。

实例如下:


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

#include <stdio.h>

#include <sys/socket.h>

#include <netdb.h>

#include <unistd.h>

#include <netinet/in.h>

#include <arpa/inet.h>

#include <stdlib.h>

void handler(int sig){

        printf("recv a sig=%d\n",sig);

                exit(EXIT_SUCCESS);

}

#define ERR_EXIT(m) \

        do{ \

                perror(m); \

                exit(EXIT_FAILURE);\

        }while(0);

int main(void)

{

        char host[100] = {0};

         if(gethostname(host,sizeof(host)) < 0){

                ERR_EXIT("gethostname");

        }

        struct hostent *hp;

        if ((hp=gethostbyname(host)) == NULL){

                ERR_EXIT("gethostbyname");

        }

        int i = 0;

        while(hp->h_addr_list[i] != NULL)

        {

                printf("hostname: %s\n",hp->h_name);

                printf("      ip: %s\n",inet_ntoa(*(struct in_addr*)hp->h_addr_list[i]));

                i++;

        }

        return 0;

}

编译运行
-----------------------------
# gcc -o getinfo getinfo.c
# ./getinfo

hostname: www.server1.com

ip: 69.172.201.208

注意:试验时主机名要是域名格式(如www.server1.com,若函数为server1时gethostbuname函数返回为NULL),gethostbyname()函数才能获取到信息,否则返回NULL

本文出自 “划舞鱼” 博客,请务必保留此出处http://ty1992.blog.51cto.com/7098269/1685880

时间: 2024-10-21 00:55:39

使用gethostname()函数和gethostbyname()函数获取主机相关信息的相关文章

使用gethostnam()函数和gethostbyname()函数获取主机相关信息

gethostname() : 返回本地主机的标准主机名. 原型如下: #include <unistd.h> int gethostname(char *name, size_t len); 参数说明: 这个函数需要两个参数: 接收缓冲区name,其长度必须为len字节或是更长,存获得的主机名. 接收缓冲区name的最大长度 返回值: 如果函数成功,则返回0.如果发生错误则返回-1.错误号存放在外部变量errno中. gethostbyname()函数说明--用域名或主机名获取IP地址  

获取主机相关信息脚本

考核内容 awk 编辑文件抓取ip信息抓取登录用户执行脚本 原文地址:https://blog.51cto.com/14190777/2434108

使用WMI编程获取主机硬件信息(CPU_ID,硬盘、主板、BIOS序列号,Mac地址)

最近在公司实习,有个应用需要获取windows主机的一些硬件信息,在网上查阅了一些资料,大部分都是使用WMI编程来实现的. 因此小菜鸟自己也用WMI实现了一下,封装为函数GetUserInfo(),具体代码如下: 头文件UserInfo.h: 1 #pragma once 2 #include "stdafx.h" 3 #define _WIN32_DCOM 4 #include <comdef.h> 5 #include <Wbemidl.h> 6 # pra

PHP获取手机相关信息

该PHP操作类实现获取手机号手机头信息,取UA,取得手机类型,判断是否是opera,判断是否是m3gate,取得HA,取得手机IP 代码如下: <?php /** * @desc 手机操作类 获取手机相关信息 * @since */class mobile { /** * 函数名称: getPhoneNumber * 函数功能: 取手机号 * 输入参数: none * 函数返回值: 成功返回号码,失败返回false * 其它说明: 说明 */ public function getPhoneNu

nagios数据库 主机相关信息查询

mysql> select a.host_object_id,a.display_name,a.address,b.hostgroup_id,b.alias from nagios_hosts a,nagios_hostgroups b,nagios_hostgroup_members c where c.host_object_id=a.host_object_id and c.hostgroup_id=b.hostgroup_id order by b.hostgroup_id;+-----

获取IP相关信息和文件上传

获取IP相关信息 要获取用户访问者的IP地址相关信息,可以利用依赖注入,获取IHttpConnectionFeature的实例,从该实例上可以获取IP地址的相关信息,实例如下: var connection1 = Request.HttpContext.GetFeature<IHttpConnectionFeature>(); var connection2 = Context.GetFeature<IHttpConnectionFeature>(); var isLocal =

Linux sysinfo获取系统相关信息

Linux中,可以用sysinfo来获取系统相关信息. #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <linux/unistd.h> /* for _syscallX macros/related stuff */ #include <linux/kernel.h> /* for struct sysinfo */ //_syscall1(int, sysi

借助Sigar API获取CPU相关信息

Sigar(全称System Information Gatherer And Reporter,即系统信息收集报表器),它提供了一个开源的跨平台的收集计算机硬件和操作系统信息的API(该API底层接口用C语言编写),本文将演示如何借助Sigar API获取CPU相关信息: package com.ghj.packageoftest; import org.hyperic.sigar.Cpu; import org.hyperic.sigar.CpuInfo; import org.hyperi

Web后台获取服务器相关信息

talk is cheap show me the code ! //获取当前网站信息    private function getWebinfo(){        $model = new \Think\Model();        $v = $model->query("select VERSION() as ver");        $mysqlver = $v[0]['ver']; $info = array(            '操作系统'=>PHP_