Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Add_workflow_for_techpubs
AUTH1UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26cb41059c, userName='null'}
JIRAIDAUTHCHOR-3754
REV5UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26cef30cd08a00a0c85b2726c2015b58aa779d0003, userName='null'}
REV6UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26cd700a1f8a00a0c85b2726c2015b58aa779d0003, userName='null'}
REV3UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26ca2f03d1, userName='null'}
REV1UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26ccf70906, userName='null'}

...

  1. Log into either the KVM Hypervisor, VMware, or Hyper-V host.
  2. Enter the following commands to navigate to the appropriate directory.

    Code Block
    mkdir config_drive
    mkdir /config_drive/openstack
    mkdir /config_drive/openstack/<creation date>
    cd /config_drive/openstack/
    ln –s <creation date> latest
    
  3. Enter the following information in the meta_data.json file.

    Code Block
    {
        <uuid>: <instance12345.mydomain.com>
    }
    
  4. Enter the following information in the user_data file.

    Info
    titleNote

    It is optional to enter the MACAddress information of the interface objects (mgt0, pkt0, pkt1, pkt2, and pkt3).

    If you provide this information, the cloud-init function performs the interface mapping based on the supplied MAC addresses. If you do not provide this information, the interface mapping is performed using the default PCI order.

    You must include the MACAddress information to perform interface mapping.

    Code Block
    {
             
        "setup": {
                "admin_account": {
                    "adminUserName": "admin",
                    "adminUserPassword": "admin"
                },
                "rest_account": {
                    "restUserName": "rest_user",
                    "restUserPassword": "rest_password"
                },
                "netconfig_account": {
                    "netconfigUserPassword": "netconfig_password"
                },
                "dns": {
                    "primaryDNSServerIP":"125.62.150.2",
                    "secondaryDNSServerIP":"125.62.150.3",
                    "hostName": "SWELite-123",
                    "domainName": "rbbn.com"
                },
                "syslog": {
                    "ServerAddress":"1.1.1.1"
     
                },
                "ntp":{
                    "Ntp1ServerName":"10.253.6.92",
                    "IsNtp1AuthEnabled":"1",
                    "Ntp1ServerKeyId":"10",
                    "Ntp1ServerKey":10
                },
                "mgt0": {
                    "adminIPAddress": "10.21.150.3",
                    "adminNetmask": "255.255.128.0",
                    "gatewayAddress": "10.21.128.1",
                    "MACAddress": "52:54:00:51:2E:4C",
                    "ifIpAddrAssignMethod": "0"
                },
                "pkt0": {
                    "applicationIPV4Address": "192.168.21.2",
                    "applicationIPV4Netmask": "255.255.255.0",
                    "MACAddress": "52:54:00:51:47:4D",
                    "ifIpAddrAssignMethod": "0",
                    "NextHopIP1": "192.168.21.1"
                },
                "pkt1": {
                    "eth2IPV4Address":"192.168.22.2",
                    "eth2IPV4Netmask":"255.255.255.0",
                    "MACAddress": "52:54:00:51:BA:4E",
                    "NextHopIP2": "192.168.22.1"
                },
                "pkt2": {
                    "eth3IPV4Address":"192.168.3.2",
                    "eth3IPV4Netmask":"255.255.255.0",
                    "MACAddress": "00:11:22:33:44:58",
                    "NextHopIP3": "192.168.3.1"
                },
                "pkt3": {
                    "eth4IPV4Address":"192.168.4.2",
                    "eth4IPV4Netmask":"255.255.255.0",
                    "MACAddress": "00:11:22:33:44:59",
                    "NextHopIP4": "192.168.4.1"
                }
            }
    }

    Available_since
    TypeModified For
    Release8.0.3



    Info
    titleNote

    Only Release 8.0.3 and later support the netconfig_account configuration.

  5. Enter the following command to save the ISO file.

    Code Block
    mkisofs -R -V config-2 -o vendorconfig.iso /config_drive
  6. After you create the ISO file, enter the following commands to attach it to either the KVM Hypervisor, VMware, or Hyper-V.

    Info
    titleNote

    Alter the vendorconfig.iso filename so it identifies the vendor and VNF name.

    Code Block
     <disk type="file" device="cdrom">
          <driver name="qemu" type="raw" cache="none" />
          <source file="/var/third-party/vendorname/vendorconfig.iso" />
          <readonly />
          <target dev="vdc" />
      </disk>
  7. Boot the
    Spacevars
    0product3
    . The 
    Spacevars
    0product3
    performs auto configuration, and then opens the main WebUI.

...