IP address field type
Summarize
Summary of IP Address Field Type
The IP Address (Validated IPV4, IPV6) field type in ServiceNow is designed to store valid IPv4 and IPv6 addresses. It supports standard dot-decimal notation for IPv4 and standard hex notation for IPv6, including canonical notation for compressing zeros. Familiarity with IETF RFC5952 is recommended for proper text representation.
Show less
Key Features
- Storage Format: The ipaddr field is a VARCHAR field with a maximum length of 40 characters, storing IP addresses in standard formats regardless of the input notation.
- Data Migration: Supports migration of IP addresses from string fields to the new IP Address type, ensuring only valid IP addresses are accepted.
- IP Data Control Attributes: The ipdatacontrol attribute allows customization of how IP addresses are validated and stored, with options including:
- canonical: Valid IPs are validated and canonicalized; invalid IPs are rejected.
- canonicalizewhenpossible: Valid IPs are canonicalized; invalid IPs are stored unchanged. This is the default setting.
- expanded: Valid IPs are stored in expanded form; invalid IPs are rejected.
- none: No validation is performed, reverting the type to a plain string field.
Key Outcomes
Utilizing the IP Address field type allows ServiceNow customers to efficiently manage IP address data with proper validation and storage formats, ensuring data integrity during migrations and within applications. Understanding these features enables customers to optimize their use of the ServiceNow platform for IP address management.
The IP Address (Validated IPV4, IPV6) [ip_addr] field type stores valid IPv4 and IPv6 addresses.
Support for IPv4 and IPv6
Standard dot-decimal notation is supported for IPv4 and standard hex notation is supported for IPv6. For IPv6, you can use canonical notation to compress zeros. Familiarize yourself with IETF RFC5952 for examples and guidelines on text representation for IPv6 addresses.
- A standard IPv4 address in dot-decimal notation:
10.34.51.20 - An expanded IPv4 address would be zero
padded:
10.1.10.210would be represented as010.001.010.210 - An IPv6 address in fully expanded notation:
1507:f0d0:1002:0051:0000:0000:0000:0004 - The same IPv6 address above using the canonical notation:
1507:f0d0:1002:51::4
How IP addresses are stored in the database
The IP address ip_addr field is a Variable Character (VARCHAR) field with
a length of 40 characters. The values are normally stored in standard (dot-decimal or
canonical) notation for both IPv4 and IPv6 addresses regardless of the notation you use when
you input values in the field.
For example, if you enter an IPv6 address in a non-canonical format (expanded or any other valid formats per IETF RFC5952), by default, the system will store it in canonical format unless an IP Data Control attribute value is defined on that column with a different address format. See the [ip_data_control] glide attribute section in Altering tables and fields using dictionary attributes for more details.
Support for data migration
- canonical: Incoming IP addresses are validated and canonicalized before they are entered in the database. Invalid IP addresses are rejected.
- canonicalize_when_possible: Valid IP addresses are canonicalized
before before being entered in to the database. Invalid IP addresses are also entered in
to the database without being
changed.Note:canonicalize_when_possible is the default value for the ip_data_control attribute, unless it's otherwise specified.
- expanded: The IP addresses are validated and stored in an expanded form to support efficient database range queries. Invalid IP addresses are rejected.
- none: No validation or normalization is performed in this value type. It is used only as an emergency mechanism as it essentially reverts this type to a plain string field.