masklen()

返回网络掩码长度的函数

masklen() 是一个系统函数,返回提供的 IP 地址的网络掩码长度(以位为单位)。

masklen()PostgreSQL 6.4 中添加。

用法

masklen ( inet ) → integer

如果提供无效值,则会引发 ERROR

更改历史记录

示例

masklen() 的基本用法示例

postgres=# SELECT masklen('192.168.1.2/24');
 masklen 
---------
      24
(1 row)

如果提供的地址不包含网络掩码,则返回 32

postgres=# SELECT masklen('192.168.1.2');
 masklen 
---------
      32
(1 row)

如果提供无效地址,则会引发 ERROR

postgres=# SELECT masklen('192.168.1.2/99');
ERROR:  invalid input syntax for type inet: "192.168.1.2/99"
LINE 1: SELECT masklen('192.168.1.2/99');

分类

网络系统函数

另请参阅

netmask()host()broadcast()abbrev()

反馈

提交任何关于 "masklen()" 的评论、建议或更正 在此