|
From: Selva N. <sel...@gm...> - 2015-12-07 02:18:06
|
This makes the default choice for the emulated dhcp server
address to be the network address, same as in the TAP mode. Also
change the default ifconfig_pool_end to broadcast - 1.
Currently the default ip for the dhcp server is the broadcast
address - 1, making that address not available for windows clients.
This change also brings the code in agreement with the comments in
helper.c and the documentation.
Signed-off-by: Selva Nair <sel...@gm...>
---
src/openvpn/helper.c | 2 +-
src/openvpn/tun.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/openvpn/helper.c b/src/openvpn/helper.c
index 62f88ec..cf29246 100644
--- a/src/openvpn/helper.c
+++ b/src/openvpn/helper.c
@@ -309,7 +309,7 @@ helper_client_server (struct options *o)
{
o->ifconfig_pool_defined = true;
o->ifconfig_pool_start = o->server_network + 2;
- o->ifconfig_pool_end = (o->server_network | ~o->server_netmask) - 2;
+ o->ifconfig_pool_end = (o->server_network | ~o->server_netmask) - 1;
ifconfig_pool_verify_range (M_USAGE, o->ifconfig_pool_start, o->ifconfig_pool_end);
}
o->ifconfig_pool_netmask = o->server_netmask;
diff --git a/src/openvpn/tun.c b/src/openvpn/tun.c
index 014d988..c09fefd 100644
--- a/src/openvpn/tun.c
+++ b/src/openvpn/tun.c
@@ -5324,7 +5324,7 @@ open_tun (const char *dev, const char *dev_type, const char *dev_node, struct tu
if (tt->options.dhcp_masq_custom_offset)
ep[2] = dhcp_masq_addr (tt->local, tt->remote_netmask, tt->options.dhcp_masq_offset);
else
- ep[2] = dhcp_masq_addr (tt->local, tt->remote_netmask, -1);
+ ep[2] = dhcp_masq_addr (tt->local, tt->remote_netmask, 0);
}
else
ep[2] = htonl (tt->remote_netmask);
--
1.7.10.4
|