User Tools

Site Tools


releases:arno:faq

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
releases:arno:faq [2015/07/24 19:20]
John Hermanski
releases:arno:faq [2015/08/03 22:40] (current)
Pratap Ramamurthy
Line 27: Line 27:
   * One or more of my nova instances do not get a DHCP IP   * One or more of my nova instances do not get a DHCP IP
       * This is a problem where the neutron dhcp agent does not get updated correctly when a new instance spawns. ​ A workaround is to create a neutron router and attach a port to the subnet before you spawn instances or dhcp server.       * This is a problem where the neutron dhcp agent does not get updated correctly when a new instance spawns. ​ A workaround is to create a neutron router and attach a port to the subnet before you spawn instances or dhcp server.
 +
 +   * I have an instance running, but how to I ssh into it?
 +      * Guest systems are typically run in their own Network Name Spaces. You will need to reference the name space when invoking ssh. Once you have created a network and added an instance to it, you can find the namespace, and then use it to do the ssh in that namespace. From the controller:
 +
 +    > ip netns list 
 +    qdhcp-3890e717-7712-471f-bfca-faf60737b4f5
 +    ​
 +    > ip netns exec qdhcp-3890e717-7712-471f-bfca-faf60737b4f5 ssh cirros@10.0.0.5
 +    cirros >
 +
 +   * I installed the ISO but could not find the bgs_demo directory. ​
 +      * You need to git clone 
 +
 +    git clone https://​gerrit.opnfv.org/​gerrit/​genesis
 +    cd genesis/​foreman/​ci
 +
 +   * How do I configure static ip ranges to be used by ARNO
 +
 +    ./deploy.sh -virtual -static_ip_range <​your_range>​ -base_config <​fullpath topwd>/​opnfv_ksgen_settings_no_HA.yml
 +    ​
 +    OR FOR HA:
 +    ./deploy.sh -virtual -static_ip_range <​your_range>​
 +    Where <​your_range>​ is a continous block of public IP addresses you can use.  Ex: 192.168.1.101,​192.168.1.120
 +    ​
 +
 +   * How many NICs do I need for a completely virtual installation?​
 +     * You only need 1 NIC card with virtual (ensure it has internet access).
 +
releases/arno/faq.1437765635.txt.gz · Last modified: 2015/07/24 19:20 by John Hermanski