VOL-1126 OLT disable/reenable

Change-Id: Icbfad962807945e26c50e467ec079d40b346060d
diff --git a/protos/openolt.proto b/protos/openolt.proto
index bc9e953..c4d4fd0 100644
--- a/protos/openolt.proto
+++ b/protos/openolt.proto
@@ -18,6 +18,20 @@
 
 service Openolt {
 
+    rpc DisableOlt(Empty) returns (Empty) {
+        option (google.api.http) = {
+          post: "/v1/Disable"
+          body: "*"
+        };
+    }
+
+    rpc ReenableOlt(Empty) returns (Empty) {
+        option (google.api.http) = {
+          post: "/v1/Reenable"
+          body: "*"
+        };
+    }
+
     rpc ActivateOnu(Onu) returns (Empty) {
         option (google.api.http) = {
           post: "/v1/EnableOnu"