dhcp4_messages.mes 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. # Copyright (C) 2012-2015 Internet Systems Consortium, Inc. ("ISC")
  2. #
  3. # This Source Code Form is subject to the terms of the Mozilla Public
  4. # License, v. 2.0. If a copy of the MPL was not distributed with this
  5. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  6. $NAMESPACE isc::dhcp
  7. % DHCP4_ACTIVATE_INTERFACE activating interface %1
  8. This message is printed when DHCPv4 server enabled an interface to be used
  9. to receive DHCPv4 traffic. IPv4 socket on this interface will be opened once
  10. Interface Manager starts up procedure of opening sockets.
  11. % DHCP4_ALREADY_RUNNING %1 already running? %2
  12. This is an error message that occurs when the DHCPv4 server encounters
  13. a pre-existing PID file which contains the PID of a running process.
  14. This most likely indicates an attempt to start a second instance of
  15. the server using the same configuration file. It is possible, though
  16. unlikely that the PID file is a remnant left behind by a server crash or
  17. power failure and the PID it contains refers to a process other than
  18. the server. In such an event, it would be necessary to manually remove
  19. the PID file. The first argument is the DHCPv4 process name, the
  20. second contains the PID and PID file.
  21. % DHCP4_BUFFER_RECEIVED received buffer from %1:%2 to %3:%4 over interface %5
  22. This debug message is logged when the server has received a packet
  23. over the socket. When the message is logged the contents of the received
  24. packet hasn't been parsed yet. The only available information is the
  25. interface and the source and destination IPv4 addresses/ports.
  26. % DHCP4_BUFFER_RECEIVE_FAIL error on attempt to receive packet: %1
  27. The DHCPv4 server tried to receive a packet but an error
  28. occurred during this attempt. The reason for the error is included in
  29. the message.
  30. % DHCP4_BUFFER_UNPACK parsing buffer received from %1 to %2 over interface %3
  31. This debug message is issued when the server starts parsing the received
  32. buffer holding the DHCPv4 message. The arguments specify the source and
  33. destination IPv4 addresses as well as the interface over which the buffer has
  34. been received.
  35. % DHCP4_BUFFER_WAIT waiting for next DHCPv4 packet with timeout %1 ms
  36. This debug message is issued when the server enters the state when it
  37. waits for new packets. The argument specifies the timeout for the server
  38. to wait for the packet. When this time elapses the server will pass
  39. through its main loop to perform handling of any pending signals
  40. and timers. After that, it will enter the wait state again.
  41. % DHCP4_BUFFER_WAIT_INTERRUPTED interrupted wait for the next packet due to timeout, signal or external socket callback (timeout value is %1)
  42. This debug message is issued when the server interrupts waiting
  43. for reception of the next DHCPv6 message due to timeout, signal
  44. or reception of the data over socket other than used for DHCPv4
  45. message transmission. The server will now handle signals
  46. received and ready timers before waiting for next packets again.
  47. The argument specifies the timeout value in milliseconds.
  48. % DHCP4_BUFFER_WAIT_SIGNAL signal received while waiting for next packet, next waiting signal is %1
  49. This debug message is issued when the server was waiting for the
  50. packet, but the wait has been interrupted by the signal received
  51. by the process. The signal will be handled before the server starts
  52. waiting for next packets. The argument specifies the next signal to
  53. be handled by the server.
  54. % DHCP4_CCSESSION_STARTED control channel session started on socket %1
  55. A debug message issued during startup after the DHCPv4 server has
  56. successfully established a session with the Kea control channel.
  57. % DHCP4_CCSESSION_STARTING starting control channel session, specfile: %1
  58. This debug message is issued just before the DHCPv4 server attempts
  59. to establish a session with the Kea control channel.
  60. % DHCP4_CLASS_ASSIGNED %1: client packet has been assigned to the following class(es): %2
  61. This debug message informs that incoming packet has been assigned to specified
  62. class or classes. This is a normal behavior and indicates successful operation.
  63. The first argument specifies the client and transaction identification
  64. information. The second argument includes all classes to which the
  65. packet has been assigned.
  66. % DHCP4_CLASS_UNCONFIGURED %1: client packet belongs to an unconfigured class: %2
  67. This debug message informs that incoming packet belongs to a class
  68. which cannot be found in the configuration. Either a hook written
  69. before the classification was added to Kea is used, or class naming is
  70. inconsistent.
  71. % DHCP4_CLIENTID_IGNORED_FOR_LEASES %1: not using client identifier for lease allocation for subnet %2
  72. This debug message is issued when the server is processing the DHCPv4 message
  73. for which client identifier will not be used when allocating new lease or
  74. renewing existing lease. The server is explicitly configured to not use
  75. client identifier to lookup existing leases for the client and will not
  76. record client identifier in the lease database. This mode of operation
  77. is useful when clients don't use stable client identifiers, e.g. multi
  78. stage booting. Note that the client identifier may be used for other
  79. operations than lease allocation, e.g. identifying host reservations
  80. for the client using client identifier. The first argument includes the
  81. client and transaction identification information. The second argument
  82. specifies the identifier of the subnet where the client is connected
  83. and for which this mode of operation is configured on the server.
  84. % DHCP4_CLIENT_FQDN_DATA %1: Client sent FQDN option: %2
  85. This debug message includes the detailed information extracted from the
  86. Client FQDN option sent in the query. The first argument includes the
  87. client and transaction identification information. The second argument
  88. specifies the detailed information about the FQDN option received
  89. by the server.
  90. % DHCP4_CLIENT_FQDN_PROCESS %1: processing Client FQDN option
  91. This debug message is issued when the server starts processing the Client
  92. FQDN option sent in the client's query. The argument includes the
  93. client and transaction identification information.
  94. % DHCP4_CLIENT_HOSTNAME_DATA %1: client sent Hostname option: %2
  95. This debug message includes the detailed information extracted from the
  96. Hostname option sent in the query. The first argument includes the
  97. client and transaction identification information. The second argument
  98. specifies the hostname carried in the Hostname option sent by the
  99. client.
  100. % DHCP4_CLIENT_HOSTNAME_PROCESS %1: processing client's Hostname option
  101. This debug message is issued when the server starts processing the Hostname
  102. option sent in the client's query. The argument includes the client and
  103. transaction identification information.
  104. % DHCP4_CLIENT_NAME_PROC_FAIL %1: failed to process the fqdn or hostname sent by a client: %2
  105. This debug message is issued when the DHCP server was unable to process the
  106. FQDN or Hostname option sent by a client. This is likely because the client's
  107. name was malformed or due to internal server error. The first argument
  108. contains the client and transaction identification information. The
  109. second argument holds the detailed description of the error.
  110. % DHCP4_COMMAND_RECEIVED received command %1, arguments: %2
  111. A debug message listing the command (and possible arguments) received
  112. from the Kea control system by the DHCPv4 server.
  113. % DHCP4_CONFIG_COMPLETE DHCPv4 server has completed configuration: %1
  114. This is an informational message announcing the successful processing of a
  115. new configuration. It is output during server startup, and when an updated
  116. configuration is committed by the administrator. Additional information
  117. may be provided.
  118. % DHCP4_CONFIG_LOAD_FAIL configuration error using file: %1, reason: %2
  119. This error message indicates that the DHCPv4 configuration has failed.
  120. If this is an initial configuration (during server's startup) the server
  121. will fail to start. If this is a dynamic reconfiguration attempt the
  122. server will continue to use an old configuration.
  123. % DHCP4_CONFIG_NEW_SUBNET a new subnet has been added to configuration: %1
  124. This is an informational message reporting that the configuration has
  125. been extended to include the specified IPv4 subnet.
  126. % DHCP4_CONFIG_OPTION_DUPLICATE multiple options with the code %1 added to the subnet %2
  127. This warning message is issued on an attempt to configure multiple options
  128. with the same option code for a particular subnet. Adding multiple options
  129. is uncommon for DHCPv4, but is not prohibited.
  130. % DHCP4_CONFIG_RECEIVED received configuration %1
  131. A debug message listing the configuration received by the DHCPv4 server.
  132. The source of that configuration depends on used configuration backend.
  133. % DHCP4_CONFIG_START DHCPv4 server is processing the following configuration: %1
  134. This is a debug message that is issued every time the server receives a
  135. configuration. That happens at start up and also when a server configuration
  136. change is committed by the administrator.
  137. % DHCP4_CONFIG_UPDATE updated configuration received: %1
  138. A debug message indicating that the DHCPv4 server has received an
  139. updated configuration from the Kea configuration system.
  140. % DHCP4_DDNS_REQUEST_SEND_FAILED failed sending a request to kea-dhcp-ddns, error: %1, ncr: %2
  141. This error message indicates that DHCP4 server attempted to send a DDNS
  142. update request to the DHCP-DDNS server. This is most likely a configuration or
  143. networking error.
  144. % DHCP4_DEACTIVATE_INTERFACE deactivate interface %1
  145. This message is printed when DHCPv4 server disables an interface from being
  146. used to receive DHCPv4 traffic. Sockets on this interface will not be opened
  147. by the Interface Manager until interface is enabled.
  148. % DHCP4_DECLINE_LEASE Received DHCPDECLINE for addr %1 from client %2. The lease will be unavailable for %3 seconds.
  149. This informational message is printed when a client received an address, but
  150. discovered that it is being used by some other device and notified the server by
  151. sending a DHCPDECLINE message. The server checked that this address really was
  152. leased to the client and marked this address as unusable for a certain
  153. amount of time. This message may indicate a misconfiguration in a network,
  154. as there is either a buggy client or more likely a device that is using an
  155. address that it is not supposed to. The server will fully recover from this
  156. situation, but if the underlying problem of a misconfigured or rogue device
  157. is not solved, this address may be declined again in the future.
  158. % DHCP4_DECLINE_LEASE_MISMATCH Received DHCPDECLINE for addr %1 from client %2, but the data doesn't match: received hwaddr: %3, lease hwaddr: %4, received client-id: %5, lease client-id: %6
  159. This informational message means that a client attempted to report his address
  160. as declined (i.e. used by unknown entity). The server has information about
  161. a lease for that address, but the client's hardware address or client identifier
  162. does not match the server's stored information. The client's request will be ignored.
  163. % DHCP4_DECLINE_LEASE_NOT_FOUND Received DHCPDECLINE for addr %1 from client %2, but no such lease found.
  164. This warning message indicates that a client reported that his address was
  165. detected as a duplicate (i.e. another device in the network is using this address).
  166. However, the server does not have a record for this address. This may indicate
  167. a client's error or a server's purged database.
  168. % DHCP4_DISCOVER_CLASS_PROCESSING_FAILED %1: client class specific processing failed for DHCPDISCOVER
  169. This debug message means that the server processing that is unique for each
  170. client class has reported a failure. The response packet will not be sent.
  171. The argument holds the client and transaction identification information.
  172. % DHCP4_DYNAMIC_RECONFIGURATION initiate server reconfiguration using file: %1, after receiving SIGHUP signal
  173. This is the info message logged when the DHCPv4 server starts reconfiguration
  174. as a result of receiving SIGHUP signal.
  175. % DHCP4_DYNAMIC_RECONFIGURATION_FAIL dynamic server reconfiguration failed with file: %1
  176. This is an error message logged when the dynamic reconfiguration of the
  177. DHCP server failed.
  178. % DHCP4_EMPTY_HOSTNAME %1: received empty hostname from the client, skipping processing of this option
  179. This debug message is issued when the server received an empty Hostname option
  180. from a client. Server does not process empty Hostname options and therefore
  181. option is skipped. The argument holds the client and transaction identification
  182. information.
  183. % DHCP4_HANDLE_SIGNAL_EXCEPTION An exception was thrown while handing signal: %1
  184. This error message is printed when an ISC or standard exception was raised during signal
  185. processing. This likely indicates a coding error and should be reported to ISC.
  186. % DHCP4_HOOKS_LIBS_RELOAD_FAIL reload of hooks libraries failed
  187. A "libreload" command was issued to reload the hooks libraries but for
  188. some reason the reload failed. Other error messages issued from the
  189. hooks framework will indicate the nature of the problem.
  190. % DHCP4_HOOK_BUFFER_RCVD_SKIP received buffer from %1 to %2 over interface %3 was dropped because a callout set the skip flag
  191. This debug message is printed when a callout installed on buffer4_receive
  192. hook point set the skip flag. For this particular hook point, the
  193. setting of the flag by a callout instructs the server to drop the packet.
  194. The arguments specify the source and destination IPv4 address as well as
  195. the name of the interface over which the buffer has been received.
  196. % DHCP4_HOOK_BUFFER_SEND_SKIP %1: prepared response is dropped because a callout set the skip flag.
  197. This debug message is printed when a callout installed on buffer4_send
  198. hook point set the skip flag. For this particular hook point, the
  199. setting of the flag by a callout instructs the server to drop the packet.
  200. Server completed all the processing (e.g. may have assigned, updated
  201. or released leases), but the response will not be send to the client.
  202. % DHCP4_HOOK_DECLINE_SKIP Decline4 hook callouts set status to DROP, ignoring packet.
  203. This message indicates that the server received DHCPDECLINE message, it was verified
  204. to be correct and matching server's lease information. The server called hooks
  205. for decline4 hook point and one of the callouts set next step status to DROP.
  206. The server will now abort processing of the packet as if it was never
  207. received. The lease will continue to be assigned to this client.
  208. % DHCP4_HOOK_LEASE4_RELEASE_SKIP %1: lease was not released because a callout set the skip flag.
  209. This debug message is printed when a callout installed on lease4_release
  210. hook point set the skip flag. For this particular hook point, the
  211. setting of the flag by a callout instructs the server to not release
  212. a lease.
  213. % DHCP4_HOOK_PACKET_RCVD_SKIP %1: packet is dropped, because a callout set the skip flag.
  214. This debug message is printed when a callout installed on the pkt4_receive
  215. hook point sets the skip flag. For this particular hook point, the
  216. setting of the flag instructs the server to drop the packet.
  217. % DHCP4_HOOK_PACKET_SEND_SKIP %1: prepared response is not sent, because a callout set skip flag.
  218. This debug message is printed when a callout installed on the pkt4_send
  219. hook point sets the skip flag. For this particular hook point, the setting
  220. of the flag instructs the server to drop the packet. This means that
  221. the client will not get any response, even though the server processed
  222. client's request and acted on it (e.g. possibly allocated a lease).
  223. % DHCP4_HOOK_SUBNET4_SELECT_SKIP %1: no subnet was selected, because a callout set skip flag.
  224. This debug message is printed when a callout installed on the
  225. subnet4_select hook point sets the skip flag. For this particular hook
  226. point, the setting of the flag instructs the server not to choose a
  227. subnet, an action that severely limits further processing; the server
  228. will be only able to offer global options - no addresses will be assigned.
  229. The argument specifies the client and transaction identification
  230. information.
  231. % DHCP4_INFORM_CLASS_PROCESSING_FAILED %1: client class specific processing failed for DHCPINFORM
  232. This debug message means that the server processing that is unique for each
  233. client class has reported a failure. The response packet will not be sent.
  234. The argument specifies the client and the transaction identification
  235. information.
  236. % DHCP4_INFORM_DIRECT_REPLY %1: DHCPACK in reply to the DHCPINFORM will be sent directly to %2 over %3
  237. This debug message is issued when the DHCPACK will be sent directly to the
  238. client, rather than via a relay. The first argument contains the client
  239. and transaction identification information. The second argument contains
  240. the client's IPv4 address to which the response will be sent. The third
  241. argument contains the local interface name.
  242. % DHCP4_INIT_FAIL failed to initialize Kea server: %1
  243. The server has failed to initialize. This may be because the configuration
  244. was not successful, or it encountered any other critical error on startup.
  245. Attached error message provides more details about the issue.
  246. % DHCP4_INIT_REBOOT %1: client is in INIT-REBOOT state and requests address %2
  247. This debug message is issued when the client is in the INIT-REBOOT state and
  248. is requesting an IPv4 address it is using to be allocated for it. The first
  249. argument includes the client and transaction identification information. The
  250. second argument specifies the requested IPv4 address.
  251. % DHCP4_LEASE_ADVERT %1: lease %2 will be advertised
  252. This debug message indicates that the server has found the lease to be
  253. offered to the client. It is up to the client to choose one server out of
  254. those which offered leases and continue allocation with that server.
  255. The first argument specifies the client and the transaction identification
  256. information. The second argument specifies the IPv4 address to be offered.
  257. % DHCP4_LEASE_ALLOC %1: lease %2 has been allocated
  258. This debug message indicates that the server successfully granted a lease
  259. in response to client's DHCPREQUEST message. The lease information will
  260. be sent to the client in the DHCPACK message. The first argument
  261. contains the client and the transaction identification information. The
  262. second argument contains the allocated IPv4 address.
  263. % DHCP4_NAME_GEN_UPDATE_FAIL %1: failed to update the lease after generating name %2 for a client: %3
  264. This message indicates the failure when trying to update the lease and/or
  265. options in the server's response with the hostname generated by the server
  266. from the acquired IPv4 address. The message argument indicates the reason
  267. for the failure. The first argument includes the client and the transaction
  268. identification information. The second argument specifies the hostname.
  269. The third argument contains the error details.
  270. % DHCP4_NCR_CREATE %1: DDNS updates enabled, therefore sending name change requests
  271. This debug message is issued when the server is starting to send
  272. name change requests to the D2 module to update records for the client
  273. in the DNS. This includes removal of old records and addition of the
  274. new records as required. Details of the name change requests will be
  275. logged in additional log entries. The argument includes the client
  276. and the transaction identification information.
  277. % DHCP4_NCR_CREATION_FAILED %1: failed to generate name change requests for DNS: %2
  278. This message indicates that server was unable to generate NameChangeRequests
  279. which should be sent to the kea-dhcp_ddns module to create
  280. new DNS records for the lease being acquired or to update existing records
  281. for the renewed lease. The first argument contains the client and transaction
  282. identification information. The second argument includes the reason for the
  283. failure.
  284. % DHCP4_NOT_RUNNING DHCPv4 server is not running
  285. A warning message is issued when an attempt is made to shut down the
  286. DHCPv4 server but it is not running.
  287. % DHCP4_NO_LEASE_INIT_REBOOT %1: no lease for address %2 requested by INIT-REBOOT client
  288. This debug message is issued when the client being in the INIT-REBOOT state
  289. requested an IPv4 address but this client is unknown. The server will not
  290. respond. The first argument includes the client and the transaction id
  291. identification information. The second argument includes the IPv4 address
  292. requested by the client.
  293. % DHCP4_NO_SOCKETS_OPEN no interface configured to listen to DHCP traffic
  294. This warning message is issued when current server configuration specifies
  295. no interfaces that server should listen on, or specified interfaces are not
  296. configured to receive the traffic.
  297. % DHCP4_OPEN_SOCKET opening sockets on port %1
  298. A debug message issued during startup, this indicates that the DHCPv4
  299. server is about to open sockets on the specified port.
  300. % DHCP4_OPEN_SOCKET_FAIL failed to open socket: %1
  301. A warning message issued when IfaceMgr fails to open and bind a socket. The reason
  302. for the failure is appended as an argument of the log message.
  303. % DHCP4_PACKET_DROP_0001 failed to parse packet from %1 to %2, received over interace %3, reason: %4
  304. The DHCPv4 server has received a packet that it is unable to
  305. interpret. The reason why the packet is invalid is included in the message.
  306. % DHCP4_PACKET_DROP_0002 %1, from interface %2: no suitable subnet configured for a direct client
  307. This info message is logged when received a message from a directly connected
  308. client but there is no suitable subnet configured for the interface on
  309. which this message has been received. The IPv4 address assigned on this
  310. interface must belong to one of the configured subnets. Otherwise
  311. received message is dropped.
  312. % DHCP4_PACKET_DROP_0003 %1, from interface %2: it contains a foreign server identifier
  313. This debug message is issued when received DHCPv4 message is dropped because
  314. it is addressed to a different server, i.e. a server identifier held by
  315. this message doesn't match the identifier used by our server. The arguments
  316. of this message hold the name of the transaction id and interface on which
  317. the message has been received.
  318. % DHCP4_PACKET_DROP_0004 %1, from interface %2: missing msg-type option
  319. This is a debug message informing that incoming DHCPv4 packet did not
  320. have mandatory DHCP message type option and thus was dropped. The
  321. arguments specify the client and transaction identification information,
  322. as well as the interface on which the message has been received.
  323. % DHCP4_PACKET_DROP_0005 %1: unrecognized type %2 in option 53
  324. This debug message indicates that the message type carried in DHCPv4 option
  325. 53 is unrecognized by the server. The valid message types are listed
  326. on the IANA website: http://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.xhtml#message-type-53.
  327. The message will not be processed by the server. The arguments specify
  328. the client and transaction identification information, as well as the
  329. received message type.
  330. % DHCP4_PACKET_DROP_0006 %1: unsupported DHCPv4 message type %2
  331. This debug message indicates that the message type carried in DHCPv4 option
  332. 53 is valid but the message will not be processed by the server. This includes
  333. messages being normally sent by the server to the client, such as DHCPOFFER,
  334. DHCPACK, DHCPNAK etc. The first argument specifies the client and transaction
  335. identification information. The second argument specifies the message type.
  336. % DHCP4_PACKET_DROP_0007 %1: failed to process packet: %2
  337. This is a general catch-all message indicating that the processing of a
  338. received packet failed. The reason is given in the message. The server
  339. will not send a response but will instead ignore the packet. The first
  340. argument contains the client and transaction identification information.
  341. The second argument includes the details of the error.
  342. % DHCP4_PACKET_NAK_0001 %1: failed to select a subnet for incoming packet, src %2, type %3
  343. This error message is output when a packet was received from a subnet
  344. for which the DHCPv4 server has not been configured. The most probable
  345. cause is a misconfiguration of the server. The first argument contains
  346. the client and transaction identification information. The second argument
  347. contains the source IPv4 address of the packet. The third argument contains
  348. the name of the received packet.
  349. % DHCP4_PACKET_NAK_0002 %1: invalid address %2 requested by INIT-REBOOT
  350. This debug message is issued when the client being in the INIT-REBOOT state
  351. requested an IPv4 address which is not assigned to him. The server will respond
  352. to this client with DHCPNAK. The first argument contains the client and
  353. the transaction identification information. The second arguments holds the
  354. IPv4 address requested by the client.
  355. % DHCP4_PACKET_NAK_0003 %1: failed to advertise a lease, client sent ciaddr %2, requested-ip-address %3
  356. This message indicates that the server has failed to offer a lease to
  357. the specified client after receiving a DISCOVER message from it. There are
  358. many possible reasons for such a failure. The first argument contains
  359. the client and the transaction identification information. The second
  360. argument contains the IPv4 address in the ciaddr field. The third
  361. argument contains the IPv4 address in the requested-ip-address option
  362. (if present).
  363. % DHCP4_PACKET_NAK_0004 %1: failed to grant a lease, client sent ciaddr %2, requested-ip-address %3
  364. This message indicates that the server failed to grant a lease to the
  365. specified client after receiving a REQUEST message from it. There are many
  366. possible reasons for such a failure. Additional messages will indicate the
  367. reason. The first argument contains the client and the transaction
  368. identification information. The second argument contains the IPv4 address
  369. in the ciaddr field. The third argument contains the IPv4 address in the
  370. requested-ip-address option (if present).
  371. % DHCP4_PACKET_PACK %1: preparing on-wire format of the packet to be sent
  372. This debug message is issued when the server starts preparing the on-wire
  373. format of the packet to be sent back to the client. The argument specifies
  374. the client and the transaction identification information.
  375. % DHCP4_PACKET_PACK_FAIL %1: preparing on-wire-format of the packet to be sent failed %2
  376. This error message is issued when preparing an on-wire format of the packet
  377. has failed. The first argument identifies the client and the DHCP transaction.
  378. The second argument includes the error string.
  379. % DHCP4_PACKET_PROCESS_EXCEPTION exception occurred during packet processing
  380. This error message indicates that a non-standard exception was raised
  381. during packet processing that was not caught by other, more specific
  382. exception handlers. This packet will be dropped and the server will
  383. continue operation.
  384. % DHCP4_PACKET_PROCESS_STD_EXCEPTION exception occurred during packet processing: %1
  385. This error message indicates that a standard exception was raised
  386. during packet processing that was not caught by other, more specific
  387. exception handlers. This packet will be dropped and the server will
  388. continue operation.
  389. % DHCP4_PACKET_RECEIVED %1: %2 (type %3) received from %4 to %5 on interface %6
  390. A debug message noting that the server has received the specified type of
  391. packet on the specified interface. The first argument specifies the
  392. client and transaction identification information. The second and third
  393. argument specify the name of the DHCPv4 message and its numeric type
  394. respectively. The remaining arguments specify the source IPv4 address,
  395. destination IPv4 address and the name of the interface on which the
  396. message has been received.
  397. % DHCP4_PACKET_SEND %1: trying to send packet %2 (type %3) from %4:%5 to %6:%7 on interface %8
  398. The arguments specify the client identification information (HW address
  399. and client identifier), DHCP message name and type, source IPv4
  400. address and port, destination IPv4 address and port and the
  401. interface name.
  402. This debug message is issued when the server is trying to send the
  403. response to the client. When the server is using an UDP socket
  404. to send the packet there are cases when this operation may be
  405. unsuccessful and no error message will be displayed. One such situation
  406. occurs when the server is unicasting the response to the 'ciaddr' of
  407. a DHCPINFORM message. This often requires broadcasting an ARP
  408. message to obtain the link layer address of the unicast destination.
  409. If broadcast ARP messages are blocked in the network, according to
  410. the firewall policy, the ARP message will not cause a response.
  411. Consequently, the response to the DHCPINFORM will not be sent.
  412. Since the ARP communication is under the OS control, Kea is not
  413. notified about the drop of the packet which it is trying to send
  414. and it has no means to display an error message.
  415. % DHCP4_PACKET_SEND_FAIL %1: failed to send DHCPv4 packet: %2
  416. This error is output if the DHCPv4 server fails to send an assembled
  417. DHCP message to a client. The first argument includes the client and
  418. the transaction identification information. The second argument includes
  419. the reason for failure.
  420. % DHCP4_PARSER_COMMIT_EXCEPTION parser failed to commit changes
  421. On receipt of message containing details to a change of the DHCPv4
  422. server configuration, a set of parsers were successfully created, but one
  423. of them failed to commit its changes due to a low-level system exception
  424. being raised. Additional messages may be output indicating the reason.
  425. % DHCP4_PARSER_COMMIT_FAIL parser failed to commit changes: %1
  426. On receipt of message containing details to a change of the DHCPv4
  427. server configuration, a set of parsers were successfully created, but
  428. one of them failed to commit its changes. The reason for the failure
  429. is given in the message.
  430. % DHCP4_PARSER_CREATED created parser for configuration element %1
  431. A debug message output during a configuration update of the DHCPv4
  432. server, notifying that the parser for the specified configuration element
  433. has been successfully created.
  434. % DHCP4_PARSER_EXCEPTION failed to create or run parser for configuration element %1
  435. On receipt of message containing details to a change of its configuration,
  436. the DHCPv4 server failed to create a parser to decode the contents of
  437. the named configuration element, or the creation succeeded but the parsing
  438. actions and committal of changes failed. The message has been output in
  439. response to a non-Kea exception being raised. Additional messages
  440. may give further information.
  441. % DHCP4_PARSER_FAIL failed to create or run parser for configuration element %1: %2
  442. On receipt of message containing details to a change of its configuration,
  443. the DHCPv4 server failed to create a parser to decode the contents
  444. of the named configuration element, or the creation succeeded but the
  445. parsing actions and committal of changes failed. The reason for the
  446. failure is given in the message.
  447. % DHCP4_QUERY_DATA %1, packet details: %2
  448. A debug message printing the details of the received packet. The first
  449. argument includes the client and the transaction identification
  450. information.
  451. % DHCP4_RELEASE %1: address %2 was released properly.
  452. This debug message indicates that an address was released properly. It
  453. is a normal operation during client shutdown. The first argument includes
  454. the client and transaction identification information. The second argument
  455. includes the released IPv4 address.
  456. % DHCP4_RELEASE_EXCEPTION %1: while trying to release address %2 an exception occurred: %3
  457. This message is output when an error was encountered during an attempt
  458. to process a DHCPRELEASE message. The error will not affect the client,
  459. which does not expect any response from the server for DHCPRELEASE
  460. messages. Depending on the nature of problem, it may affect future
  461. server operation. The first argument includes the client and the
  462. transaction identification information. The second argument
  463. includes the IPv4 address which release was attempted. The last
  464. argument includes the detailed error description.
  465. % DHCP4_RELEASE_FAIL %1: failed to remove lease for address %2
  466. This error message indicates that the software failed to remove a
  467. lease from the lease database. It is probably due to an error during a
  468. database operation: resolution will most likely require administrator
  469. intervention (e.g. check if DHCP process has sufficient privileges to
  470. update the database). It may also be triggered if a lease was manually
  471. removed from the database during RELEASE message processing. The
  472. first argument includes the client and the transaction identification
  473. information. The second argument holds the IPv4 address which release
  474. was attempted.
  475. % DHCP4_RELEASE_FAIL_NO_LEASE %1: client is trying to release non-existing lease %2
  476. This debug message is printed when client attempts to release a lease,
  477. but no such lease is known to the server. The first argument contains
  478. the client and transaction identification information. The second
  479. argument contains the IPv4 address which the client is trying to
  480. release.
  481. % DHCP4_RELEASE_FAIL_WRONG_CLIENT %1: client is trying to release the lease %2 which belongs to a different client
  482. This debug message is issued when a client is trying to release the
  483. lease for the address which is currently used by another client, i.e.
  484. the 'client identifier' or 'chaddr' doesn't match between the client
  485. and the lease. The first argument includes the client and the
  486. transaction identification information. The second argument specifies
  487. the leased address.
  488. % DHCP4_REQUEST_CLASS_PROCESSING_FAILED %1: client class specific processing failed for DHCPREQUEST
  489. This debug message means that the server processing that is unique for each
  490. client class has reported a failure. The response packet will not be sent.
  491. The argument contains the client and transaction identification
  492. information.
  493. % DHCP4_RESPONSE_DATA %1: responding with packet %2 (type %3), packet details: %4
  494. A debug message including the detailed data about the packet being sent
  495. to the client. The first argument contains the client and the transaction
  496. identification information. The second and third argument contains the
  497. packet name and type respectively. The fourth argument contains detailed
  498. packet information.
  499. % DHCP4_RESPONSE_FQDN_DATA %1: including FQDN option in the server's response: %2
  500. This debug message is issued when the server is adding the Client FQDN
  501. option in its response to the client. The first argument includes the
  502. client and transaction identification information. The second argument
  503. includes the details of the FQDN option being included. Note that the
  504. name carried in the FQDN option may be modified by the server when
  505. the lease is acquired for the client.
  506. % DHCP4_RESPONSE_HOSTNAME_DATA %1: including Hostname option in the server's response: %2
  507. This debug message is issued when the server is adding the Hostname
  508. option in its response to the client. The first argument includes the
  509. client and transaction identification information. The second argument
  510. includes the details of the FQDN option being included. Note that the
  511. name carried in the Hostname option may be modified by the server when
  512. the lease is acquired for the client.
  513. % DHCP4_RESPONSE_HOSTNAME_GENERATE %1: server has generated hostname %2 for the client
  514. This debug message includes the auto-generated hostname which will be used
  515. for the client which message is processed. Hostnames may need to be generated
  516. when required by the server's configuration or when the client hasn't
  517. supplied its hostname. The first argument includes the client and the
  518. transaction identification information. The second argument holds the
  519. generated hostname.
  520. % DHCP4_SERVER_FAILED server failed: %1
  521. The DHCPv4 server has encountered a fatal error and is terminating.
  522. The reason for the failure is included in the message.
  523. % DHCP4_SHUTDOWN server shutdown
  524. The DHCPv4 server has terminated normally.
  525. % DHCP4_SHUTDOWN_REQUEST shutdown of server requested
  526. This debug message indicates that a shutdown of the DHCPv4 server has
  527. been requested via a call to the 'shutdown' method of the core Dhcpv4Srv
  528. object.
  529. % DHCP4_SRV_CONSTRUCT_ERROR error creating Dhcpv4Srv object, reason: %1
  530. This error message indicates that during startup, the construction of a
  531. core component within the DHCPv4 server (the Dhcpv4 server object)
  532. has failed. As a result, the server will exit. The reason for the
  533. failure is given within the message.
  534. % DHCP4_SRV_D2STOP_ERROR error stopping IO with DHCP_DDNS during shutdown: %1
  535. This error message indicates that during shutdown, an error occurred while
  536. stopping IO between the DHCPv4 server and the DHCP_DDNS server. This is
  537. probably due to a programmatic error is not likely to impact either server
  538. upon restart. The reason for the failure is given within the message.
  539. % DHCP4_STARTED Kea DHCPv4 server version %1 started
  540. This informational message indicates that the DHCPv4 server has
  541. processed all configuration information and is ready to process
  542. DHCPv4 packets. The version is also printed.
  543. % DHCP4_STARTING Kea DHCPv4 server version %1 starting
  544. This informational message indicates that the DHCPv4 server has
  545. processed any command-line switches and is starting. The version
  546. is also printed.
  547. % DHCP4_START_INFO pid: %1, port: %2, verbose: %3
  548. This is a debug message issued during the DHCPv4 server startup.
  549. It lists some information about the parameters with which the server
  550. is running.
  551. % DHCP4_SUBNET_DATA %1: the selected subnet details: %2
  552. This debug message includes the details of the subnet selected for
  553. the client. The first argument includes the client and the
  554. transaction identification information. The second arguments
  555. includes the subnet details.
  556. % DHCP4_SUBNET_SELECTED %1: the subnet with ID %2 was selected for client assignments
  557. This is a debug message noting the selection of a subnet to be used for
  558. address and option assignment. Subnet selection is one of the early
  559. steps in the processing of incoming client message. The first
  560. argument includes the client and the transaction identification
  561. information. The second argument holds the selected subnet id.
  562. % DHCP4_SUBNET_SELECTION_FAILED %1: failed to select subnet for the client
  563. This debug message indicates that the server failed to select the
  564. subnet for the client which has sent a message to the server.
  565. The server will not be able to offer any lease to the client and
  566. will drop its message if the received message was DHCPDISCOVER,
  567. and will send DHCPNAK if the received message was DHCPREQUEST.
  568. The argument includes the client and the transaction identification
  569. information.