Add_workflow_for_techpubs | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Panel | ||||
---|---|---|---|---|
In this section:
|
In the OpenStack environment, when cloud instances are launched through Heat, metadata and userdata are populated automatically by the Heat template. The SBC SWe metadata and userdata you provide in your template are essential to ensuring that the SBC instance you deploy can initialize correctly. To be interpreted correctly, the metadata and userdata must be provided in the proper JSON format. The example Heat templates
Spacevars | ||
---|---|---|
|
Info |
---|
For OpenStack, there is a common REST API command for accessing/showing/listing instantiation data such as meta-data and user-data. For details, refer to the REST API Reference Guide. |
Code Block |
---|
# Mgt0 interface "IF0" : { "Port":"Mgt0", "DHCP": "<Dhcp_flag>", "GWV4":"<IP_Address>", "IPV4":"<IP_Address/Subnet_Prefix>", "GWV6" :"<IP_Address>", "IPV6":"<IP_Address/Subnet_Prefix>", "FIPV4":"<IP_Address>", }, # Ha0 interface "IF1" : { "Port" : "Ha0", "DHCP": "<Dhcp_flag>", "GWV4":"<IP_Address>", "IPV4":"<IP_Address/Subnet_Prefix>", "FIPV4":"<IP_Address>", }, # IP interface Pkt0.111 "IF2": { "Port" :"Pkt0", "DHCP": "<Dhcp_flag>", "GWV4":"<IP_Address>", "IPV4":"<IP_Address/Subnet_Prefix>", "GWV6" :"<IP_Address>", "IPV6":"<IP_Address/Subnet_Prefix>", "FIPV4":"<IP_Address>", "RNat":"true", "VlanId":"111" }, }, # Secondary IP for Pkt0.111 "AltIP2" : { "IFName":"IF2", "IP": "<IP_Address>", "FIPV4":"<IP_Address>" } |
Code Block |
---|
# Another Secondary IP for Pkt0.111 "AltIP3" : { "IFName":"IF2", "IP": "<IP_Address>", "FIPV4":"<IP_Address>" } # IP interface Pkt0.222 "IF3": { "Port":"Pkt0", "DHCP": "<Dhcp_flag>", "GWV4":"<IP_Address>", "IPV4":"<IP_Address/Subnet_Prefix>", "GWV6" :"<IP_Address>", "IPV6":"<IP_Address/Subnet_Prefix>", "FIPV4":"<IP_Address>", "RNat":"true", "VlanId":"222" }, # Secondary IP for Pkt0.222 "AltIP4" : { "IFName":"IF3", "IP": "<IP_Address>", "FIPV4":"<IP_Address>", }, # IP interface Pkt1.333 "IF4": { "Port":"Pkt1", "DHCP": "<Dhcp_flag>", "GWV4":"<IP_Address>", "IPV4":"<IP_Address/Subnet_Prefix>", "GWV6" :"<IP_Address>", "IPV6":"<IP_Address/Subnet_Prefix>", "FIPV4":"<IP_Address>", "RNat":"true", "VlanId":"333" }, # Secondary IP for Pkt1.333 "AltIP5" : { "IFName":"IF4", "IP": "<IP_Address>", "FIPV4":"<IP_Address>" }, ClusterIp: "<RG_IP>" |
If a port needs to be part of multiple VLANs, IF
definitions including the port must be repeated for each VLAN IDs, as follows:
Code Block |
---|
"IF3": { "GWV4": "<IP_Address>", "DHCP": "<Dhcp_flag>", "Port": "Pkt1", "VlanId": "<VLAN_ID_1>", "IPV4": "<IP_Address/Subnet_Prefix>" }, "IF4": { "GWV4": "<IP_Address>", "DHCP": "<Dhcp_flag>", "Port": "Pkt1", "VlanId": "<VLAN_ID_2>", "IPV4": "<IP_Address/Subnet_Prefix>" }, "IF5": { "GWV4": "<IP_Address>", "DHCP": "<Dhcp_flag>", "Port": "Pkt1", "VlanId": "<VLAN_ID_3>", "IPV4": "<IP_Address/Subnet_Prefix>" } |
Pagebreak
Code Block | ||
---|---|---|
| ||
#Interface definition for the Mgt0 port. "IF0" : { "Port":"Mgt0", "DHCP": "False", "GWV4":"10.0.0.1", "IPV4":"10.0.0.24/24", "GWV6" :"fd00:10:2b50:4000::1", "IPV6":"fd00:10:2b50:4000::1/64", "FIPV4":"10.14.52.108", }, # JSON for the Ha0 interface "IF1" : { "Port" : "Ha0", "DHCP": "False", "GWV4":"192.168.100.1", "IPV4":"192.168.100.24/24", }, # JSON for the IP interface Pkt0.2007 "IF2": { "Port" :"Pkt0", "DHCP": "False", "GWV6" :"fd00:10:6b21:2007::1", "IPV6":"fd00:10:6b21:2007::1001/64", "VlanId":"2007" }, # JSON for the IP interface Pkt1.2008 "IF3": { "Port" :"Pkt1", "DHCP": "False", "GWV6" :"fd00:10:6b21:2008::1", "IPV6":"fd00:10:6b21:2008::1001/64", "VlanId":"2008" }, }, # Secondary IP for Pkt0.2007 "AltIP2" : { "IFName":"IF2", "IP": "fd00:10:6b21:2007::1002", } # Another Secondary IP for Pkt0.2007 "AltIP3" : { "IFName":"IF2", "IP": "fd00:10:6b21:2007::1003", }, ClusterIp: "192.168.100.25" |
Info | ||
---|---|---|
| ||
Example :
Example: The second alternate IP address for pkt0's first VLAN IP interface can be named as
|
This section describes parameters within the SBC metadata:
Code Block |
---|
"IFx" : { "Port":"<Port_Name>", "DHCP": "<Dhcp_flag>", "RNat": "<True|False>", "GWV4":"<IP_Address>", "IPV4":"<IP_Address/Subnet_Prefix>", "GWV6" :"<IP_Address>", "IPV6":"<IP_Address/Subnet_Prefix>", "FIPV4":"<IP_Address>", "VlanId":"<VLAN_ID>" } |
Anchor | ||||
---|---|---|---|---|
|
Caption | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||
|
An alternate IP definition contains the information for an additional IP address associated with a port. For each additional IP address added to the port, there has to be corresponding ALT IP definition. The following is an example definition with the parameters explained in the table that follows the example.
Code Block |
---|
"AltIP3" : { "IFName":"IF2", "IP": "10.2.0.7", "FIPV4":"aaa.bbb.ccc.eee" } |
Caption | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
|
The parameter ClusterIp
is used to form a Redundancy Group (RG) during startup. You must pass HA0 the IP address of one of the nodes in the RG in the ClusterIp parameter. The format is shown below.
Code Block |
---|
ClusterIp: "<RG_IP>" |
Caption | ||||||
---|---|---|---|---|---|---|
| ||||||
|
Pagebreak |
---|
Code Block |
---|
user_data_format: RAW user_data: str_replace: template: | #cloud-config users: - name: admin ssh-authorized-keys: - $adminSshKey lock_passwd: false - name: linuxadmin ssh-authorized-keys: - $linuxAdminSshKey lock_passwd: false runcmd: - usermod -p '$adminPassword' admin - usermod -p '$linuxAdminPassword' linuxadmin write_files: - content: | { "CEName" : "$ce_name", "CEMode" : "$ce_mode", "SystemName" : "$system_name", "SbcPersonalityType" : "$personality", "SbcHaMode" : "$ha_mode", "enableREST" : "$enableREST", "enableCoreEMA" : "$enableCoreEMA", "enableTS" : "$enableTS", "DosSupportSecPktPorts" : "$dos_support_sec_port", "EmsUsername" : "$ems_user_name", "EmsPassword" : "$ems_password", "EmsIP" : [ "$ems_ip_1", "$ems_ip_2" ], "EmsDownloadConfigSdRegistry" : "$downloadConfig",[ { "type":"dns","servers":$sd_registry } ], "OamIPEmsFqdn" : [ "$oam$ems_ip_1fqdn", "$oam_ip_2" ], "Oam1Ip" EmsDownloadConfig" : "$oam_ip1$downloadConfig", "Oam2IpOamIP" : [ "$oam_ip_1", "$oam_ip2ip_2" ], "CERoleOam1Ip" : "$ce$oam_roleip1", "TemplateNameOam2Ip" : "heatRgNoDhcp.yaml", : "$oam_ip2", "TemplateVersion" : "TEMPLATE_VERSION_UNKNOWN", "CERole" "HAFaultDetectionMode" : "$haFaultDetectionMode$ce_role", "EmsPrivateNodeParametersTemplateName" : { "cluster_id": "$cluster_id","vnfc_id":"$vnfc_id"} : "heatRgNoDhcp.yaml", } "TemplateVersion" path: /opt/sonus/conf/userData.json : "TEMPLATE_VERSION_UNKNOWN", "HAFaultDetectionMode" #bootcmd : "$haFaultDetectionMode", #- /opt/sonus/bin/mountVolume.sh -v "$cinderVolumeIdForLogs" "EmsPrivateNodeParameters" : { "cluster_id": "$cluster_id","vnfc_id":"$vnfc_id"} params: } $ce_role: { get_param: sbc_ceRole } path: /opt/sonus/conf/userData.json $ce_name: { get_param: sbc_ceName }#bootcmd: $ce_mode: #- { get_param: sbc_ceMode } /opt/sonus/bin/mountVolume.sh -v "$cinderVolumeIdForLogs" $system_name: { get_param: sbc_system_name } params: $personality:$ce_role: { get_param: personalitysbc_ceRole } $dos_support_sec_port:$ce_name: { get_param: dos_support_sec_portsbc_ceName } $ha$ce_mode: { get_param: hasbc_modeceMode } $enableREST: { get_param: enableREST } $enableCoreEMA$system_name: { get_param: enableCoreEmasbc_system_name } $enableTS: $personality: { get_param: enableTSpersonality } $ems$dos_support_usersec_nameport: { get_param: emsdos_support_usersec_nameport } $ems$ha_passwordmode: { get_param: emsha_passwordmode } $enableREST: { get_param: enableREST } $enableCoreEMA: { $ems_ip_1get_param: enableCoreEma } $enableTS: { get_param: ems_ip_1enableTS } $ems_ipuser_2name: { get_param: ems_ipuser_2name } $cluster$ems_idpassword: { get_param: clusterems_idpassword } $downloadConfig$ems_ip_1: { get_param: downloadems_ip_config1 } $oam$ems_ip_12: { get_param: oamems_ip_12 } $oam$sd_ip_2: registry: { get_param: oamsd_ip_2registry } $haFaultDetectionMode: { get$ems_paramfqdn: haFaultDetectionMode } { get_param: ems_fqdn } $vnfc_id: { list$cluster_join: ['-', [ { get_param: "OS::stack_name" },id: { get_param: cluster_id }, '1']] } $adminSshKey$downloadConfig: { get_param: adminSshKeydownload_config } $linuxAdminSshKey$oam_ip_1: { get_param: linuxAdminSshKeyoam_ip_1 } $adminPassword$oam_ip_2: { get_param: adminPasswordoam_ip_2 } $linuxAdminPassword$haFaultDetectionMode: { get_param: linuxAdminPasswordhaFaultDetectionMode } #$cinderVolumeIdForLogs:$vnfc_id: { list_join: ['-', [ { get_param: "OS:: cinder_volume_id_for_logs } |
Info |
---|
The userdata JSON is present under the write_file directory |
Code Block |
---|
{ "CERole"stack_name" }, { get_param: cluster_id }, '1']] } $adminSshKey: { get_param: : "ACTIVE",adminSshKey } "CEName" $linuxAdminSshKey: { get_param: : "vsbc1", "CEMode"linuxAdminSshKey } $adminPassword: { get_param: "sbc", adminPassword } "SystemName" $linuxAdminPassword: { get_param: "vsbcsystem",linuxAdminPassword } "SbcPersonalityType" : #$cinderVolumeIdForLogs: { get_param: cinder_volume_id_for_logs } |
Info |
---|
The userdata JSON is present under the write_file directory |
Code Block |
---|
{ "CERole" "msbc", "SbcHaMode" : "Nto1ACTIVE", "EnableRESTCEName" : "Enabledvsbc1", "EnableCoreEMACEMode" : "Enabledsbc", "EnableTSSystemName" : "Enabledvsbcsystem", "OamIPSbcPersonalityType" : "msbc", "SbcHaMode" : [ "10"Nto1", "EnableREST" : "Enabled", "EnableCoreEMA" : "Enabled", "EnableTS" : "Enabled", "OamIP" : [ "10.54.58.104", "10.54.58.105" ], "Oam1Ip" : "10.54.58.104" "Oam2Ip" : "10.54.58.105" "EmsUsername" : "restuser", "EmsPassword" : "sonus123", "EmsIP" : [ "10.54.58.184", "10.54.58.185" ], "EmsDownloadConfigSdRegistry" : " : [ { "type":"dns","servers":["10.23.3.10","10.25.5.10"] } ], "EmsFqdn" : "dev1._ems._tcp.example.com", "EmsDownloadConfig" : "False", "TemplateName" : "heatRgNoDhcp.yaml", "TemplateVersion" : "V08.00.00", "HAFaultDetectionMode" : "normal" "EmsPrivateNodeParameters": { "cluster_id": "MSBC" , "vnfc_id": "Msbc1_N1" } } |
Info | ||
---|---|---|
| ||
Beginning with release 7.1, you must include SSH keys or passwords in the Heat template to log into the SBC CLI or linux shell. Because they are more secure, SSH key fields are mandatory in the Heat templates. Passwords are optional fields. The password input is not plain text; it is a hash of the password. The hash password can be generated using the following command:
|
Caption | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Interface-related information (contents of interface and ALT IP definitions) provided in userdata and/or metadata is flattened down into key-value pairs, which can be retrieved using the CLI.
An example metavariable table for a 4:1 M-SBC is shown below:
Code Block |
---|
admin@vMsbcl> show table system metavariable CE NAME NAME VALUE ------------------------------------------------------ vMsbcl-10.10.20.17 OamIP ['10.10.20.17','10.10.20.18'] vMsbcl-10.10.20.17 Oam1Ip 10.10.20.17 vMsbcl-10.10.20.17 Oam2Ip 10.10.20.18 vMsbcl-10.10.20.17 IFO.GWV6 fd00:10:6b50:43AO::1 vMsbcl-10.10.20.17 IF0.IPV6 FD00:10:6B50:43AO::DO vMsbcl-10.10.20.17 IFO.Port MgtO vMsbcl-10.10.20.17 IFl.GWV4 10.10.20.1 vMsbcl-10.10.20.17 IFl.IPV4 10.10.20.17 vMsbcl-10.10.20.17 IFl.Port HaO vMsbcl-10.10.20.17 IF2.GWV6 FD00:10:6B50:4D74::1 vMsbcl-10.10.20.17 IF2.IPV6 FD00:10:6B50:4D74::DO vMsbcl-10.10.20.17 IF2.Port PktO vMsbcl-10.10.20.17 IF3.GWV6 FD00:10:6B50:4D70::1 vMsbcl-10.10.20.17 IF3.IPV6 FD00:10:6B50:4D70::9 vMsbcl-10.10.20.17 IF3.Port PktO vMsbcl-10.10.20.17 IF4.GWV4 10.54.226.129 vMsbcl-10.10.20.17 IF4.IPV4 10.54.226.138 vMsbcl-10.10.20.17 IF4.Port PktO vMsbcl-10.10.20.17 IF5.GWV4 10.54.226.193 vMsbcl-10.10.20.17 IF5.IPV4 10.54.226.202 vMsbcl-10.10.20.17 IF5.Port PktO vMsbcl-10.10.20.17 IF6.GWV4 10.10.13.1 vMsbcl-10.10.20.17 IF6.IPV4 10.10.13.17 vMsbcl-10.10.20.17 IF6.Port Pktl vMsbcl-10.10.20.17 IF2.Vlanid 313 vMsbcl-10.10.20.17 IF3.Vlanid 309 vMsbcl-10.10.20.17 IF4.Vlanid 311 vMsbcl-10.10.20.17 IF5.Vlanid 312 vMsbcl-10.10.20.17 IFO.PrefixV6 60 vMsbcl-10.10.20.17 IFl.PrefixV4 24 vMsbcl-10.10.20.17 IF2.PrefixV6 64 vMsbcl-10.10.20.17 IF3.PrefixV6 64 |
Code Block |
---|
vMsbc2-10.10.20.18 OamIP ['10.10.20.17','10.10.20.18'] vMsbc2-10.10.20.18 Oam1Ip 10.10.20.17 vMsbc2-10.10.20.18 Oam2Ip 10.10.20.18 vMsbc2-10.10.20.18 IF4.PrefixV4 26 vMsbc2-10.10.20.18 IF5.PrefixV4 26 vMsbc2-10.10.20.18 IF6.PrefixV4 24 vMsbc2-10.10.20.18 IFO.GWV6 fd00:10:6b50:43AO::1 vMsbc2-10.10.20.18 IF0.IPV6 FD00:10:6B50:43AO::Dl vMsbc2-10.10.20.18 IFO.Port MgtO vMsbc2-10.10.20.18 IFl.GWV4 10.10.20.1 vMsbc2-10.10.20.18 IFl.IPV4 10.10.20.18 vMsbc2-10.10.20.18 IFl.Port HaO vMsbc2-10.10.20.18 IF2.GWV6 FD00:10:6B50:4D74::1 vMsbc2-10.10.20.18 IF2.IPV6 FD00:10:6B50:4D74::Dl vMsbc2-10.10.20.18 IF2.Port PktO vMsbc2-10.10.20.18 IF3.GWV6 FD00:10:6B50:4D70::1 vMsbc2-10.10.20.18 IF3.IPV6 FD00:10:6B50:4D70::A vMsbc2-10.10.20.18 IF3.Port PktO vMsbc2-10.10.20.18 IF4.GWV4 10.54.226.129 vMsbc2-10.10.20.18 IF4.IPV4 10.54.226.139 vMsbc2-10.10.20.18 IF4.Port PktO vMsbc2-10.10.20.18 IF5.GWV4 10.54.226.193 vMsbc2-10.10.20.18 IF5.IPV4 10.54.226.203 vMsbc2-10.10.20.18 IF5.Port PktO vMsbc2-10.10.20.18 IF6.GWV4 10.10.13.1 vMsbc2-10.10.20.18 IF6.IPV4 10.10.13.18 vMsbc2-10.10.20.18 IF6.Port Pktl vMsbc2-10.10.20.18 IF2.Vlanid 313 vMsbc2-10.10.20.18 IF3.Vlanid 309 vMsbc2-10.10.20.18 IF4.Vlanid 311 vMsbc2-10.10.20.18 IF5.Vlanid 312 vMsbc2-10.10.20.18 IFO.PrefixV6 60 vMsbc2-10.10.20.18 IFl.PrefixV4 24 vMsbc2-10.10.20.18 IF2.PrefixV6 64 vMsbc2-10.10.20.18 IF3.PrefixV6 64 vMsbc2-10.10.20.18 IF4.PrefixV4 26 vMsbc2-10.10.20.18 IF5.PrefixV4 26 vMsbc2-10.10.20.18 IF6.PrefixV4 24 vMsbc3-10.10.20.19 OamIP ['10.10.20.17','10.10.20.18'] vMsbc3-10.10.20.19 Oam1Ip 10.10.20.17 vMsbc3-10.10.20.19 Oam2Ip 10.10.20.18 vMsbc3-10.10.20.19 IFO.GWV6 fd00:10:6b50:43AO::1 vMsbc3-10.10.20.19 IF0.IPV6 FD00:10:6B50:43AO::D2 vMsbc3-10.10.20.19 IFO.Port MgtO vMsbc3-10.10.20.19 IFl.GWV4 10.10.20.1 vMsbc3-10.10.20.19 IFl.IPV4 10.10.20.19 vMsbc3-10.10.20.19 IFl.Port HaO vMsbc3-10.10.20.19 IF2.GWV6 FD00:10:6B50:4D74::1 vMsbc3-10.10.20.19 IF2.IPV6 FD00:10:6B50:4D74::D2 vMsbc3-10.10.20.19 IF2.Port PktO vMsbc3-10.10.20.19 IF3.GWV6 FD00:10:6B50:4D70::1 vMsbc3-10.10.20.19 IF3.IPV6 FD00:10:6B50:4D70::B vMsbc3-10.10.20.19 IF3.Port PktO vMsbc3-10.10.20.19 IF4.GWV4 10.54.226.129 vMsbc3-10.10.20.19 IF4.IPV4 10.54.226.140 vMsbc3-10.10.20.19 IF4.Port PktO vMsbc3-10.10.20.19 IF5.GWV4 10.54.226.193 vMsbc3-10.10.20.19 IF5.IPV4 10.54.226.204 vMsbc3-10.10.20.19 IF5.Port PktO vMsbc3-10.10.20.19 IF6.GWV4 10.10.13.1 vMsbc3-10.10.20.19 IF6.IPV4 10.10.13.19 vMsbc3-10.10.20.19 IF6.Port Pktl |
Code Block |
---|
vMsbc3-10.10.20.19 IF2.Vlanid 313 vMsbc3-10.10.20.19 IF3.Vlanid 309 vMsbc3-10.10.20.19 IF4.Vlanid 311 vMsbc3-10.10.20.19 IFS.Vlanid 312 vMsbc3-10.10.20.19 IFO.PrefixV6 60 vMsbc3-10.10.20.19 IFl.PrefixV4 24 vMsbc3-10.10.20.19 IF2.PrefixV6 64 vMsbc3-10.10.20.19 IF3.PrefixV6 64 vMsbc3-10.10.20.19 IF4.PrefixV4 26 vMsbc3-10.10.20.19 IF5.PrefixV4 26 vMsbc3-10.10.20.19 IF6.PrefixV4 24 vMsbc4-10.10.20.26 OamIP ['10.10.20.17','10.10.20.18'] vMsbc4-10.10.20.26 Oam1Ip 10.10.20.17 vMsbc4-10.10.20.26 Oam2Ip 10.10.20.18 vMsbc4-10.10.20.26 IFO.GWV6 fd00:10:6b50:43AO::1 vMsbc4-10.10.20.26 IF0.IPV6 FD00:10:6B50:43AO::D9 vMsbc4-10.10.20.26 IFO.Port MgtO vMsbc4-10.10.20.26 IFl.GWV4 10.10.20.1 vMsbc4-10.10.20.26 IFl.IPV4 10.10.20.26 vMsbc4-10.10.20.26 IFl.Port HaO vMsbc4-10.10.20.26 IF2.GWV6 FD00:10:6B50:4D74::1 vMsbc4-10.10.20.26 IF2.IPV6 FD00:10:6B50:4D74::D9 vMsbc4-10.10.20.26 IF2.Port PktO vMsbc4-10.10.20.26 IF3.GWV6 FD00:10:6B50:4D70::1 vMsbc4-10.10.20.26 IF3.IPV6 FD00:10:6B50:4D70::12 vMsbc4-10.10.20.26 IF3.Port PktO vMsbc4-10.10.20.26 IF4.GWV4 10.54.226.129 vMsbc4-10.10.20.26 IF4.IPV4 10.54.226.147 vMsbc4-10.10.20.26 IF4.Port PktO vMsbc4-10.10.20.26 IF5.GWV4 10.54.226.193 vMsbc4-10.10.20.26 IF5.IPV4 10.54.226.211 vMsbc4-10.10.20.26 IF5.Port PktO vMsbc4-10.10.20.26 IF6.GWV4 10.10.13.1 vMsbc4-10.10.20.26 IF6.IPV4 10.10.13.26 vMsbc4-10.10.20.26 IF6.Port Pktl vMsbc4-10.10.20.26 IF2.Vlanid 313 vMsbc4-10.10.20.26 IF3.Vlanid 309 vMsbc4-10.10.20.26 IF4.Vlanid 311 vMsbc4-10.10.20.26 IF5.Vlanid 312 vMsbc4-10.10.20.26 IFO.PrefixV6 60 vMsbc4-10.10.20.26 IFl.PrefixV4 24 vMsbc4-10.10.20.26 IF2.PrefixV6 64 vMsbc4-10.10.20.26 IF3.PrefixV6 64 vMsbc4-10.10.20.26 IF4.PrefixV4 26 vMsbc4-10.10.20.26 IF5.PrefixV4 26 vMsbc4-10.10.20.26 IF6.PrefixV4 24 |
Code Block |
---|
vMsbcS-10.10.20.11 OamIP ['10.10.20.17','10.10.20.18'] vMsbcS-10.10.20.11 Oam1Ip 10.10.20.17 vMsbcS-10.10.20.11 Oam2Ip 10.10.20.18 vMsbcS-10.10.20.11 IFO.GWV6 fd00:10:6b50:43AO::1 vMsbcS-10.10.20.11 IF0.IPV6 FD00:10:6B50:43AO::CA vMsbcS-10.10.20.11 IFO.Port MgtO vMsbcS-10.10.20.11 IFl.GWV4 10.10.20.1 vMsbcS-10.10.20.11 IFl.IPV4 10.10.20.11 vMsbcS-10.10.20.11 IFl.Port HaO vMsbcS-10.10.20.11 IF2.GWV6 FD00:10:6B50:4D74::1 vMsbcS-10.10.20.11 IF2.IPV6 FD00:10:6B50:4D74::CA vMsbcS-10.10.20.11 IF2.Port PktO vMsbcS-10.10.20.11 IF3.GWV6 FD00:10:6B50:4D70::1 vMsbcS-10.10.20.11 IF3.IPV6 FD00:10:6B50:4D70::3 vMsbcS-10.10.20.11 IF3.Port PktO vMsbcS-10.10.20.11 IF4.GWV4 10.54.226.129 vMsbcS-10.10.20.11 IF4.IPV4 10.54.226.132 vMsbcS-10.10.20.11 IF4.Port PktO vMsbcS-10.10.20.11 IF5.GWV4 10.54.226.193 vMsbcS-10.10.20.11 IF5.IPV4 10.54.226.196 vMsbcS-10.10.20.11 IF5.Port PktO vMsbcS-10.10.20.11 IF6.GWV4 10.10.13.1 vMsbcS-10.10.20.11 IF6.IPV4 10.10.13.11 vMsbcS-10.10.20.11 IF6.Port Pktl vMsbcS-10.10.20.11 IF2.Vlanid 313 vMsbcS-10.10.20.11 IF3.Vlanid 309 vMsbcS-10.10.20.11 IF4.Vlanid 311 vMsbcS-10.10.20.11 IFS.Vlanid 312 vMsbcS-10.10.20.11 IFO.PrefixV6 60 vMsbcS-10.10.20.11 IFl.PrefixV4 24 vMsbcS-10.10.20.11 IF2.PrefixV6 64 vMsbcS-10.10.20.11 IF3.PrefixV6 64 vMsbcS-10.10.20.11 IF4.PrefixV4 26 vMsbcS-10.10.20.11 IF5.PrefixV4 26 vMsbcS-10.10.20.11 IF6.PrefixV4 24 [ok] [2017-08-04 12:26:35] |
The metavariable names are used for configuration:
Code Block |
---|
set addressContext default ipInterfaceGroup LIG1 ipInterface LIG1_V4 ipVarV4 IF2.IPV4 prefixVarV4 IF2.PrefixV4 vlanTagVar IF5.VlanId portName pkt0 state enabled mode inService set addressContext default ipInterfaceGroup LIG2 ipInterface LIG2_V4 ipVarV4 IF3.IPV4 prefixVarV4 IF3.PrefixV4 ipPublicVarV4 IF3.FIPV4 portName pkt1 state enabled mode inService set addressContext default zone ZONE_AS sipSigPort 3 ipInterfaceGroup LIG2 ipVarV4 IF3.IPV4 ipPublicVarV4 IF3.FIPV4 state enabled set system dsbc dsbcSigPort ipInterfaceGroup SRRIMSMediaIPv6 ipVarV6 PKT0_V02_ALT_IP_01.IP mode inService state enabled commit |
Pagebreak |
---|