initial commit
diff --git a/onos-files/dhcp-to-controller-flow.json b/onos-files/dhcp-to-controller-flow.json
new file mode 100644
index 0000000..f2d31a2
--- /dev/null
+++ b/onos-files/dhcp-to-controller-flow.json
@@ -0,0 +1,26 @@
+{
+  "priority": 40000,
+  "timeout": 0,
+  "isPermanent": true,
+  "deviceId": "of:0000000000000001",
+  "treatment": {
+    "instructions": [
+      {
+        "type": "OUTPUT",
+        "port": "CONTROLLER"
+      }
+    ]
+  },
+  "selector": {
+    "criteria": [
+      {
+        "type": "IN_PORT",
+        "port": 1
+      },
+      {
+        "type": "VLAN_VID",
+        "vlanId": 222
+      }
+    ]
+  }
+}