Update README.md
[osm/vim-emu.git] / README.md
1 # Distributed Cloud Emulator
2
3 Contributors:
4
5 * Manuel Peuster <manuel.peuster@upb.de>
6
7
8 ### Requirements
9 * needs the latest [Dockernet](https://github.com/mpeuster/dockernet) to be installed on the system
10  * the emulator is implemented against Dockernet's APIs
11 * The emulator uses ZeroMQ based RPC to for communication between demo CLI client and cloud-like APIs
12  * `pip install zerorpc`
13  * (This will be replaced / extended by a REST API later)
14
15 ### Project structure
16 * **emuvim/** all emulator code 
17  * **api/** Data center API endpoint implementations (zerorpc, OpenStack REST, ...)
18  * **cli/** CLI client to interact with a running emulator
19  * **dcemulator/** Dockernet wrapper that introduces the notion of data centers and API endpoints
20  * **test/** Unit tests
21  * **example_topology.py** An example topology script to show how topologies can be specified
22
23 ### Installation
24 Automatic installation is provide through Ansible playbooks.
25 * Requires: Ubuntu 14.04 LTS
26 * `sudo apt-get install ansible git`
27 * `sudo vim /etc/ansible/hosts`
28 * Add: `localhost ansible_connection=local`
29
30 #### 1. Dockernet
31 * `cd`
32 * `git clone https://github.com/mpeuster/dockernet.git`
33 * `cd ~/dockernet/ansible`
34 * `sudo ansible-playbook install.yml`
35 * Wait (and have a coffee) ...
36
37 #### 2. Emulator
38 * Fork the repository.
39 * `cd`
40 * `git clone https://github.com/<user>/son-emu.git`
41 * `cd ~/son-emu/ansible`
42 * `sudo ansible-playbook install.yml`
43
44
45 ### Run
46 * First terminal:
47  * `cd ~/son-emu/emuvim`
48  * `sudo python example_topology.py`
49 * Second terminal:
50  * `cd ~/son-emu/emuvim/cli`
51  * `./son-emu-cli compute start -d datacenter1 -n vnf1`
52  * `./son-emu-cli compute start -d datacenter1 -n vnf2`
53  * `./son-emu-cli compute list`
54 * First terminal:
55  * `dockernet> vnf1 ping -c 2 vnf2`
56 * Second terminal:
57  *  `./son-emu-cli monitor get_rate -vnf vnf1` 
58
59 #### Example scripts:
60  * `./start_dcnetwork` starts an example datacenter network with monitoring api endpoint
61  * `./start_example_chain` sets up an example service chain, using the example docker container from `package_samples` https://github.com/sonata-nfv/packaging_samples/tree/master/VNFs
62
63 ### Run Unit Tests
64 * `cd ~/son-emu/emuvim`
65 * `sudo python test` or `sudo python test -v` for more outputs
66
67 ### CLI
68 * [Full CLI command documentation](https://github.com/sonata-nfv/son-emu/wiki/CLI-Command-Overview)
69
70
71 ### TODO
72 * DCemulator
73  * Advanced network model
74   * improve network management, multiple interfaces per container
75   * API to create multiple networks (per DC?)
76 * SDN Controller
77  * simple API to chain running VNFs
78 * Add resource constraints to datacenters
79 * Check if we can use the Mininet GUI to visualize our DCs?
80 * (Unit tests for zerorpc API endpoint, and any other new endpoint)
81
82
83 ### Features / Done
84 * Define a topology (Python script)
85  * Add data centers
86  * Add switches and links between the,
87 * Define API endpoints in topology
88  * call startAPI from topology definition and start it in a own thread
89  * make it possible to start different API endpoints for different DCs
90 * DCemulator
91  * correctly start and connect new compute resources at runtime
92  * remove and disconnect compute resources at runtime
93  * do IP management for new containers
94  * list active compute resources
95 * Cloud-like reference API with CLI for demonstrations
96  * Write CLI client
97  * Start compute (name, DC, image, network)
98  * Stop compute
99 * Create an Ansible-based automatic installation routine
100 * Unit tests
101