added example VNFs for emulator (not finally tested)
diff --git a/misc/vnfs/iperf/Dockerfile b/misc/vnfs/iperf/Dockerfile
new file mode 100644
index 0000000..6696f64
--- /dev/null
+++ b/misc/vnfs/iperf/Dockerfile
@@ -0,0 +1,16 @@
+FROM ubuntu
+MAINTAINER iMinds
+
+RUN apt-get update && apt-get install -y \
+ mz \
+ iperf
+
+
+ADD start.sh start.sh
+RUN chmod +x start.sh
+
+# emulator specific entrypoint
+ENV SON_EMU_CMD ./start.sh
+
+# always use bash as defauld command
+CMD /bin/bash
\ No newline at end of file
diff --git a/misc/vnfs/iperf/start.sh b/misc/vnfs/iperf/start.sh
new file mode 100644
index 0000000..d252976
--- /dev/null
+++ b/misc/vnfs/iperf/start.sh
@@ -0,0 +1,6 @@
+#! /bin/bash
+
+#This gives time to the Dockernet to configure the network namespace of the container
+sleep 3
+
+echo "Traffic sink started"