guides:reference:templates:functions
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
guides:reference:templates:functions [2020/02/11 06:07] – [IpAdd] bdorlandt | guides:reference:templates:functions [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{indexmenu_n> | ||
+ | |||
+ | ====== Functions ====== | ||
+ | |||
+ | Functions are used to perform specific manipulations on parameters in templates. The generic format is '' | ||
+ | ===== Calculation functions ===== | ||
+ | |||
+ | Calculation functions are meant to manipulate parameter values for use in templates. Hereby the database values remain unchanged. The calculation functions are used in template lines for substitution and conditional purposes. Functions can receive parameters or values as arguments. | ||
+ | |||
+ | ===== IpAdd ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Add a series of offsets to a base ip-address. | ||
+ | |||
+ | Offsets may be numeric or an ip-address and will be added to the base to form a new ip-address. Any offset may be a negative number or have negative ip digits. If one offset ip digit is negative, the entire offset is interpreted as negative. | ||
+ | |||
+ | < | ||
+ | [IpAdd(192.168.1.64, | ||
+ | [IpAdd(192.168.1.64, | ||
+ | [IpAdd(192.168.1.64, | ||
+ | </ | ||
+ | |||
+ | Base ip-addresses must be positive ip-addresses, | ||
+ | |||
+ | If base address includes the prefix (eg 192.168.2.1/ | ||
+ | |||
+ | If the sum of the offsets is negative, the result is subtracted from the END of the subnet, and when positive, the result is added to the actual start of the subnet: | ||
+ | |||
+ | < | ||
+ | [IpAdd(192.168.1.64/ | ||
+ | [IpAdd(192.168.1.64/ | ||
+ | [IpAdd(192.168.1.64/ | ||
+ | </ | ||
+ | |||
+ | When the resulting address is not within the subnet, "" | ||
+ | |||
+ | Invalid offsets and the prefixes /0 and /32 are ignored. | ||
+ | |||
+ | |||
+ | ===== Ipv6Add ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Calculate an Ipv6 address from a base address and an offset. | ||
+ | |||
+ | The Ipv6 base can include a /prefix which causes the network-address to be normalised to the corresponding size before the offset is added. The offset may have an Ipv6 format (eg ::1 or ::ff) or numeric (0-65536). | ||
+ | |||
+ | If offset have a negative sign included, the offset is subtracted form the net-address, | ||
+ | |||
+ | Examples: | ||
+ | < | ||
+ | -- addding to a base address: | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | |||
+ | -- adding to a normalised subnet | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | |||
+ | -- subtracting from a base address | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | |||
+ | -- subtracting from a subnet' | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | [Ipv6Add(3001:: | ||
+ | |||
+ | </ | ||
+ | |||
+ | Base ip-addresses must be positive ip-addresses, | ||
+ | |||
+ | ===== InvMask ===== | ||
+ | |||
+ | '' | ||
+ | This inverts an ip-mask in dotted decimal to its complementary value as a cisco wildcard. | ||
+ | |||
+ | **Example** \\ | ||
+ | The following example: | ||
+ | |||
+ | < | ||
+ | [InvMask(255.255.255.0)] | ||
+ | </ | ||
+ | |||
+ | Results in: | ||
+ | |||
+ | < | ||
+ | 0.0.0.255 | ||
+ | </ | ||
+ | |||
+ | ===== NetAddress ===== | ||
+ | |||
+ | '' | ||
+ | This calculates the network address that belongs to the given network size or '' | ||
+ | |||
+ | **Example** | ||
+ | < | ||
+ | Calculated Supernet = [NetAddress(< | ||
+ | </ | ||
+ | |||
+ | ===== NetRange ===== | ||
+ | |||
+ | '' | ||
+ | Similar to '' | ||
+ | |||
+ | **Example** | ||
+ | < | ||
+ | ! | ||
+ | Last address = [NetRange(< | ||
+ | ! | ||
+ | ! or equivalent: | ||
+ | Last address = [NetRange(< | ||
+ | ! | ||
+ | ! The last-but-one address can be obtained using the IpAdd function: | ||
+ | Last -but-one addess = [IpAdd([NetRange(< | ||
+ | ! | ||
+ | </ | ||
+ | |||
+ | ===== Prefix ===== | ||
+ | |||
+ | '' | ||
+ | ===== Mask ===== | ||
+ | |||
+ | '' | ||
+ | ===== IpOctet ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Build string from the octets of an ip-address. | ||
+ | |||
+ | The format specifies which octets are concatenated and in what order. Including the ' | ||
+ | |||
+ | examples: | ||
+ | |||
+ | < | ||
+ | ip-based-string: | ||
+ | results in: | ||
+ | ip-based-string: | ||
+ | |||
+ | ip-based-string: | ||
+ | results in: | ||
+ | ip-based-string: | ||
+ | |||
+ | ip-based-string: | ||
+ | results in: | ||
+ | ip-based-string: | ||
+ | |||
+ | ip-based-string: | ||
+ | results in: | ||
+ | ip-based-string: | ||
+ | </ | ||
+ | |||
+ | ===== Count ===== | ||
+ | |||
+ | '' | ||
+ | Returns the number of records in the named context. The argument can be in any of the context forms ('' | ||
+ | |||
+ | **Example** | ||
+ | < | ||
+ | ! Number of eVPN Vlans is [Count(@eVPN_vlans)] | ||
+ | |[Count(@eVPN_vlans)]=(1, | ||
+ | |[Count(@eVPN_vlans)]!=(1, | ||
+ | |[Count(@Ipv6_service)] != 0|{Global_ipv6} | ||
+ | |[Count(@Ipv4_service: | ||
+ | |[Count(@Ipv4_service: | ||
+ | |[count(@ipv4_service: | ||
+ | </ | ||
+ | |||
+ | **NOTE:** commands like '>' | ||
+ | |||
+ | ===== Random ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Randomly selects a numeric value between the minimum and maximum values provided. | ||
+ | |||
+ | '' | ||
+ | |||
+ | The '' | ||
+ | |||
+ | When the '' | ||
+ | |||
+ | **Example** | ||
+ | < | ||
+ | random number [random(0, 1000)] | ||
+ | random number [random(000, | ||
+ | random number [random(0, 1000, 4)] | ||
+ | ! | ||
+ | random interval [random(0, 3600, ' | ||
+ | --- | ||
+ | Could give the values: | ||
+ | --- | ||
+ | random number 31 | ||
+ | random number 089 | ||
+ | random number 0714 | ||
+ | ! | ||
+ | random interval 00:29:18 | ||
+ | </ | ||
+ | |||
+ | ===== List ===== | ||
+ | |||
+ | '' | ||
+ | Returns a single string consisting of all values of '' | ||
+ | |||
+ | **Example** \\ | ||
+ | The following template: | ||
+ | |||
+ | < | ||
+ | ! comma-separated list of all vlan-ids on a port | ||
+ | switchport trunk allowed vlan [List(‘, ‘, vlan_id@port_subnets)] | ||
+ | ! list of vlan-ids on a port | ||
+ | switchport trunk allowed vlan [List( vlan_id@port_subnets)] | ||
+ | </ | ||
+ | |||
+ | Will result in this: | ||
+ | |||
+ | < | ||
+ | ! comma-separated list of all vlan-ids on a port | ||
+ | switchport trunk allowed vlan 10, 20, 30, 40 | ||
+ | ! list of vlan-ids on a port | ||
+ | switchport trunk allowed vlan 10 20 30 40 | ||
+ | </ | ||
+ | |||
+ | ===== Rlist ===== | ||
+ | |||
+ | '' | ||
+ | Returns a single string consisting of all values of '' | ||
+ | ('' | ||
+ | The separator value is optional and defaults to ' ' (space).\\ | ||
+ | The range value is also optional, but requires the separator value to be presents. The range value defaults to ' | ||
+ | |||
+ | The [[wp> | ||
+ | |||
+ | **Example** \\ | ||
+ | The following template: | ||
+ | |||
+ | < | ||
+ | ! Ranged list of all the GigabitEthernet interfaces. | ||
+ | interface add [Rlist(Port_name@Interfaces: | ||
+ | ! Ranged list of vlans on the switch | ||
+ | vlan [Rlist(' | ||
+ | </ | ||
+ | |||
+ | Will result in this: | ||
+ | |||
+ | < | ||
+ | ! Ranged list of all the GigabitEthernet interfaces. | ||
+ | interface add Gi00/01-50 | ||
+ | ! Ranged list of vlans on the switch | ||
+ | vlan 10 to 20 and 30 to 40 and 100 | ||
+ | </ | ||
+ | |||
+ | ===== Eval ===== | ||
+ | |||
+ | **Make sure to test this thoroughly** \\ | ||
+ | '' | ||
+ | The Eval() function is strictly a perl function, no other code intervenes with the arguments. | ||
+ | Eval can be used to calculate with parameters or to execute pattern matching operations. | ||
+ | |||
+ | Numeric compares use ‘==’, ‘>=’ and the like, string compares use ‘eq’, ‘ne’, ' | ||
+ | |||
+ | Note that the use of ‘&& | ||
+ | |||
+ | The string compares ‘eq’, ‘gt’, ‘lt’ and such are tricky because it results in alphanumeric compares where case counts: ‘monkey’ is larger than ' | ||
+ | |||
+ | **Example of how to compare with eval** | ||
+ | < | ||
+ | # nummeric and string | ||
+ | |[Eval((< | ||
+ | # | ||
+ | # force string | ||
+ | |[Eval(('< | ||
+ | # | ||
+ | # force string >= vs gt (greater then) | ||
+ | |[Eval(< | ||
+ | |[Eval('< | ||
+ | # | ||
+ | # string gt (greater then) | ||
+ | |[Eval(' | ||
+ | |[Eval(lc ' | ||
+ | # | ||
+ | |[Eval(' | ||
+ | # | ||
+ | </ | ||
+ | |||
+ | **Example of the Eval flexibility** | ||
+ | < | ||
+ | [Eval((< | ||
+ | [Eval('< | ||
+ | [Eval(< | ||
+ | [Eval(substr(< | ||
+ | |[Eval((< | ||
+ | </ | ||
+ | |||
+ | **Example of how NOT to use Eval** | ||
+ | < | ||
+ | # mismatch nummeric | ||
+ | |[Eval('< | ||
+ | |[Eval(< | ||
+ | # | ||
+ | # mismatch string | ||
+ | |[Eval('< | ||
+ | |[Eval(< | ||
+ | # | ||
+ | |[Eval(' | ||
+ | |[Eval(' | ||
+ | # | ||
+ | </ | ||
+ | |||
+ | The '' | ||
+ | < | ||
+ | |[Eval('< | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | ! | ||
+ | My Site type is: < | ||
+ | ! | ||
+ | -- when string must match a pattern use: | ||
+ | | [Eval('< | ||
+ | -- note the quotes around the *string* < | ||
+ | ! | ||
+ | -- This works identical to: | ||
+ | | [Eval('< | ||
+ | ! | ||
+ | -- when it must NOT match the pattern use | ||
+ | | [Eval('< | ||
+ | | [Eval('< | ||
+ | ! | ||
+ | -- the !~ will (currently) not work, it produces a syntax error: | ||
+ | | [Eval('< | ||
+ | ! | ||
+ | </ | ||
+ | |||
+ | RESULT: | ||
+ | |||
+ | < | ||
+ | Configuration encountered errors | ||
+ | ! | ||
+ | My Site type is: CPE | ||
+ | ! | ||
+ | CPE like CPE | ||
+ | ! | ||
+ | CPE like CPE | ||
+ | ! | ||
+ | CPE not like CORE | ||
+ | ! | ||
+ | |!(XXXXX Cannot evaluate: '' | ||
+ | )| CPE not like CPE | ||
+ | ! | ||
+ | </ | ||
+ | |||
+ | ===== Error ===== | ||
+ | |||
+ | '' | ||
+ | This generates an error conditions at the moment of template generation. This function is meant to be able to test conditions that should limit the roll-out of the template. As an example, one can count with the '' | ||
+ | |||
+ | **Example** | ||
+ | < | ||
+ | |[Count(@Port_subnets)] = ' | ||
+ | </ | ||
+ | |||
+ | ===== MD5 ===== | ||
+ | |||
+ | '' | ||
+ | This calculates a '' | ||
+ | |||
+ | **Example** | ||
+ | < | ||
+ | exchange password [MD5(‘< | ||
+ | </ | ||
+ | |||
+ | ===== Dec_hex ===== | ||
+ | |||
+ | '' | ||
+ | '' | ||
+ | Converts a Decimal into its Hexadecimal value. | ||
+ | |||
+ | The optional padding value specifies the length of the value returned by adding leading ' | ||
+ | |||
+ | ===== Hex_dec ===== | ||
+ | |||
+ | '' | ||
+ | '' | ||
+ | Converts a Hexadecimal into its (unsigned) Decimal value. | ||
+ | |||
+ | The optional padding value specifies the length of the value returned by adding leading ' | ||
+ | |||
+ | ===== Str_hex ===== | ||
+ | |||
+ | '' | ||
+ | Creates a hexadecimal code from a string | ||
+ | |||
+ | ===== Hex_str ===== | ||
+ | |||
+ | '' | ||
+ | Converts a hexidecimal code back to its corresponding string | ||
+ | |||
+ | ===== Ip_hex ===== | ||
+ | |||
+ | < | ||
+ | [Ip_hex(< | ||
+ | [Ip_hex(< | ||
+ | </ | ||
+ | |||
+ | Convert a dotted-decimal IPv4 address in to a Hexadecimal value. It converts each decimal value into a hex value and concatenates those in one string. Bij default each converted decimal is padded to 2 characters, adding a leading ' | ||
+ | |||
+ | The optional padding variable can be increased to create more leading ' | ||
+ | |||
+ | < | ||
+ | [Ip_hex(' | ||
+ | results in: | ||
+ | 0A8D3DAB | ||
+ | |||
+ | [Ip_hex(' | ||
+ | results in: | ||
+ | 000A008D003D00AB | ||
+ | </ | ||
+ | |||
+ | ===== Hex_ip ===== | ||
+ | |||
+ | < | ||
+ | [Hex_ip(< | ||
+ | |||
+ | [Hex_ip(< | ||
+ | </ | ||
+ | |||
+ | Convert a hexadecimal formatted IPv4 address back into an IP value. It converts each hexadecimal value into a decimal value and concatenates those in a dotted decimal string. | ||
+ | |||
+ | Bij default the hexadecimal string is chopped into sets of 2 characters before converting those to decimal values. By increasing the padding value, the number of characters grouped before conversion can be increased. | ||
+ | |||
+ | The function returns a string of dotted decimals, but does not check if it forms a valid ip-address! | ||
+ | |||
+ | < | ||
+ | [Hex_ip(' | ||
+ | results in: | ||
+ | 10.141.61.171 | ||
+ | [Hex_ip(' | ||
+ | results in: | ||
+ | 10.141.61.171 | ||
+ | </ | ||
+ | |||
+ | ===== Null ===== | ||
+ | |||
+ | The Null function will not be used a lot in templates. It serves to be able to cancel the line with a specific function from the configuration. It’s therefor mainly used when the value '' | ||
+ | |||
+ | ===== Replace ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Replace searches for a specific string-value and replaces it with another string-value. The replace value can be empty. The match string is non case-sensitive. | ||
+ | |||
+ | The optional '' | ||
+ | |||
+ | **Example** \\ | ||
+ | The following | ||
+ | |||
+ | < | ||
+ | < | ||
+ | < | ||
+ | |||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | Will result in: | ||
+ | |||
+ | < | ||
+ | TEST_ROUTER001 - TEMP_ROUTER001 | ||
+ | TEST_ROUTER001 - ROUTER001 | ||
+ | |||
+ | TEST_ROUTER001 - xEST_ROUTER001 | ||
+ | TEST_ROUTER001 - xESx_ROUxER001 | ||
+ | </ | ||
+ | |||
+ | ===== Ucase / Lcase / FirstCap ===== | ||
+ | |||
+ | '' | ||
+ | '' | ||
+ | '' | ||
+ | |||
+ | These functions convert the case of the string, where Ucase stands for uppercase, Lcase for lowercase and FirstCap stands for First character Capital. | ||
+ | |||
+ | |||
+ | **Example** \\ | ||
+ | The following | ||
+ | |||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | Will result in: | ||
+ | |||
+ | < | ||
+ | test_router001 - TEMP_ROUTER001 | ||
+ | TEST_ROUTER001 - test_router001 | ||
+ | test_router001 - Test_router001 | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Substring ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Substring extracts a portion of a string based on startpoint and length. \\ | ||
+ | First character is at offset zero. | ||
+ | |||
+ | If OFFSET is negative, starts that far back from the end of the string. \\ | ||
+ | If LENGTH is omitted, returns everything through the end of the string. \\ | ||
+ | If LENGTH is negative, leaves that many characters off the end of the string. | ||
+ | |||
+ | < | ||
+ | my $s = "The black cat climbed the green tree"; | ||
+ | [Substring(" | ||
+ | [Substring(" | ||
+ | [Substring(" | ||
+ | [Substring(" | ||
+ | [Substring(" | ||
+ | </ | ||
+ | |||
+ | ===== WordIdx ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | WordIdx splits a string using the ' | ||
+ | |||
+ | < | ||
+ | # split on comma with or without whitespace | ||
+ | ' | ||
+ | # split on the dot character (of an ip-address) | ||
+ | ' | ||
+ | </ | ||
+ | |||
+ | Use quotes around the separator when a comma is used, and use a backslash '' | ||
+ | |||
+ | When the index is omitted, the first word is returned by default. Use 1 for the first word, 2 for the second and so on. An index of -1 returns the last, -2 the fore last and so on. | ||
+ | |||
+ | If multiple indices are used, the corresponding words are returned in the order requested. Multiple indexed words are always separated by a space. | ||
+ | |||
+ | The index '' | ||
+ | |||
+ | Some examples and their results: | ||
+ | |||
+ | < | ||
+ | # | ||
+ | [WordIdx(' | ||
+ | => one | ||
+ | # | ||
+ | [WordIdx(' | ||
+ | => two | ||
+ | # | ||
+ | [WordIdx(' | ||
+ | => three one | ||
+ | # | ||
+ | [WordIdx(' | ||
+ | => three | ||
+ | # | ||
+ | [WordIdx(' | ||
+ | => 1 17 | ||
+ | # | ||
+ | [WordIdx(' | ||
+ | => 1.17 | ||
+ | # | ||
+ | [WordIdx(' | ||
+ | => 4 | ||
+ | # | ||
+ | </ | ||
+ | |||
+ | ===== RowIdx ===== | ||
+ | |||
+ | '' | ||
+ | '' | ||
+ | |||
+ | RowIdx returns a single parameter value from a specific row of a relation instead of all the parameter | ||
+ | values of each row. | ||
+ | |||
+ | < | ||
+ | Port-name: < | ||
+ | -> this will insert all interface names | ||
+ | # | ||
+ | RowIdx: [RowIdx(port_name@interfaces, | ||
+ | -> this will insert the first interface name in the relation | ||
+ | # | ||
+ | RowIdx: [RowIdx(port_name@interfaces: | ||
+ | -> this will insert the last but one gigabit interface name | ||
+ | </ | ||
+ | |||
+ | When accessing parameters through relations, all (matching) parameter values of the relation | ||
+ | are inserted. But occasionally, | ||
+ | only the last. | ||
+ | |||
+ | For these situations the function **RowIdx()** is created. It takes a parameter | ||
+ | reference from a relation and the row number (index) as arguments. Only one value is substituted. | ||
+ | |||
+ | The relation reference may have a value filter and supports wildcards. By default row ' | ||
+ | Row index numbers can be positive (0 at top), or negative (-1 at bottom). Non existent rows will result in an empty string. | ||
+ | |||
+ | |||
+ | |||
+ | ===== Coalesce ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Coalesce() returns from a list of parameters the first non-empty value. There is no practical limit on the number of parameters in the list. Undefined parameters and empty strings are both considered an empty value, but the number zero (' | ||
+ | |||
+ | The Coalesce function is intended to insert a parameter value that can be defined in different places (objects) but have a hierarchical dependency. By listing each in the hierarchical order in the coalesce function, the one considered overriding the remaining is returned - if available. Otherwise the next one will be considered. | ||
+ | |||
+ | < | ||
+ | Enable-secret: | ||
+ | |||
+ | -> Enable-secret: | ||
+ | </ | ||
+ | |||
+ | All parameters in the Coalesce list must be enclosed in edged brackets ('< | ||
+ | |||
+ | Note that when using relations, the line including the Coalesce() will be executed on all rows the relation returned. | ||
+ | |||
+ | ===== Node_mgmt_ipv4 ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Returns the ipv4 management address of the node indicated. The node must be known to the YCE database | ||
+ | |||
+ | |||
+ | ===== Node_mgmt_ipv6 ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | Returns the ipv6 management address of the node indicated. The node must be known to the YCE database | ||
+ | |||
+ | |||
+ | ===== Node_port_ipv4 ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | The functions **Node_port_ipv4** and **Node_port_ipv6** allow you to retrieve ip-subnet/ | ||
+ | attributes from subnets assigned to a specific port from a node. Three mandatory arguments are | ||
+ | required: the ' | ||
+ | either be the internal Port_name or the vendor dependent full interface name. | ||
+ | |||
+ | The optional fourth argument ' | ||
+ | one subnet is assigned to the port. This ' | ||
+ | filtering where a ' | ||
+ | or a ' | ||
+ | |||
+ | Examples: | ||
+ | < | ||
+ | [Node_port_ipv4(< | ||
+ | [Node_port_ipv4(< | ||
+ | |||
+ | [Node_port_ipv4(< | ||
+ | [Node_port_ipv4(< | ||
+ | </ | ||
+ | |||
+ | ===== Node_port_ipv6 ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | The functions **Node_port_ipv4** and **Node_port_ipv6** allow you to retrieve ip-subnet/ | ||
+ | attributes from subnets assigned to a specific port from a node. Three mandatory arguments are | ||
+ | required: the ' | ||
+ | either be the internal Port_name or the vendor dependent full interface name. | ||
+ | |||
+ | The optional fourth argument ' | ||
+ | one subnet is assigned to the port. This ' | ||
+ | filtering where a ' | ||
+ | or a ' | ||
+ | |||
+ | The ipv6 address will be returned in the ' | ||
+ | |||
+ | Examples: | ||
+ | < | ||
+ | [Node_port_ipv6(< | ||
+ | [Node_port_ipv6(< | ||
+ | |||
+ | [Node_port_ipv6(< | ||
+ | [Node_port_ipv6(< | ||
+ | </ | ||
+ | |||
+ | |||