menu:build:templates:template_edit
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
menu:build:templates:template_edit [2021/10/21 10:48] – pgels | menu:build:templates:template_edit [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{indexmenu_n> | ||
+ | |||
+ | ====== Template edit ====== | ||
+ | |||
+ | The templates form can only be opened when a client is selected in the [[menu: | ||
+ | |||
+ | The syntax for the templates is not checked for any errors. NetYCE is not an expert system. The templates are made of the actual configurations for the nodes in a parametrized way. This means, the configuration should be created by engineers who have intimate knowledge of the used devices and their configurations. | ||
+ | |||
+ | ==== Variables within a template ==== | ||
+ | Variables are surrounded by '<' | ||
+ | |||
+ | ==== Comments within a template ==== | ||
+ | |||
+ | It is possible to use comments within a template. This is done by using one of the following characters for each line of comment: | ||
+ | * **#** | ||
+ | * **!** | ||
+ | * **−−** | ||
+ | * **⁄⁄** | ||
+ | |||
+ | Dependant on the text delimiter of the vendor (module), the line will be ignored or generated by the configuration generator. Variables will be substituted and checked in a comment rule. | ||
+ | |||
+ | === Example === | ||
+ | |||
+ | The following template: | ||
+ | |||
+ | < | ||
+ | # Specific SNMP server configuration | ||
+ | snmp-server contact < | ||
+ | ! SNMP server 1 | ||
+ | snmp-server < | ||
+ | ! SNMP server 2 | ||
+ | snmp-server < | ||
+ | </ | ||
+ | |||
+ | For vendor **Cisco_ios** it will result in: | ||
+ | |||
+ | < | ||
+ | snmp-server contact [email protected] | ||
+ | ! SNMP server 1 | ||
+ | snmp-server 192.168.1.42 public | ||
+ | ! SNMP server 2 | ||
+ | snmp-server 192.168.33.89 public | ||
+ | </ | ||
+ | |||
+ | For vendor **Huawei_S** it will result in: | ||
+ | |||
+ | < | ||
+ | # Specific SNMP server configuration | ||
+ | snmp-server contact [email protected] | ||
+ | snmp-server 192.168.1.42 public | ||
+ | snmp-server 192.168.33.89 public | ||
+ | </ | ||
+ | |||
+ | ==== Using a subtemplate within a template ==== | ||
+ | |||
+ | Subtemplates are used within a template by using the template name between curly brackets < | ||
+ | < | ||
+ | # Next the first subtemplate will be loaded. | ||
+ | {SubTemplateName1} | ||
+ | # Now the second subtemplate will be loaded. | ||
+ | {SubTemplateName2} | ||
+ | </ | ||
+ | |||
+ | This will be the actual output when the template will be generated: | ||
+ | |||
+ | < | ||
+ | These are the contents of the first subtemplate | ||
+ | ! | ||
+ | These are the contents of the second subtemplate | ||
+ | ! | ||
+ | </ | ||
+ | |||
+ | Subtemplates can also be used within a subtemplate. | ||
+ | |||
+ | ===== Main templates ===== | ||
+ | |||
+ | Main templates are mostly used to assemble all the needed Sub templates. Main templates should not contain any actual configuration. All main templates are linked to a specific Node class. Node classes are defined with the [[menu: | ||
+ | |||
+ | ===== Sub templates ===== | ||
+ | |||
+ | Subtemplates can be used to group partial configurations, | ||
+ | |||
+ | Subtemplates can also be used from within a Subtemplate. This will result in the following example: | ||
+ | |||
+ | <file txt mainTemplate.txt> | ||
+ | ... | ||
+ | {managementSubtemp} | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | The management subtemplate contains the following: | ||
+ | |||
+ | <file txt managementSubtemp.txt> | ||
+ | # | ||
+ | {snmpSub} | ||
+ | {sshSub} | ||
+ | {syslogSubt} | ||
+ | </ | ||
+ | |||
+ | And the subtemplates snmpSub, sshSub and syslogSub will contain the actual configuration. Nested subtemplates are [[guides: | ||
+ | |||
+ | ===== Automation templates ===== | ||
+ | |||
+ | Automation templates are available from the //Sub templates// tab. Automation templates are sorted below the Sub templates. | ||
+ | ===== Port templates ===== | ||
+ | |||
+ | Port templates are used to configure ports. A port type must be entered and port templates can only be assigned to ports to which the hardware type is a match. (i.e. A FastEthernet port can only be assigned a FastEthernet port template) | ||
+ | |||
+ | ===== Parsing templates ===== | ||
+ | |||
+ | Parsing templates are used in conjunction with the [[menu: | ||
+ | |||
+ | ===== Relations ===== | ||
+ | |||
+ | //Main article: [[guides: | ||
+ | |||
+ | All the nodes within netYCE are created from a hierarchical model of objects. By using the relation between these objects, very short templates can be created with a lot of information in them. This is done with relations. | ||
+ | |||
+ | ===== Dependencies ===== | ||
+ | |||
+ | Templates can be used in other Templates, Scenarios and Stored jobs. To prevent deleting a Template that is in use in any of these applications, | ||
+ | |||
+ | The results of the dependency check is a detailed report on which templates, scenarios and jobs include a reference to the Template and on which line number. The line with the reference is incorporated. | ||
+ | |||
+ | For Main-templates and Port-templates, | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | Depending on user permission level, the dependencies that prevent deletion can be overridden. If permitted, the dependencies report concluded with the message "Do you want to delete anyway?" | ||
+ | |||
+ | The permissions are defined in the YCE.Auth_permissions table and can be changed using the ' | ||
+ | |||
+ | ===== Directives ===== | ||
+ | |||
+ | Port-templates can fully use any Relation to retrieve (lists of) variables. However, some Relationships become port-specific by referencing < | ||
+ | |||
+ | This behaviour is subject to YCE template directives, of which the ''# | ||
+ | |||
+ | The **''# | ||
+ | |||
+ | The #reload directive attempts to load all arguments as Relations: | ||
+ | |||
+ | < | ||
+ | #reload port_connections vlans_attached | ||
+ | </ | ||
+ | |||
+ | is equivalent to | ||
+ | |||
+ | < | ||
+ | #reload port_connections | ||
+ | #reload vlans_attached | ||
+ | </ | ||
+ | |||
+ | The **''# | ||
+ | |||
+ | The **''# | ||
+ | |||
+ | Lastly, the **''# | ||
+ | |||
+ | When you execute a command which will take a while to process you'll want to wait a little while before executing the next command (otherwise you risk the second command not being executed at all), this can be accomplished using the directive "#wait n.n" which will wait n.n seconds on the CLI before the next command will be executed, make sure to use this directive **after** executing the command which will take a while to process. | ||
+ | |||
+ | The syntax is: "//# | ||
+ | < | ||
+ | #wait 1.5 - will wait 1.5 seconds. | ||
+ | |||
+ | #wait 1.5 - will also wait 1.5 seconds. | ||
+ | |||
+ | # wait 1.5 - will be seen as a comment. | ||
+ | |||
+ | #wait 1,5 - will be interpreted as a "#wait 1" because of the comma has been used instead of a point. | ||
+ | |||
+ | #wait - will also be seen as a comment. | ||
+ | #wait a second - will also be seen as a comment. | ||
+ | |||
+ | #wait 10 let's wait for a while - will wait for 10 seconds. | ||
+ | </ | ||
+ | |||
+ | There is no restriction on a maximum period, "//# | ||
+ | |||
+ | When a full configuration for a node gets compiled the #wait will be omitted (download file), only in case of partial templates or commands the #wait will be passed on to the job. | ||
+ | |||
+ | ==== Ports ==== | ||
+ | |||
+ | Main templates posses ports. When creating a new node, these ports will be copied to the new nodes. To manage a main template' | ||
+ | |||
+ | In the ports subform, ports can be added (**+**), removed ({{general: | ||
+ | |||
+ | You can also add, edit and delete port slots. For now this only is used in order to specify the slot's port layout. | ||
+ | |||
+ | The port layout syntax is as follows: the number of rows, followed by an H(orizontal) or V(Vertical). If the port count should start at bottom-left (instead of top-left), include a U. If the port count should start at the top-right (instead of top-left), include a B, then a dash (-), followed by the number of ports that should be displayed per block. Example: 2V-12. | ||
+ | |||