0
0

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 3 years have passed since last update.

Subnet Maskの正当性Check法

Posted at

サブネットマスクの値が正しいかCheckするアルゴリズム。
整数で扱えるなら言語は選ばないと思う。


int32 mask // 整数で表記
int32 host_block = !mask

if( ( host_block & (host_block + 1) ) == 0 )
    // OK
else
    // NG

境界値は別途手当が必要かも。。

参考:
https://kenyu-life.com/2019/01/15/n_ampersamd_n-1equal0/

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?