|
@@ -28,12 +28,12 @@ the message.
|
|
|
This debug message is logged when the server has received a packet
|
|
|
over the socket. When the message is logged the contents of the received
|
|
|
packet hasn't been parsed yet. The only available information is the
|
|
|
-interface and the source and destination addresses/ports.
|
|
|
+interface and the source and destination IPv4 addresses/ports.
|
|
|
|
|
|
% DHCP4_BUFFER_UNPACK parsing buffer received from %1 to %2 over interface %3
|
|
|
This debug message is issued when the server starts parsing the received
|
|
|
buffer holding the DHCPv4 message. The arguments specify the source and
|
|
|
-destination addresses as well as the interface over which the buffer has
|
|
|
+destination IPv4 addresses as well as the interface over which the buffer has
|
|
|
been received.
|
|
|
|
|
|
% DHCP4_BUFFER_WAIT waiting for next DHCPv4 packet with timeout %1 ms
|
|
@@ -43,6 +43,14 @@ to wait for the packet. When this time elapses the server will pass
|
|
|
through its main loop to perform handling of any pending signals
|
|
|
and timers. After that, it will enter the wait state again.
|
|
|
|
|
|
+% DHCP4_BUFFER_WAIT_INTERRUPTED interrupted wait for the next packet due to timeout, signal or external socket callback (timeout value is %1)
|
|
|
+This debug message is issued when the server intrrupts waiting
|
|
|
+for reception of the next DHCPv6 message due to timeout, signal
|
|
|
+or reception of the data over socket other than used for DHCPv4
|
|
|
+message transmission. The server will now handle signals
|
|
|
+received and ready timers before waiting for next packets again.
|
|
|
+The argument specifies the timeout value in milliseconds.
|
|
|
+
|
|
|
% DHCP4_BUFFER_WAIT_SIGNAL signal received while waiting for next packet, next waiting signal is %1
|
|
|
This debug message is issued when the server was waiting for the
|
|
|
packet, but the wait has been interrupted by the signal received
|
|
@@ -50,12 +58,6 @@ by the process. The signal will be handled before the server starts
|
|
|
waiting for next packets. The argument specifies the next signal to
|
|
|
be handled by the server.
|
|
|
|
|
|
-% DHCP4_BUFFER_WAIT_TIMEOUT timeout %1 ms reached while waiting for the next packet
|
|
|
-This debug message is issued when the timeout has occurred while
|
|
|
-waiting for the next packet. The server will now handle signals
|
|
|
-received and ready timers before waiting for next packets again.
|
|
|
-The argument specifies the timeout value in milliseconds.
|
|
|
-
|
|
|
% DHCP4_CCSESSION_STARTED control channel session started on socket %1
|
|
|
A debug message issued during startup after the DHCPv4 server has
|
|
|
successfully established a session with the Kea control channel.
|
|
@@ -183,7 +185,7 @@ hooks framework will indicate the nature of the problem.
|
|
|
This debug message is printed when a callout installed on buffer4_receive
|
|
|
hook point set the skip flag. For this particular hook point, the
|
|
|
setting of the flag by a callout instructs the server to drop the packet.
|
|
|
-The arguments specify the source and destination address as well as
|
|
|
+The arguments specify the source and destination IPv4 address as well as
|
|
|
the name of the interface over which the buffer has been received.
|
|
|
|
|
|
% DHCP4_HOOK_BUFFER_SEND_SKIP %1: prepared response is dropped because a callout set the skip flag.
|
|
@@ -230,8 +232,8 @@ information.
|
|
|
This debug message is issued when the DHCPACK will be sent directly to the
|
|
|
client, rather than via a relay. The first argument contains the client
|
|
|
and transaction identification information. The second argument contains
|
|
|
-the client's address to which the response will be sent. The third argument
|
|
|
-contains the local interface name.
|
|
|
+the client's IPv4 address to which the response will be sent. The third
|
|
|
+argument contains the local interface name.
|
|
|
|
|
|
% DHCP4_INIT_FAIL failed to initialize Kea server: %1
|
|
|
The server has failed to initialize. This may be because the configuration
|
|
@@ -240,23 +242,23 @@ Attached error message provides more details about the issue.
|
|
|
|
|
|
% DHCP4_INIT_REBOOT %1: client is in INIT-REBOOT state and requests address %2
|
|
|
This debug message is issued when the client is in the INIT-REBOOT state and
|
|
|
-is requesting an address it is using to be allocated for it. The first argument
|
|
|
-includes the client and transaction identification information. The second
|
|
|
-argument specifies the requested IP address.
|
|
|
+is requesting an IPv4 address it is using to be allocated for it. The first
|
|
|
+argument includes the client and transaction identification information. The
|
|
|
+second argument specifies the requested IPv4 address.
|
|
|
|
|
|
% DHCP4_LEASE_ADVERT %1: lease %2 will be advertised
|
|
|
This debug message indicates that the server has found the lease to be
|
|
|
offered to the client. It is up to the client to choose one server out of
|
|
|
those which offered leases and continue allocation with that server.
|
|
|
The first argument specifies the client and the transaction identification
|
|
|
-information. The second argument specifies the address to be offered.
|
|
|
+information. The second argument specifies the IPv4 address to be offered.
|
|
|
|
|
|
% DHCP4_LEASE_ALLOC %1: lease %2 has been allocated
|
|
|
This debug message indicates that the server successfully granted a lease
|
|
|
in response to client's DHCPREQUEST message. The lease information will
|
|
|
be sent to the client in the DHCPACK message. The first argument
|
|
|
contains the client and the transaction identification information. The
|
|
|
-second argument contains the allocated address.
|
|
|
+second argument contains the allocated IPv4 address.
|
|
|
|
|
|
% DHCP4_LEASE_DATABASE_TIMERS_EXEC_FAIL failed to execute timer-based functions for lease database: %1
|
|
|
A warning message executed when a server process is unable to execute
|
|
@@ -268,8 +270,8 @@ hasn't been selected.
|
|
|
% DHCP4_NAME_GEN_UPDATE_FAIL %1: failed to update the lease after generating name %2 for a client: %3
|
|
|
This message indicates the failure when trying to update the lease and/or
|
|
|
options in the server's response with the hostname generated by the server
|
|
|
-from the acquired address. The message argument indicates the reason for the
|
|
|
-failure. The first argument includes the client and the transaction
|
|
|
+from the acquired IPv4 address. The message argument indicates the reason
|
|
|
+for the failure. The first argument includes the client and the transaction
|
|
|
identification information. The second argument specifies the hostname.
|
|
|
The third argument contains the error details.
|
|
|
|
|
@@ -295,10 +297,10 @@ DHCPv4 server but it is not running.
|
|
|
|
|
|
% DHCP4_NO_LEASE_INIT_REBOOT %1: no lease for address %2 requested by INIT-REBOOT client
|
|
|
This debug message is issued when the client being in the INIT-REBOOT state
|
|
|
-requested an address but this client is unknown. The server will not respond.
|
|
|
-The first argument includes the client and the transaction id identification
|
|
|
-information. The second argument includes the IP address requested by the
|
|
|
-client.
|
|
|
+requested an IPv4 address but this client is unknown. The server will not
|
|
|
+respond. The first argument includes the client and the transaction id
|
|
|
+identification information. The second argument includes the IPv4 address
|
|
|
+requested by the client.
|
|
|
|
|
|
% DHCP4_NO_SOCKETS_OPEN no interface configured to listen to DHCP traffic
|
|
|
This warning message is issued when current server configuration specifies
|
|
@@ -364,23 +366,23 @@ This error message is output when a packet was received from a subnet
|
|
|
for which the DHCPv4 server has not been configured. The most probable
|
|
|
cause is a misconfiguration of the server. The first argument contains
|
|
|
the client and transaction identification information. The second argument
|
|
|
-contains the source address of the packet. The third argument contains
|
|
|
+contains the source IPv4 address of the packet. The third argument contains
|
|
|
the name of the received packet.
|
|
|
|
|
|
% DHCP4_PACKET_NAK_0002 %1: invalid address %2 requested by INIT-REBOOT
|
|
|
This debug message is issued when the client being in the INIT-REBOOT state
|
|
|
-requested an address which is not assigned to him. The server will respond
|
|
|
+requested an IPv4 address which is not assigned to him. The server will respond
|
|
|
to this client with DHCPNAK. The first argument contains the client and
|
|
|
the transaction identification information. The second arguments holds the
|
|
|
-address requested by the client.
|
|
|
+IPv4 address requested by the client.
|
|
|
|
|
|
% DHCP4_PACKET_NAK_0003 %1: failed to advertise a lease, client sent ciaddr %2, requested-ip-address %3
|
|
|
This message indicates that the server has failed to offer a lease to
|
|
|
the specified client after receiving a DISCOVER message from it. There are
|
|
|
many possible reasons for such a failure. The first argument contains
|
|
|
the client and the transaction identification information. The second
|
|
|
-argument contains the address in the ciaddr field. The third
|
|
|
-argument contains the IP address in the requested-ip-address option
|
|
|
+argument contains the IPv4 address in the ciaddr field. The third
|
|
|
+argument contains the IPv4 address in the requested-ip-address option
|
|
|
(if present).
|
|
|
|
|
|
% DHCP4_PACKET_NAK_0004 %1: failed to grant a lease, client sent ciaddr %2, requested-ip-address %3
|
|
@@ -388,8 +390,8 @@ This message indicates that the server failed to grant a lease to the
|
|
|
specified client after receiving a REQUEST message from it. There are many
|
|
|
possible reasons for such a failure. Additional messages will indicate the
|
|
|
reason. The first argument contains the client and the transaction
|
|
|
-identification information. The second argument contains the address in
|
|
|
-the ciaddr field. The third argument contains the IP address in the
|
|
|
+identification information. The second argument contains the IPv4 address
|
|
|
+in the ciaddr field. The third argument contains the IPv4 address in the
|
|
|
requested-ip-address option (if present).
|
|
|
|
|
|
% DHCP4_PACKET_PACK %1: preparing on-wire format of the packet to be sent
|
|
@@ -407,15 +409,16 @@ A debug message noting that the server has received the specified type of
|
|
|
packet on the specified interface. The first argument specifies the
|
|
|
client and transaction identification information. The second and third
|
|
|
argument specify the name of the DHCPv4 message and its numeric type
|
|
|
-respectively. The remaining arguments specify the source address,
|
|
|
-destination IP address and the name of the interface on which the
|
|
|
+respectively. The remaining arguments specify the source IPv4 address,
|
|
|
+destination IPv4 address and the name of the interface on which the
|
|
|
message has been received.
|
|
|
|
|
|
% DHCP4_PACKET_SEND %1: sending packet %2 (type %3) from %4:%5 to %6:%7 on interface %8
|
|
|
This debug message is issued when the server is sending the response to
|
|
|
the client. The arguments specify the client identification information
|
|
|
(HW address and client identifier), DHCP message name and type, source
|
|
|
-address and port, destination address and port and the interface name.
|
|
|
+IPv4 address and port, destination IPv4 address and port and the
|
|
|
+interface name.
|
|
|
|
|
|
% DHCP4_PACKET_SEND_FAIL %1: failed to send DHCPv4 packet: %2
|
|
|
This error is output if the DHCPv4 server fails to send an assembled
|
|
@@ -470,7 +473,7 @@ The second parameter carries the details of the NameChangeRequest.
|
|
|
This debug message indicates that an address was released properly. It
|
|
|
is a normal operation during client shutdown. The first argument includes
|
|
|
the client and transaction identification information. The second argument
|
|
|
-includes the released IP address.
|
|
|
+includes the released IPv4 address.
|
|
|
|
|
|
% DHCP4_RELEASE_EXCEPTION %1: while trying to release address %2 an exception occured: %3
|
|
|
This message is output when an error was encountered during an attempt
|
|
@@ -479,7 +482,7 @@ which does not expect any response from the server for DHCPRELEASE
|
|
|
messages. Depending on the nature of problem, it may affect future
|
|
|
server operation. The first argument includes the client and the
|
|
|
transaction identification information. The second argument
|
|
|
-includes the IP address which release was attempted. The last
|
|
|
+includes the IPv4 address which release was attempted. The last
|
|
|
argument includes the detailed error description.
|
|
|
|
|
|
% DHCP4_RELEASE_FAIL %1: failed to remove lease for address %2
|
|
@@ -490,14 +493,15 @@ intervention (e.g. check if DHCP process has sufficient privileges to
|
|
|
update the database). It may also be triggered if a lease was manually
|
|
|
removed from the database during RELEASE message processing. The
|
|
|
first argument includes the client and the transaction identification
|
|
|
-information. The second argument holds the IP address which release
|
|
|
+information. The second argument holds the IPv4 address which release
|
|
|
was attempted.
|
|
|
|
|
|
% DHCP4_RELEASE_FAIL_NO_LEASE %1: client is trying to release non-existing lease %2
|
|
|
This debug message is printed when client attempts to release a lease,
|
|
|
but no such lease is known to the server. The first argument contains
|
|
|
the client and transaction identification information. The second
|
|
|
-argument contains the address which the client is trying to release.
|
|
|
+argument contains the IPv4 address which the client is trying to
|
|
|
+release.
|
|
|
|
|
|
% DHCP4_RELEASE_FAIL_WRONG_CLIENT_ID %1: client tried to release address %2, but this address is leased to different client using client id %3
|
|
|
This warning message indicates that client tried to release an address
|
|
@@ -513,7 +517,7 @@ a different hardware address. One possible reason for using different
|
|
|
hardware address is that a cloned virtual machine was not updated and
|
|
|
both clones use the same client-id. The first argument includes the
|
|
|
client and the transaction identification information. The second
|
|
|
-argument includes the address which release was attempted. The
|
|
|
+argument includes the IPv4 address which release was attempted. The
|
|
|
third argumnet includes the HW address of the lease owner.
|
|
|
|
|
|
% DHCP4_RESPONSE_FQDN_DATA %1: including FQDN option in the server's response: %2
|