程式以 C 語言顯示主機名和 IP 地址


在本部分中,我們將學習如何輕鬆檢視到本地系統的主機名和 IP 地址。我們將編寫一個 C 程式來查詢主機名和 IP。

我們使用了以下幾個函式。這些函式有不同的任務。讓我們瞭解一下這些函式及其任務。

函式描述
gethostname()查詢本地計算機的標準主機名。
gethostbyname()從主機資料庫中查詢與主機名相對應的主機資訊
iten_ntoa()將 IPv4 Internet 網路地址轉換為點分十進位制格式的 ASCII 字串。

示例

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <netdb.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
void check_host_name(int hostname) { //This function returns host name for local computer
   if (hostname == -1) {
      perror("gethostname");
      exit(1);
   }
}
void check_host_entry(struct hostent * hostentry) { //find host info from host name
   if (hostentry == NULL) {
      perror("gethostbyname");
      exit(1);
   }
}
void IP_formatter(char *IPbuffer) { //convert IP string to dotted decimal format
   if (NULL == IPbuffer) {
      perror("inet_ntoa");
      exit(1);
   }
}
main() {
   char host[256];
   char *IP;
   struct hostent *host_entry;
   int hostname;
   hostname = gethostname(host, sizeof(host)); //find the host name
   check_host_name(hostname);
   host_entry = gethostbyname(host); //find host information
   check_host_entry(host_entry);
   IP = inet_ntoa(*((struct in_addr*) host_entry->h_addr_list[0])); //Convert into IP string
   printf("Current Host Name: %s
", host);    printf("Host IP: %s
", IP); }

輸出

Current Host Name: soumyadeep-VirtualBox
Host IP: 127.0.1.1

更新於: 2019-07-30

400 次瀏覽

開啟你的 職業

完成課程可獲得認證

開始
廣告
© . All rights reserved.