ipv4
Extension for asserting IPv4 addresses
isInSubnet
Returns true is the supplied IP belongs to the supplied subnet in CIDR notation.
Use this function to assert that a client belongs to a specific network.
IP-addresses should be octets in dotted-string format: '192.168.30.5'
Subnets are specified using CIDR notation containing an ip and the length of the subnet mask: '10.1.1.0/24'
Syntax
ipv4.isInSubnet(ip, subnet)
Arguments
Name | Type | Description |
---|---|---|
|
| The IP-address in octets |
|
| The subnet in CIDR-notation |
Example
Last updated