CIDR結合


Classless Inter-Domain Routing Merger

入力: 
出力:

説明


連続する、或いは、重複する複数のCIDRをマージするツールです。現在は250行まで処理受付。
サブネットマスクはビット数指定のみの対応です。

例:
  192.168.0.0/24  (入力可能な形式)
  192.168.0.0/255.255.255.0  (入力不可な形式)
  192.168.0.2/24   (ネットワークアドレスではないので無効)

ネットワークアドレス以外に単独のIPアドレスも指定できます。
IPアドレスを指定した場合は/32として扱われます。
1行につき1つIPアドレスまたは1つのネットワークアドレスを入力します。
半角の空白は削除されます。
不正なIPアドレスまたはネットワークアドレス、IPアドレスまたはネットワークアドレス以外の文字が入力された場合はその行を「無効: 」として出力します。
ネットワークアドレスが間違っている場合は「無効CIDR」とした上で「もしかして」で推測による正しいCIDRの候補を挙げます。

マージ例:
192.168.0.0/24 192.168.1.0/24をマージすると192.168.0.0/23になります。
192.168.1.0/24 192.168.0.0/22をマージすると192.168.1.0/24は192.168.0.0/22に内包されるので192.168.0.0/22になります。

A tool to merge multiple consecutive or overlapping CIDRs. Up to 250 lines are currently accepted for processing.
The subnet mask only supports specifying the number of bits.

example:
  192.168.0.0/24   (enterable format)
  192.168.0.0/255.255.255.0   (format that cannot be entered)
  192.168.0.2/24   (not a network address, so invalid)

A single IP address can also be specified in addition to the network address.
If you specify an IP address, it will be treated as /32.
Enter one IP address or one network address per line.
Single-byte spaces are removed.
If an invalid IP address or network address, or a character other than an IP address or network address is entered, that line will be output as "Invalid:".
If the network address is incorrect, set it to "Invalid CIDR" and then select "Maybe" to suggest a correct CIDR based on guesses.

Merge example:
192.168.0.0/24 192.168.1.0/24 merges to 192.168.0.0/23.
Merging 192.168.1.0/24 192.168.0.0/22 results in 192.168.0.0/22 because 192.168.1.0/24 is included in 192.168.0.0/22.