06-05-2017 12:05 PM - edited 03-01-2019 03:51 AM
Hey, I would like to create test deployment in NSO where some networks are ephemeral.
When VNF-Info contains vnfd-connection-point references, like in the example below, then NSO expects that all network-id are pre-existing in Openstack. I would like to create MyCSR-1-ext and myCSR-2-ext networks in Openstack. How I can define this in VNF-Info?
Thanks!
Kali
<vnfd-connection-point>
<id>management-ext</id>
<network-name>os-management-net-0</network-name>
</vnfd-connection-point>
<vnfd-connection-point>
<id>MyCSR-1-ext</id>
<network-name>orch-inside-net-0</network-name>
</vnfd-connection-point>
<vnfd-connection-point>
<id>MyCSR-2-ext</id>
<network-name>orch-outside-net-0</network-name>
</vnfd-connection-point>
Solved! Go to Solution.
06-06-2017 09:05 AM
Yes, checkout additional-network in VNF info. Specify the network parameters there, and refer to the name in the vnfd-connection point:
...
vnfd-connection-point left {
network-name volvo-MyDeployment-inside-net;
}
...
additional-network volvo-MyDeployment-inside-net {
subnet {
network 192.168.1.0/30;
}
}
...
06-06-2017 09:05 AM
Yes, checkout additional-network in VNF info. Specify the network parameters there, and refer to the name in the vnfd-connection point:
...
vnfd-connection-point left {
network-name volvo-MyDeployment-inside-net;
}
...
additional-network volvo-MyDeployment-inside-net {
subnet {
network 192.168.1.0/30;
}
}
...
06-07-2017 01:48 AM
Thank you very much! Works like charm.
Btw. is there any way to configure the dhcp allocation range for the subnet? Similar to ESC XML?
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide