Update def config

This commit is contained in:
2022-06-25 16:00:12 +08:00
parent 7d1d11621a
commit c6fb6c8621
2 changed files with 5 additions and 5 deletions

View File

@ -543,7 +543,7 @@ struct nvram_pair router_defaults[] = {
#if defined(APP_VLMCSD)
/* vlmcsd */
{ "vlmcsd_enable", "0" },
{ "vlmcsd_enable", "1" },
#endif
#if defined(APP_DNSFORWARDER)

View File

@ -30,11 +30,11 @@
#define SYS_USER_NOBODY "nobody"
#define SYS_GROUP_NOGROUP "nogroup"
#define DEF_LAN_ADDR "192.168.2.1"
#define DEF_LAN_DHCP_BEG "192.168.2.100"
#define DEF_LAN_DHCP_END "192.168.2.244"
#define DEF_LAN_ADDR "192.168.1.1"
#define DEF_LAN_DHCP_BEG "192.168.1.100"
#define DEF_LAN_DHCP_END "192.168.1.200"
#define DEF_LAN_MASK "255.255.255.0"
#define DEF_LAN_GW "192.168.1.10"
#define DEF_LAN_GW "192.168.1.10"
#define DEF_LAN_DNS1 "192.168.1.10"
#define DEF_LAN_DNS2 "192.168.1.1"