blob: 84cf3dc90b675835cc5167c1fe7959e9a36d7820 [file] [log] [blame]
#include "network_config.hpp"
#include <fstream>
#include <string>
namespace phosphor
{
namespace network
{
namespace bmc
{
void writeDHCPDefault(const std::string& filename,
const std::string& interface)
{
std::ofstream filestream;
filestream.open(filename);
filestream << "[Match]\nName=" << interface <<
"\n[Network]\nDHCP=true\nLinkLocalAddressing=yes\n"
"IPv6AcceptRA=false\n"
"[DHCP]\nClientIdentifier=mac\n";
filestream.close();
}
}
}//namespace network
}//namespace phosphor