Don't handle the ipv6 routing advertisement message

In ipv6 network where ipv6 router is there which keeps advertising
the router prefix, as part of handling this message BMC keeps adding the
new IP address on the interface which is leading to refresh the
network objects periodically.
This fix stops accepting the router advertisement messaage.

Resolves openbmc/openbmc#2739

Change-Id: I0a4068b5419133a25a2ea3f769f730e73860da50
Signed-off-by: Ratan Gupta <ratagupt@in.ibm.com>
diff --git a/network_manager_main.cpp b/network_manager_main.cpp
index a428bce..d13a857 100644
--- a/network_manager_main.cpp
+++ b/network_manager_main.cpp
@@ -124,6 +124,12 @@
         // will create it.
         phosphor::network::restartNetwork();
     }
+    else
+    {
+        // this will add the additional fixes which is needed
+        // in the existing network file.
+        phosphor::network::manager->writeToConfigurationFile();
+    }
 
     //RtnetLink socket
     phosphor::Descriptor smartSock;