OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / lib / Libnet / test / Ethernet / get_address.c
1 /*
2  *  $Id: get_address.c,v 1.1.1.1 2000/05/25 00:28:49 route Exp $
3  *
4  *  libnet
5  *  get_address.c - Retrieve the MAC and IP address of an interface
6  *
7  *  Copyright (c) 1998, 1999, 2000 Mike D. Schiffman <mike@infonexus.com>
8  *  All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  */
32
33 #if (HAVE_CONFIG_H)
34 #include "../../include/config.h"
35 #endif
36 #include "../libnet_test.h"
37
38 int
39 main(int argc, char *argv[])
40 {
41     int  c;
42     char errbuf[256];
43     char *device = NULL;
44     struct libnet_link_int *l;
45     struct ether_addr *e;
46     u_long i;
47
48     while ((c = getopt(argc, argv, "i:")) != EOF)
49     {
50         switch (c)
51         {
52             case 'i':
53                 device = optarg;
54                 break;
55             default:
56                 exit(EXIT_FAILURE);
57         }
58     }
59
60     if (!device)
61     {
62         fprintf(stderr, "Specify a device\n");
63         exit(EXIT_FAILURE);
64     }
65
66     l = libnet_open_link_interface(device, errbuf);
67     if (!l)
68     {
69         fprintf(stderr, "libnet_open_link_interface: %s\n", errbuf);
70         exit(EXIT_FAILURE);
71     }
72
73     printf("Interface %s\n", device);
74     e = libnet_get_hwaddr(l, device,  errbuf);
75     if (!e)
76     {
77         fprintf(stderr, "Can't get hardware address: %s\n", errbuf);
78         exit(EXIT_FAILURE);
79     }
80     else
81     {
82         printf("MAC address: ");
83         for (c = 0; c < 6; c++)
84         {
85             printf("%x", e->ether_addr_octet[c]);
86             if (c != 5)
87             {
88                 printf(":");
89             }
90         }
91         printf("\n");
92     }
93
94     i = libnet_get_ipaddr(l, device, errbuf);
95     if (!i)
96     {
97         fprintf(stderr, "Can't get ip address: %s\n", errbuf);
98         exit(EXIT_FAILURE);
99     }
100     else
101     {
102         printf("IP  address: ");
103         printf("%s\n", libnet_host_lookup(ntohl(i), 0));
104     }
105     exit(EXIT_SUCCESS);
106 }
107
108 /* EOF */