The documentation, which contains similar examples for you, is pretty clear:
The number of parts (each part is separated by a period) in ipString determines how the IP address will be built. The address of one part is stored directly in the network address. A two-part address, convenient for specifying a Class A address, puts the leading role in the first byte and the end part in the right three bytes of the network address. A three-part address, convenient for specifying class B, places the first part in the first byte, the second part in the second byte, and the final part in the rightmost two bytes of the network address.
Number of parts and example ipString IPv4 address for IPAddress ==================================================================== 1 -- "65536" 0.0.255.255 2 -- "20.2" 20.0.0.2 2 -- "20.65535" 20.0.255.255 3 -- "128.1.2" 128.1.0.2
John Koerner Sep 24 2018-12-12T00: 00Z
source share