Option added to enforce a configured destination address for DHCP packets

This commit is contained in:
Tobias Brunner
2012-09-13 10:59:24 +02:00
parent 493f85b696
commit bc6ec4de73
2 changed files with 17 additions and 1 deletions
+9 -1
View File
@@ -105,6 +105,11 @@ struct private_dhcp_socket_t {
* DHCP server address, or broadcast
*/
host_t *dst;
/**
* Force configured destination address
*/
bool force_dst;
};
/**
@@ -266,7 +271,7 @@ static bool send_dhcp(private_dhcp_socket_t *this,
ssize_t len;
dst = transaction->get_server(transaction);
if (!dst)
if (!dst || this->force_dst)
{
dst = this->dst;
}
@@ -701,6 +706,9 @@ dhcp_socket_t *dhcp_socket_create()
this->identity_lease = lib->settings->get_bool(lib->settings,
"%s.plugins.dhcp.identity_lease", FALSE,
charon->name);
this->force_dst = lib->settings->get_str(lib->settings,
"%s.plugins.dhcp.force_server_address", FALSE,
charon->name);
this->dst = host_create_from_string(lib->settings->get_str(lib->settings,
"%s.plugins.dhcp.server", "255.255.255.255",
charon->name), DHCP_SERVER_PORT);