<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-3">
<meta content="text/html; charset=utf-8">
</head>
<body>
<div>hello prasad , is your deployment </div>
<div>product or test environment ? </div>
<div><br>
</div>
<div>first time i see a tacker questions .  i think tacker will be most important part of openstack . </div>
<div>Hakan .</div>
<div><br>
</div>
<div id="composer_signature">Saygılar & Sevgiler</div>
<div><br>
</div>
<div><br>
</div>
<div>-------- Original message --------</div>
<div>From: prasad kokkula <prasadkokkula@gmail.com> </div>
<div>Date: 15/11/2016 19:31 (GMT+03:00) </div>
<div>To: openstack@lists.openstack.org </div>
<div>Subject: [Openstack] (no subject) </div>
<div><br>
</div>
<div>
<div dir="ltr">Hi,
<div><br>
</div>
<div>
<div>[Tacker]   I have tried to launch the vnf Instance using Tacker. vnf is launched succesfully and able to do SSH.</div>
<div><br>
</div>
<div>I have faced the issue, the connection points (CP2, CP3) are not getting ip addreess except managament CP (CP1). Could you please let me know is this Tacker issue or any configuration mismatch. </div>
<div><br>
</div>
<div>I have installed openstack newton release on Centos 7. Please let me know if you need any other configuration.</div>
<div><br>
</div>
<div><br>
</div>
<div><br>
</div>
<div>=====================================================================================</div>
<div>Below are the net-list ip's</div>
</div>
<div><br>
</div>
<div>
<div>[root@localhost (keystone_admin)]# neutron net-list</div>
<div>+--------------------------------------+-------------+-------------------------------------------------------+</div>
<div>| id                                   | name        | subnets                                               |</div>
<div>+--------------------------------------+-------------+-------------------------------------------------------+</div>
<div>| 55077c0e-8291-4730-99b4-f280967cb69e | public      | 39256aad-d075-4c38-bf2c-14613df2252e
<a href="http://172.24.4.224/28">172.24.4.224/28</a>  |</div>
<div>| 73bbaf70-9bdd-4359-a3a2-09dbd5734341 | private     | 09b9018c-ca3b-46ee-9a4e-507e5124139f
<a href="http://10.0.0.0/24">10.0.0.0/24</a>      |</div>
<div>| d0560ee9-9ab0-4df8-a0d2-14064950a17c | vnf_mgmt    | 01d2b67c-ee28-4875-92e0-a8e51fdf8401
<a href="http://192.168.200.0/24">192.168.200.0/24</a> |</div>
<div>| f98f38b8-8b6c-4adb-b0e9-a265ce969acf | vnf_private | 61d39f59-2ff7-4292-afd9-536f007fd30c
<a href="http://192.168.201.0/24">192.168.201.0/24</a> |</div>
<div>+--------------------------------------+-------------+-------------------------------------------------------+</div>
<div>[root@localhost (keystone_admin)]#</div>
</div>
<div><br>
</div>
<div>Tosca file used for vnf creation.</div>
<div><br>
</div>
<div><br>
</div>
<div>[root@localhost (keystone_admin)]# cat sample-vnfd.yaml<br>
</div>
<div><br>
</div>
<div>
<div>tosca_definitions_version: tosca_simple_profile_for_nfv_1_0_0</div>
<div><br>
</div>
<div>description: Demo vCPE example</div>
<div><br>
</div>
<div>metadata:</div>
<div>  template_name: sample-tosca-vnfd</div>
<div><br>
</div>
<div>topology_template:</div>
<div>  node_templates:</div>
<div>    VDU1:</div>
<div>      type: tosca.nodes.nfv.VDU.Tacker</div>
<div>      capabilities:</div>
<div>        nfv_compute:</div>
<div>          properties:</div>
<div>            num_cpus: 1</div>
<div>            mem_size: 512 MB</div>
<div>            disk_size: 1 GB</div>
<div>      properties:</div>
<div>        image: cirros1</div>
<div>        availability_zone: nova</div>
<div>        mgmt_driver: noop</div>
<div>        user_data_format: RAW</div>
<div>        config: |</div>
<div>          param0: key1</div>
<div>          param1: key2</div>
<div><br>
</div>
<div>    CP1:</div>
<div>      type: tosca.nodes.nfv.CP.Tacker</div>
<div>      properties:</div>
<div>        management: true</div>
<div>      requirements:</div>
<div>        - virtualLink:</div>
<div>            node: VL1</div>
<div>        - virtualBinding:</div>
<div>            node: VDU1</div>
<div><br>
</div>
<div>    CP2:</div>
<div>      type: tosca.nodes.nfv.CP.Tacker</div>
<div>      properties:</div>
<div>        anti_spoofing_protection: false</div>
<div>      requirements:</div>
<div>        - virtualLink:</div>
<div>            node: VL2</div>
<div>        - virtualBinding:</div>
<div>            node: VDU1</div>
<div><br>
</div>
<div>    CP3:</div>
<div>      type: tosca.nodes.nfv.CP.Tacker</div>
<div>      properties:</div>
<div>        anti_spoofing_protection: false</div>
<div>      requirements:</div>
<div>        - virtualLink:</div>
<div>            node: VL3</div>
<div>        - virtualBinding:</div>
<div>            node: VDU1</div>
<div><br>
</div>
<div>    VL1:</div>
<div>      type: tosca.nodes.nfv.VL</div>
<div>      properties:</div>
<div>        network_name: vnf_mgmt</div>
<div>        vendor: Tacker</div>
<div><br>
</div>
<div>    VL2:</div>
<div>      type: tosca.nodes.nfv.VL</div>
<div>      properties:</div>
<div>        network_name: vnf_private</div>
<div>        vendor: Tacker</div>
<div><br>
</div>
<div>    VL3:</div>
<div>      type: tosca.nodes.nfv.VL</div>
<div>      properties:</div>
<div>        network_name: private</div>
<div>        vendor: Tacker</div>
</div>
<div><br>
</div>
<div>===============================================================================================</div>
<div><br>
</div>
<div>Regards,</div>
<div>Varaprasad</div>
</div>
</div>
</body>
</html>