Changes between Version 60 and Version 61 of GENIExperimenter/Tutorials/GENI-SAVI/DesignSetup


Ignore:
Timestamp:
06/22/15 17:28:21 (9 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/GENI-SAVI/DesignSetup

    v60 v61  
    144144}}}
    145145
    146 === (a) Create an Ansible Hosts file ===
    147 
    148 An Ansible hosts file is of the form
     146=== (a) Create an Ansible inventory file ===
     147
     148An Ansible inventory file is of the form
    149149{{{
    150150  [group_name]
     
    152152       server2_spec
    153153}}}
    154 where group_name is a name for a group of nodes, and a server spec contains login information for a node.  An example of a server specification is
     154where `group_name` is a name for a group of nodes, and a server spec contains login information for a node.  An example of a server specification is:
    155155{{{
    156156    ansible_ssh_host=142.150.208.146  ansible_ssh_port=22 ansible_ssh_user=rickmcg_geni ansible_ssh_private_key=~/.ssh/geni_key_portal
    157157}}}
    158158
    159 Create an Ansible Hosts file named `ansible-hosts` for your slice.
    160 
    161 Your ansible hosts file should look like this:
     159Create an Ansible inventory file named `ansible-hosts` for your slice.
     160
     161Your ansible inventory file should look like this:
    162162
    163163{{{
     
    167167}}}
    168168
    169 Where geni_resource_name and savi_resource_ip are what you found from the listinstance commands from step 3.
     169Where `geni_resource_name` and `savi_resource_ip` are what you found from the `listinstance` commands from step 3.
    170170
    171171=== (b) Add private key to SSH agent ===