User Tools

Site Tools


wiki:sandbox

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
wiki:sandbox [2014/11/27 10:08]
Christopher Price
wiki:sandbox [2015/02/27 18:51] (current)
Aric Gardner
Line 1: Line 1:
-====== OPNFV Sandbox ====== +====== ​Packstack ​OPNFV Sandbox ====== 
- +This OPNFV SandBox is intended to be a laptop compatible dev environment.  ​It is currently under development. ​
-The OPNFV SandBox is intended to be a laptop compatible dev environment.  ​The SandBox ​is currently under development. ​+
 Get involved, download it and help evaluate, debug and improve! ​ Get involved, download it and help evaluate, debug and improve! ​
 [[https://​github.com/​Aricg/​PackStackSandBox]] [[https://​github.com/​Aricg/​PackStackSandBox]]
  
-SandBox currently exists as a template for further sandbox work with packstack, it brings up two nodes on a machine with at least 8GB of memory. One controller and One Compute/​Networking node. It is intended to be easy to modify to meet our/your needs.+SandBox currently exists as a template for further sandbox work with packstack, it brings up two nodes on a machine with at least 6GB of memory. One controller and One Compute/​Networking node. It is intended to be easy to modify to meet our/your needs.
 The nodes can be reached after vagrant up with vagrant ssh controller vagrant ssh compute  ​ The nodes can be reached after vagrant up with vagrant ssh controller vagrant ssh compute  ​
  
 ===== SandBox getting started ===== ===== SandBox getting started =====
 +Can be run in bridged mode or nat mode, see below for details \\
 +It's possible that the documentation on the github page will be more current https://​github.com/​Aricg/​PackStackSandBox ​
  
-Get VirtualBox [[https://​www.virtualbox.org/​wiki/​Downloads]]+nodes can be reached after vagrant up with 
 +    vagrant ssh controller 
 +    vagrant ssh compute ​
  
-Get Vagrant [[https://​www.vagrantup.com/downloads.html]]+Requirements 
 +============ 
 +Get VirtualBox ​https://​www.virtualbox.org/wiki/​Downloads
  
-Check you have Ruby installed: //root$: ruby -v// +Get Vagrant ​https://​www.vagrantup.com/downloads.html
-  Should result in 'ruby 2.0.0p481 (2014-05-08 revision 45883) [universal.x86_64-darwin14]'​ or equivalent. ​ Install Ruby if it is not installed: [[https://​www.ruby-lang.org/en/​installation/​]]+
  
 Install vagrant-vbguest Install vagrant-vbguest
  
-vagrant plugin install vagrant-vbguest+    ​vagrant plugin install vagrant-vbguest
  
-Enable bridged mode on your local machine+Get this repo
  
-$ brctl show +    ​git clone https://​github.com/​Aricg/​PackStackSandBox.git && cd PackStackSandBox
-bridge name     ​bridge id               STP enabled ​    ​interfaces +
-docker0 ​        8000.28d244719f30 ​      ​no ​             enp0s25+
  
-Get this repo 
  
-git clone git@github.com:​Aricg/​PackStackSandBox.git && cd PackStackSandBox+Nat Mode 
 +========
  
-Vagrantfile.yml+Copy Vagrantfile.yml.template.natmode to Vagrantfile.yml ​
  
-Modify Vagrantfile.yml ​to reflect ​the network avaliable to you. Note that I have a /22 avaliable on my home network, We will need to reserve a /24 section of whatever network you are on so that we can create a route to the neutron router we later create. eg:+Nat networking will provide the gateway ​to the internet as well as connectivity between hosts throught ​the vboxnetX interface created by vagrant
  
-route add -net 192.168.x.0 netmask 255.255.255.0 gw 192.168.x.1 ​+Setup Masquerade/​Forwarding on your host to you vboxnet interface
  
-Without this, you will not be able to route to your VMs. (Outbound traffic will still work)+Linux:
  
-My working config:+make sure these are set in /​etc/​sysctl.d
  
-bridge: docker0 ​  +    net.ipv4.ip_forward = 1 
-netmask: 255.255.252.0  +    net.ipv4.conf.all.proxy_arp = 1 
-gateway: 192.168.0.1 + 
-neutron_router_start:​ 192.168.3.1 +And loaded 
-neutron_router_end:​ 192.168.3.128 + 
-controller:​ +    sudo sysctl -p 
-  bridged_ip: 192.168.1.91 + 
-  private_ip: ​192.168.22.92 +In my example my hosts interface for internet connetiviy is docker0 (yours might be eth0 for example) and my the vboxnet brought up by vagrant up is vboxnet4 and the subnet I have set for the sandbox machines in the vagrantfile.yaml is 10.0.20.0/​22 
-compute: + 
-  bridged_ip: 192.168.1.93 +    iptables -A FORWARD -o docker0 -i vboxnet4 -s 10.0.20.0/​22 -m conntrack --ctstate NEW -j ACCEPT 
-  private_ip: ​192.168.22.94+    iptables -A FORWARD -m conntrack --ctstate ESTABLISHED,​RELATED -j ACCEPT 
 +    iptables -A POSTROUTING -t nat -j MASQUERADE 
 + 
 +In this example we have set the vboxnet to  the 10.0.20.0/​22 range. 
 + 
 +OSX: 
 + 
 +Don't have a mac, this is untested 
 + 
 +    /​usr/​sbin/​natd -interface en0 
 +    /sbin/ipfw -f flush 
 +    /sbin/ipfw add divert natd all from any to any via en0 
 +    /sbin/ipfw add pass all from any to any 
 +    sudo sysctl -w net.inet.ip.forwarding=1 
 + 
 +Vagrant ssh into the compute and the controller node and set the default route to vboxnet0 rather than the nat device that vagrant sets at default 
 + 
 +TODO automate this. 
 + 
 +    ip route del default 
 +    ip route add default via 10.0.20.1 (the gateway set it your Vagrantfile.yml) dev eth1 
 + 
 +You are now ready to "​Launch Vagrant"​ (see below)  
 + 
 +Bridged Mode 
 +=========== 
 + 
 +If you are able to configure and use a bridge we can bring up openstack VMs on your local network. you will need a netmask of 23 or below. 
 + 
 +My bridge in this readme is called docker0 
 + 
 +    $ brctl show 
 +    bridge name     ​bridge id               STP enabled ​    ​interfaces 
 +    docker0 ​     
 + 
 + 
 +To start copy Vagrantfile.yml.template.bridgemode to Vagrantfile.yml to reflect the network avaliable to you. In this example I have a /22 avaliable on my home network, Later we reserve a /24 section of my /22 network for the neutron router we create.  
 + 
 +My example config: 
 + 
 +    ​bridge: docker0 ​  
 +    netmask: 255.255.252.0  
 +    gateway: 192.168.0.1 
 +    neutron_router_start:​ 192.168.3.1 
 +    neutron_router_end:​ 192.168.3.128 
 +    controller:​ 
 +      bridged_ip: 192.168.1.91 
 +      private_ip: ​10.2.20.2 
 +    compute: 
 +      bridged_ip: 192.168.1.93 
 +      private_ip: ​10.2.20.
 +     
 +You are now ready to "​Launch Vagrant"​ (see below)
  
 Vagrantfile.yml Explanation Vagrantfile.yml Explanation
 +==========================
  
-bridge: name of your bridge interface ($ brctl show )+Warning, make sure there are no trailing white spaces in this file
  
-netmasknetmask of your private subnet, probably given to you via dhcp. you can see this with ifconfighowever on osx if will be in the unreadble format, something like 0xffffff00 Refer here for a table that human can read. http://​www.pawprint.net/​designresources/​netmask-converter.php Most home networks only give out a /24 you will need to log into your router and change your range to at least a /23 so that we an properly route to the router that neutron creates.+**nat_mode:** set to yes for nat modeleave blank for bridge mode
  
-gatewayYour workstations gateway to the internet ​(your routers ip, this is also the ip you go to to increase your network size you can check this with ip r on linux or netstat -nr on osx+**bridge:** name of your bridge interface ​($ brctl show leave blank for nat mode
  
-neutron_router_startThis will be the start of your openstack dhcpI also use this to guess your neutron router gatewayMake it something that is routable but that none of your computers are usingegIf my workstation and gateway(router) were in the 192.168.0.0/24 range I could make the neutron ​range inside 192.168.1.0/​24 eg: 192.168.1.1-192.168.1.254+**netmask:** netmask ​of your private subnetprobably given to you via dhcpyou can see this with ifconfig, however on osx if will be in the unreadble format, ​something ​like 0xffffff00 Refer here for a table that human can readhttp://www.pawprint.net/​designresources/​netmask-converter.php Most home networks only give out a /24 you will need to log into your router and change your range to at least a /23 so that we an properly route to the router that neutron ​creates
  
-neutron_router_end:​ the end of the range explained above+**gateway:​** ​ For bridged mode Your workstations gateway to the internet (your routers ip, this is also the ip you go to to increase your network size 
 +) you can check this with ip r on linux or netstat -nr on osx 
 +For nat mode set this to the first ip in the range you are choosing for private_ip  
 + 
 +**neutron_router_start:​** This will be the start of your openstack dhcp, I also use this as your neutron router gateway. give neutron its own /24 range 
 + 
 +**neutron_router_end:​** the end of the range explained above
  
 controller: controller:
  
-bridged_ip: this interface should be given an ip on the same /24 as your workstation.+  **bridged_ip:** this interface should be given an ip on the same /24 as your workstation.
  
-private_ip: this interface can have any ip you want, virtualbox deals with the routing.+  **private_ip:** this interface can have any ip you want, virtualbox deals with the routing.
  
 compute: compute:
  
-bridged_ip: same rules as the controller bridged_ip but unique+  **bridged_ip:** same rules as the controller bridged_ip but unique
  
-private_ip: same rules as controller: private_ip but unique +  **private_ip:** same rules as controller: private_ip but unique
-Launch Vagrant+
  
-vagrant up+for nat mode set the bridged_ip and private_ip to the same values for each host (as seen in Vagrantfile.yml.template.natmode) 
 + 
 +Launch Vagrant 
 +============== 
 +     
 +    ​vagrant up
  
 ssh into the vagrant controller (password is vagrant) ssh into the vagrant controller (password is vagrant)
  
-vagrant ssh controller+    ​vagrant ssh controller
  
-run packstack+run packstack ​(for nat mode complete steps below first) ​
  
-cd /vagrant +    ​cd /vagrant 
-sudo bash +    sudo bash 
-packstack ​ --answer-file=ans.txt && cp /​root/​keystonerc_admin /vagrant+    packstack ​ --answer-file=ans.txt && ​yes|cp /​root/​keystonerc_admin /vagrant
  
-Networking+the answerfile is generated from ans.template or ans.NAT.template when you run vagrant up.  
 +packstack should now prompt you for the root password of both nodes. The password is "​vagrant"​ 
 +if packstack fails for some reason, just run it again. ​
  
 +Networking
 +==========
 To setup networking, and launch the cirros minimal VM you must wait for the above operations to complete. (packstack and copying the keystonerc_admin) Once those are done, vagrant ssh into the networking (compute node): To setup networking, and launch the cirros minimal VM you must wait for the above operations to complete. (packstack and copying the keystonerc_admin) Once those are done, vagrant ssh into the networking (compute node):
  
-vagrant ssh compute +    ​vagrant ssh compute 
-[vagrant@compute]#​ sudo bash +    [vagrant@compute]#​ sudo bash 
-[root@compute ]# cd /vagrant && ./​SetupComputeNode+    [root@compute ]# cd /vagrant && ./​SetupComputeNode
  
-Trouble-shooting+That's it everything should work now.
  
 +Testing
 +=======
 +
 +Dashboard
 +
 +Natmode:
 +http://​localhost:​8080/​dashboard/ ​
 +
 +Bridgemode:
 +
 +http://​compute.bridged.ip from your vagtantfile.yml
 +
 +CirrosVM:
 +
 +ssh into the CirrosVM spawned by ./​SetupComputeNode and ping the outside world
 +
 +    [root@compute vagrant]# source keystonerc_admin
 +    [root@compute vagrant(keystone_admin)]#​ neutron floatingip-list
 +    +--------------------------------------+------------------+---------------------+--------------------------------------+
 +    | id                                   | fixed_ip_address | floating_ip_address | port_id ​                             |
 +    +--------------------------------------+------------------+---------------------+--------------------------------------+
 +    | ea3d5757-e646-4d6e-9c0d-e6304cee3ff0 | 172.17.0.2 ​      | 10.0.23.2 ​          | 53157795-741e-479c-afb6-1ceb26fd500e |
 +    +--------------------------------------+------------------+---------------------+--------------------------------------+
 +    [root@compute vagrant(keystone_admin)]#​ ssh cirros@10.0.23.2
 +    cirros@10.0.23.2'​s password: cubswin:)
 +    $ ping 8.8.8.8
 +    PING 8.8.8.8 (8.8.8.8): 56 data bytes
 +    64 bytes from 8.8.8.8: seq=0 ttl=50 time=24.782 ms
 +    64 bytes from 8.8.8.8: seq=1 ttl=50 time=23.527 ms
 +
 +Tools
 +=====
 +
 +Ideally this sandbox will be loaded with usefull tools enumerated here. Right now there are some scripts that I use to setup the networking node
 +
 +SetupNeutron:​ This sets up neutron with a router for external connectivity for your VM's, this file is generated by ./​build_SetupNeutron ​
 +
 +SwitchToQemu:​ KVM is not supported inside virtualbox, this script switches to qemu
 +
 +LaunchCirrosVM:​ Launches a vm with the name $1
 +
 +DeleteNetwork:​ Runs throught some loops and removes all openstack networking, must be run on the compute node
 +
 +Trouble-shooting
 +================
 When restarting netwoking, the neutron switch become unresponsive,​ you'll need to restart various neutron components When restarting netwoking, the neutron switch become unresponsive,​ you'll need to restart various neutron components
  
-service network restart +    ​service network restart 
-for i in dhcp-agent l3-agent metadata-agent openvswitch-agent;​ \ +    for i in dhcp-agent l3-agent metadata-agent openvswitch-agent;​ \ 
-do service neutron-$i restart; done +    do service neutron-$i restart; done 
-neutron agent-list +    neutron agent-list 
-#takes me 38 seconds before I can ping a the router+    #takes me 38 seconds before I can ping a the router
  
 Vagrant exits with a syntax error Vagrant exits with a syntax error
- +    ​ 
-Message: undefined method `[]' for nil:​NilClass+    Message: undefined method `[]' for nil:​NilClass
  
 Try running the included ./testyaml you may need to install the ruby yaml library Try running the included ./testyaml you may need to install the ruby yaml library
Line 116: Line 230:
 Vagrant Can't download the box on OSX Vagrant Can't download the box on OSX
  
-vagrant box add --name controller https://​build.opnfv.org/​downloads/​controller.box  +    ​vagrant box add --name controller https://​build.opnfv.org/​downloads/​controller.box  
-vagrant init controller+    vagrant init controller
  
 This will help you debug some wierd permission erros that we've seen on osx This will help you debug some wierd permission erros that we've seen on osx
-Things that still suck 
  
-Vagrant reconfigures the network device eth1 on boot. even tho I have managed set to false. this breaks everything. Gar.+Wierd locale issue.  
 + 
 +    ERROR : Error appeared during Puppet run: 10.0.20.2_glance.pp 
 +    Notice: /​Stage[main]/​Glance::​Registry/​Exec[glance-manage db_sync]/​returns:​ ValueError: unknown locale: UTF-8 
 + 
 +Edit your /​etc/​ssh_config file on your Mac OS X system and remove LC_CTYPE from SendEnv. This will cause the ssh client to stop propagating LC_CTYPE to the ssh servers. 
 + 
 + 
 +Caveats 
 +====================== 
 +Vagrant reconfigures the network device eth1 on boot.  
 +You will need to run /​vagrant/​SetupComputeNodeAfterReboot each time the compute node is rebooted. 
 + 
 + 
 +Contribute! 
 +=========== 
 + 
 +Fork this repo 
 +Create your feature branch (git checkout -b my-new-feature) 
 +Commit your changes (git commit -am 'Add some feature'​) 
 +Push to the branch (git push origin my-new-feature) 
 +Create new Pull Request 
  
  
wiki/sandbox.1417082930.txt.gz · Last modified: 2014/11/27 10:08 by Christopher Price