2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

IPアドレスとネットワークアドレス

Last updated at Posted at 2013-03-05

ネットマスクとはその名の通り IPv4 アドレスのうち、どこまでのビットがネットワークアドレスなのかを示している値なので、IPv4 アドレスとネットマスクの論理和はネットワークアドレスとなる。
従って、取得した論理和とネットワークアドレスが等しい場合は IPv4 アドレスはネットワークに属す事になる。

C で実装する場合はこんな感じ。

sample.c
/*
 * network: ネットワークアドレス
 * netmask: ネットマスク
 * ipaddr:  IPアドレス
 */ 
int     checkAddr(const char *network, const char *netmask, const char *ipaddr)
{

    struct  in_addr net,
                    mask,
                    addr;

    if(inet_aton(network, &net) &&
            inet_aton(netmask, &mask) &&
            inet_aton(ipaddr, &addr))
        return((addr.s_addr & mask.s_addr) == (net.s_addr & mask.s_addr));
    else
        return(0);

}
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?