Cisco Cisco Prime Network Services Controller 3.4

Página de 20
Procedure
Step 1
Install ethtool by entering the following command:
apt-get install ethtool
Step 2
To identify the TAP interface of the network that is used for the DHCP service, enter the following command:
ip netns exec qdhcp-network-id ifconfig
Step 3
Turn off TX for the identified TAP interface by entering the following command:
ip netns exec qdhcp-network-id ethtool -K tapinterface-name tx off
Configuring a Prime Network Services Controller Instance on OpenStack Kilo
If you bring up a Prime Network Services Controller instance from an ISO image on the OpenStack Kilo platform, the PNSC installation
might loop after finishing and restart at the first step of the installation. This problem is due to an open issue on libvert. To correct
this problem, complete the following steps.
Procedure
Step 1
Locate the driver.py file in the /usr/lib/python2.7/site-packages/nova/virt/libvirt folder on the
OpenStack controller and compute nodes. Replace it with the driver.py file that is available on the public repository:
Step 2
After replacing the driver.py file on the controller and compute nodes, restart the nova service.
The following example shows the difference between the original driver.py file and the modified one:
# diff driver.py driver.py.orig
2192c2192
<
write_to_disk=True, pnsc=True)
---
>
write_to_disk=True)
4018c4018
<
instance, inst_path, image_meta, disk_info, pnsc=False):
---
>
instance, inst_path, image_meta, disk_info):
4027,4030c4027
<
if pnsc:
<
guest.os_boot_dev = ["hd"]
<
else:
<
guest.os_boot_dev = blockinfo.get_boot_order(disk_info)
---
>
guest.os_boot_dev = blockinfo.get_boot_order(disk_info)
4114c4111
<
context=None, pnsc=False):
---
8