1ed90b55d079673e4b26e3b70d8749db8126117a
[integration.git] / test / mocks / mass-pnf-sim / README.md
1 ### Mass PNF simulator
2 The purpose of this simulator is to mimic the PNF for benchmark purposes.
3 This variant is based on the PNF simulator and use several components.
4 The modification are focusing on the following areas:
5     -add a script configuring and governing multiple instances of PNF simualtor
6     -removing parts which are not required for benchmark purposes.
7     -add functionality which creates and maintains the ROP files
8     -add functionality to query the actual ROP files and construct VES events based on them
9
10
11
12 ###Pre-configuration
13 The ipstart should align to a /28 Ip address range start (e.g. 10.11.0.16, 10.11.0.32)
14
15 For debug purposes, you can use your own IP address as VES collector, use "ip" command to determine it.
16
17 Example:
18 python3 ./mass-pnf-sim.py  --bootstrap 2 --ipves http://10.148.95.??:10000 --ipstart 10.11.0.16
19
20 ###Replacing VES for test purposes
21 `nc -l 10000`
22
23 ###Start
24 Define the amount of simulators to be launched
25 python3 ./mass-pnf-sim.py  --start 2
26
27
28 ###Stop and clean
29 python3 ./mass-pnf-sim.py  --stop 2
30 python3 ./mass-pnf-sim.py  --clean
31
32 ###Cleaning and recovery after incorrect configuration
33 docker stop $(docker ps -aq); docker rm $(docker ps -aq)