Actions
Bug #853
closedIf used with the proxy, the dhcpd server is open for connections from any server
Description
When using :
omapi-port 7911;
The dhcpd api server will listen to any host. You might need to add something like this to provide basic security:
key omapi_key { algorithm HMAC-MD5; secret "XXXXXXXXX"; }; omapi-key omapi_key;
At first sight, it looks logic to me that the foreman's "subnet" settings should get an extra field "omapi_key".
If that field is not empty, "foreman-proxy/lib/proxy/dhcp/server/isc.rb" should issue an extra command ("OMSHELL key omapi_key XXXXXXXXX") when connecting to the dhcpd server.
Actions