DhcpServer: setting default scope lease days to 1.

This commit is contained in:
Shreyas Zare
2021-06-26 15:50:11 +05:30
parent 6b05b1155f
commit ba27b54ce5

View File

@@ -102,7 +102,7 @@ namespace DnsServerCore.Dhcp
scope.RouterAddress = IPAddress.Parse("192.168.1.1");
scope.UseThisDnsServer = true;
scope.DomainName = "local";
scope.LeaseTimeDays = 7;
scope.LeaseTimeDays = 1;
SaveScopeFile(scope);
}