dhcpsrv_messages.mes 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  1. # Copyright (C) 2012-2016 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. % DHCPRSV_MEMFILE_CONVERTING_LEASE_FILES running LFC now to convert lease files to the current schema: %1.%2
  8. A warning message issued when the server has detected lease files that need
  9. to be either upgraded or downgraded to match the server's schema, and that
  10. the server is automatically running the LFC process to perform the conversion.
  11. This should only occur the first time the server is launched following a Kea
  12. installation upgrade (or downgrade).
  13. % DHCPSRV_CFGMGR_ADD_IFACE listening on interface %1
  14. An info message issued when a new interface is being added to the collection of
  15. interfaces on which the server listens to DHCP messages.
  16. % DHCPSRV_CFGMGR_ADD_SUBNET4 adding subnet %1
  17. A debug message reported when the DHCP configuration manager is adding the
  18. specified IPv4 subnet to its database.
  19. % DHCPSRV_CFGMGR_ADD_SUBNET6 adding subnet %1
  20. A debug message reported when the DHCP configuration manager is adding the
  21. specified IPv6 subnet to its database.
  22. % DHCPSRV_CFGMGR_ALL_IFACES_ACTIVE enabling listening on all interfaces
  23. A debug message issued when the server is being configured to listen on all
  24. interfaces.
  25. % DHCPSRV_CFGMGR_CFG_DHCP_DDNS Setting DHCP-DDNS configuration to: %1
  26. A debug message issued when the server's DHCP-DDNS settings are changed.
  27. % DHCPSRV_CFGMGR_CLEAR_ACTIVE_IFACES stop listening on all interfaces
  28. A debug message issued when configuration manager clears the internal list
  29. of active interfaces. This doesn't prevent the server from listening to
  30. the DHCP traffic through open sockets, but will rather be used by Interface
  31. Manager to select active interfaces when sockets are re-opened.
  32. % DHCPSRV_CFGMGR_CONFIGURE_SERVERID server configuration includes specification of a server identifier
  33. This warning message is issued when the server specified configuration of
  34. a server identifier. If this new configuration overrides an existing
  35. server identifier, this will affect existing bindings of the clients.
  36. Clients will use old server identifier when they renew their bindings.
  37. The server will not respond to those renews, and the clients will
  38. eventually transition to rebinding state. The server should reassign
  39. existing bindings and the clients will subsequently use new server
  40. identifier. It is recommended to not modify the server identifier, unless
  41. there is a good reason for it, to avoid increased number of renewals and
  42. a need for rebinding (increase of multicast traffic, which may be received
  43. by multiple servers).
  44. % DHCPSRV_CFGMGR_NO_SUBNET4 no suitable subnet is defined for address hint %1
  45. This debug message is output when the DHCP configuration manager has received
  46. a request for an IPv4 subnet for the specified address, but no such
  47. subnet exists.
  48. % DHCPSRV_CFGMGR_NO_SUBNET6 no suitable subnet is defined for address hint %1
  49. This debug message is output when the DHCP configuration manager has received
  50. a request for an IPv6 subnet for the specified address, but no such
  51. subnet exists.
  52. % DHCPSRV_CFGMGR_ONLY_SUBNET4 retrieved subnet %1 for address hint %2
  53. This is a debug message reporting that the DHCP configuration manager has
  54. returned the specified IPv4 subnet when given the address hint specified
  55. because it is the only subnet defined.
  56. % DHCPSRV_CFGMGR_ONLY_SUBNET6 retrieved subnet %1 for address hint %2
  57. This is a debug message reporting that the DHCP configuration manager has
  58. returned the specified IPv6 subnet when given the address hint specified
  59. because it is the only subnet defined.
  60. % DHCPSRV_CFGMGR_SOCKET_RAW_UNSUPPORTED use of raw sockets is unsupported on this OS, UDP sockets will be used
  61. This warning message is logged when the user specified that the
  62. DHCPv4 server should use the raw sockets to receive the DHCP
  63. messages and respond to the clients, but the use of raw sockets
  64. is not supported on the particular environment. The raw sockets
  65. are useful when the server must respond to the directly connected
  66. clients which don't have an address yet. If the raw sockets are
  67. not supported by Kea on the particular platform, Kea will fall
  68. back to use of the IP/UDP sockets. The responses to
  69. the directly connected clients will be broadcast. The responses
  70. to relayed clients will be unicast as usual.
  71. % DHCPSRV_CFGMGR_SOCKET_TYPE_DEFAULT "dhcp-socket-type" not specified , using default socket type %1
  72. This informational message is logged when the administrator hasn't
  73. specified the "dhcp-socket-type" parameter in configuration for interfaces.
  74. In such case, the default socket type will be used.
  75. % DHCPSRV_CFGMGR_SOCKET_TYPE_SELECT using socket type %1
  76. This informational message is logged when the DHCPv4 server selects the
  77. socket type to be used for all sockets that will be opened on the
  78. interfaces. Typically, the socket type is specified by the server
  79. administrator. If the socket type hasn't been specified, the raw
  80. socket will be selected. If the raw socket has been selected but
  81. Kea doesn't support the use of raw sockets on the particular
  82. OS, it will use an UDP socket instead.
  83. % DHCPSRV_CFGMGR_SUBNET4 retrieved subnet %1 for address hint %2
  84. This is a debug message reporting that the DHCP configuration manager has
  85. returned the specified IPv4 subnet when given the address hint specified
  86. as the address is within the subnet.
  87. % DHCPSRV_CFGMGR_SUBNET4_ADDR selected subnet %1 for packet received by matching address %2
  88. This is a debug message reporting that the DHCP configuration manager
  89. has returned the specified IPv4 subnet for a received packet. This particular
  90. subnet was selected, because an IPv4 address was matched which belonged to that
  91. subnet.
  92. % DHCPSRV_CFGMGR_SUBNET4_IFACE selected subnet %1 for packet received over interface %2
  93. This is a debug message reporting that the DHCP configuration manager
  94. has returned the specified IPv4 subnet for a packet received over
  95. the given interface. This particular subnet was selected, because it
  96. was specified as being directly reachable over the given interface. (see
  97. 'interface' parameter in the subnet4 definition).
  98. % DHCPSRV_CFGMGR_SUBNET4_RELAY selected subnet %1, because of matching relay addr %2
  99. This is a debug message reporting that the DHCP configuration manager has
  100. returned the specified IPv4 subnet, because detected relay agent address
  101. matches value specified for this subnet.
  102. % DHCPSRV_CFGMGR_SUBNET6 retrieved subnet %1 for address hint %2
  103. This is a debug message reporting that the DHCP configuration manager has
  104. returned the specified IPv6 subnet when given the address hint specified
  105. as the address is within the subnet.
  106. % DHCPSRV_CFGMGR_SUBNET6_IFACE selected subnet %1 for packet received over interface %2
  107. This is a debug message reporting that the DHCP configuration manager
  108. has returned the specified IPv6 subnet for a packet received over
  109. given interface. This particular subnet was selected, because it
  110. was specified as being directly reachable over given interface. (see
  111. 'interface' parameter in the subnet6 definition).
  112. % DHCPSRV_CFGMGR_SUBNET6_IFACE_ID selected subnet %1 (interface-id match) for incoming packet
  113. This is a debug message reporting that the DHCP configuration manager
  114. has returned the specified IPv6 subnet for a received packet. This particular
  115. subnet was selected, because value of interface-id option matched what was
  116. configured in the server's interface-id option for that selected subnet6.
  117. (see 'interface-id' parameter in the subnet6 definition).
  118. % DHCPSRV_CFGMGR_SUBNET6_RELAY selected subnet %1, because of matching relay addr %2
  119. This is a debug message reporting that the DHCP configuration manager has
  120. returned the specified IPv6 subnet, because detected relay agent address
  121. matches value specified for this subnet.
  122. % DHCPSRV_CFGMGR_UNICAST_LINK_LOCAL specified link local address %1 for unicast traffic on interface %2
  123. This warning message is logged when user specified a link-local address to
  124. receive unicast traffic. The warning message is issued because it is an
  125. uncommon use.
  126. % DHCPSRV_CFGMGR_USE_ADDRESS listening on address %1, on interface %2
  127. A message issued when the server is configured to listen on the explicitly specified
  128. IP address on the given interface.
  129. % DHCPSRV_CFGMGR_USE_UNICAST listening on unicast address %1, on interface %2
  130. An info message issued when configuring the DHCP server to listen on the unicast
  131. address on the specific interface.
  132. % DHCPSRV_CLOSE_DB closing currently open %1 database
  133. This is a debug message, issued when the DHCP server closes the currently
  134. open lease database. It is issued at program shutdown and whenever
  135. the database access parameters are changed: in the latter case, the
  136. server closes the currently open database, and opens a database using
  137. the new parameters.
  138. % DHCPSRV_DHCP4O6_RECEIVED_BAD_PACKET received bad DHCPv4o6 packet: %1
  139. A bad DHCPv4o6 packet was received.
  140. % DHCPSRV_DHCP_DDNS_ERROR_EXCEPTION error handler for DHCP_DDNS IO generated an expected exception: %1
  141. This is an error message that occurs when an attempt to send a request to
  142. kea-dhcp-ddns fails there registered error handler threw an uncaught exception.
  143. This is a programmatic error which should not occur. By convention, the error
  144. handler should not propagate exceptions. Please report this error.
  145. % DHCPSRV_DHCP_DDNS_HANDLER_NULL error handler for DHCP_DDNS IO is not set.
  146. This is an error message that occurs when an attempt to send a request to
  147. kea-dhcp-ddns fails and there is no registered error handler. This is a
  148. programmatic error which should never occur and should be reported.
  149. % DHCPSRV_DHCP_DDNS_NCR_REJECTED NameChangeRequest rejected by the sender: %1, ncr: %2
  150. This is an error message indicating that NameChangeSender used to deliver DDNS
  151. update requests to kea-dhcp-ddns rejected the request. This most likely cause
  152. is the sender's queue has reached maximum capacity. This would imply that
  153. requests are being generated faster than they can be delivered.
  154. % DHCPSRV_DHCP_DDNS_NCR_SENT NameChangeRequest sent to kea-dhcp-ddns: %1
  155. A debug message issued when a NameChangeRequest has been successfully sent to
  156. kea-dhcp-ddns.
  157. % DHCPSRV_DHCP_DDNS_SENDER_STARTED NameChangeRequest sender has been started: %1
  158. A informational message issued when a communications with kea-dhcp-ddns has
  159. been successfully started.
  160. % DHCPSRV_DHCP_DDNS_SENDER_STOPPED NameChangeRequest sender has been stopped.
  161. A informational message issued when a communications with kea-dhcp-ddns has
  162. been stopped. This normally occurs during reconfiguration and as part of normal
  163. shutdown. It may occur if kea-dhcp-ddns communications breakdown.
  164. % DHCPSRV_DHCP_DDNS_SUSPEND_UPDATES DHCP_DDNS updates are being suspended.
  165. This is a warning message indicating the DHCP_DDNS updates have been turned
  166. off. This should only occur if IO errors communicating with kea-dhcp-ddns
  167. have been experienced. Any such errors should have preceding entries in the
  168. log with details. No further attempts to communicate with kea-dhcp-ddns will
  169. be made without intervention.
  170. % DHCPSRV_HOOK_LEASE4_RECOVER_SKIP DHCPv4 lease %1 was not recovered from the declined state because a callout set the skip status.
  171. This debug message is printed when a callout installed on lease4_recover
  172. hook point set the next step status to SKIP. For this particular hook point, this
  173. indicates that the server should not recover the lease from declined state.
  174. The server will leave the lease as it is, in the declined state. The
  175. server will attempt to recover it the next time decline recovery procedure
  176. takes place.
  177. % DHCPSRV_HOOK_LEASE4_RENEW_SKIP DHCPv4 lease was not renewed because a callout set the skip flag.
  178. This debug message is printed when a callout installed on lease4_renew
  179. hook point set the skip flag. For this particular hook point, the setting
  180. of the flag by a callout instructs the server to not renew a lease. The
  181. server will use existing lease as it is, without extending its lifetime.
  182. % DHCPSRV_HOOK_LEASE4_SELECT_SKIP Lease4 creation was skipped, because of callout skip flag.
  183. This debug message is printed when a callout installed on lease4_select
  184. hook point sets the skip flag. It means that the server was told that
  185. no lease4 should be assigned. The server will not put that lease in its
  186. database and the client will get a NAK packet.
  187. % DHCPSRV_HOOK_LEASE6_EXTEND_SKIP DHCPv6 lease lifetime was not extended because a callout set the skip flag for message %1
  188. This debug message is printed when a callout installed on lease6_renew
  189. or the lease6_rebind hook point set the skip flag. For this particular hook
  190. point, the setting of the flag by a callout instructs the server to not
  191. extend the lifetime for a lease. If the client requested renewal of multiple
  192. leases (by sending multiple IA options), the server will skip the renewal
  193. of the one in question and will proceed with other renewals as usual.
  194. % DHCPSRV_HOOK_LEASE6_RECOVER_SKIP DHCPv6 lease %1 was not recovered from declined state because a callout set the skip status.
  195. This debug message is printed when a callout installed on lease6_recover
  196. hook point set the next step status to SKIP. For this particular hook point, this
  197. indicates that the server should not recover the lease from declined state.
  198. The server will leave the lease as it is, in the declined state. The
  199. server will attempt to recover it the next time decline recovery procedure
  200. takes place.
  201. % DHCPSRV_HOOK_LEASE6_SELECT_SKIP Lease6 (non-temporary) creation was skipped, because of callout skip flag.
  202. This debug message is printed when a callout installed on lease6_select
  203. hook point sets the skip flag. It means that the server was told that
  204. no lease6 should be assigned. The server will not put that lease in its
  205. database and the client will get a NoAddrsAvail for that IA_NA option.
  206. % DHCPSRV_INVALID_ACCESS invalid database access string: %1
  207. This is logged when an attempt has been made to parse a database access string
  208. and the attempt ended in error. The access string in question - which
  209. should be of the form 'keyword=value keyword=value...' is included in
  210. the message.
  211. % DHCPSRV_MEMFILE_ADD_ADDR4 adding IPv4 lease with address %1
  212. A debug message issued when the server is about to add an IPv4 lease
  213. with the specified address to the memory file backend database.
  214. % DHCPSRV_MEMFILE_ADD_ADDR6 adding IPv6 lease with address %1
  215. A debug message issued when the server is about to add an IPv6 lease
  216. with the specified address to the memory file backend database.
  217. % DHCPSRV_MEMFILE_COMMIT committing to memory file database
  218. The code has issued a commit call. For the memory file database, this is
  219. a no-op.
  220. % DHCPSRV_MEMFILE_DB opening memory file lease database: %1
  221. This informational message is logged when a DHCP server (either V4 or
  222. V6) is about to open a memory file lease database. The parameters of
  223. the connection including database name and username needed to access it
  224. (but not the password if any) are logged.
  225. % DHCPSRV_MEMFILE_DELETE_ADDR deleting lease for address %1
  226. A debug message issued when the server is attempting to delete a lease
  227. for the specified address from the memory file database for the specified
  228. address.
  229. % DHCPSRV_MEMFILE_DELETE_EXPIRED_RECLAIMED4 deleting reclaimed IPv4 leases that expired more than %1 seconds ago
  230. A debug message issued when the server is removing reclaimed DHCPv4
  231. leases which have expired longer than a specified period of time.
  232. The argument is the amount of time Kea waits after a reclaimed
  233. lease expires before considering its removal.
  234. % DHCPSRV_MEMFILE_DELETE_EXPIRED_RECLAIMED6 deleting reclaimed IPv6 leases that expired more than %1 seconds ago
  235. A debug message issued when the server is removing reclaimed DHCPv6
  236. leases which have expired longer than a specified period of time.
  237. The argument is the amount of time Kea waits after a reclaimed
  238. lease expires before considering its removal.
  239. % DHCPSRV_MEMFILE_DELETE_EXPIRED_RECLAIMED_START starting deletion of %1 expired-reclaimed leases
  240. A debug message issued when the server has found expired-reclaimed
  241. leases to be removed. The number of leases to be removed is logged
  242. in the message.
  243. % DHCPSRV_MEMFILE_GET_ADDR4 obtaining IPv4 lease for address %1
  244. A debug message issued when the server is attempting to obtain an IPv4
  245. lease from the memory file database for the specified address.
  246. % DHCPSRV_MEMFILE_GET_ADDR6 obtaining IPv6 lease for address %1 and lease type %2
  247. A debug message issued when the server is attempting to obtain an IPv6
  248. lease from the memory file database for the specified address.
  249. % DHCPSRV_MEMFILE_GET_CLIENTID obtaining IPv4 leases for client ID %1
  250. A debug message issued when the server is attempting to obtain a set of
  251. IPv4 leases from the memory file database for a client with the specified
  252. client identification.
  253. % DHCPSRV_MEMFILE_GET_CLIENTID_HWADDR_SUBID obtaining IPv4 lease for client ID %1, hardware address %2 and subnet ID %3
  254. A debug message issued when the server is attempting to obtain an IPv4
  255. lease from the memory file database for a client with the specified
  256. client ID, hardware address and subnet ID.
  257. % DHCPSRV_MEMFILE_GET_EXPIRED4 obtaining maximum %1 of expired IPv4 leases
  258. A debug message issued when the server is attempting to obtain expired
  259. IPv4 leases to reclaim them. The maximum number of leases to be retrieved
  260. is logged in the message.
  261. % DHCPSRV_MEMFILE_GET_EXPIRED6 obtaining maximum %1 of expired IPv6 leases
  262. A debug message issued when the server is attempting to obtain expired
  263. IPv6 leases to reclaim them. The maximum number of leases to be retrieved
  264. is logged in the message.
  265. % DHCPSRV_MEMFILE_GET_HWADDR obtaining IPv4 leases for hardware address %1
  266. A debug message issued when the server is attempting to obtain a set of
  267. IPv4 leases from the memory file database for a client with the specified
  268. hardware address.
  269. % DHCPSRV_MEMFILE_GET_IAID_DUID obtaining IPv6 leases for IAID %1 and DUID %2 and lease type %3
  270. A debug message issued when the server is attempting to obtain a set of
  271. IPv6 lease from the memory file database for a client with the specified
  272. IAID (Identity Association ID) and DUID (DHCP Unique Identifier).
  273. % DHCPSRV_MEMFILE_GET_IAID_SUBID_DUID obtaining IPv6 leases for IAID %1, Subnet ID %2, DUID %3 and lease type %4
  274. A debug message issued when the server is attempting to obtain an IPv6
  275. lease from the memory file database for a client with the specified IAID
  276. (Identity Association ID), Subnet ID and DUID (DHCP Unique Identifier).
  277. % DHCPSRV_MEMFILE_GET_SUBID_CLIENTID obtaining IPv4 lease for subnet ID %1 and client ID %2
  278. A debug message issued when the server is attempting to obtain an IPv4
  279. lease from the memory file database for a client with the specified
  280. subnet ID and client ID.
  281. % DHCPSRV_MEMFILE_GET_SUBID_HWADDR obtaining IPv4 lease for subnet ID %1 and hardware address %2
  282. A debug message issued when the server is attempting to obtain an IPv4
  283. lease from the memory file database for a client with the specified
  284. subnet ID and hardware address.
  285. % DHCPSRV_MEMFILE_GET_VERSION obtaining schema version information
  286. A debug message issued when the server is about to obtain schema version
  287. information from the memory file database.
  288. % DHCPSRV_MEMFILE_LEASE_FILE_LOAD loading leases from file %1
  289. An info message issued when the server is about to start reading DHCP leases
  290. from the lease file. All leases currently held in the memory will be
  291. replaced by those read from the file.
  292. % DHCPSRV_MEMFILE_LEASE_LOAD loading lease %1
  293. A debug message issued when DHCP lease is being loaded from the file to memory.
  294. % DHCPSRV_MEMFILE_LFC_EXECUTE executing Lease File Cleanup using: %1
  295. An informational message issued when the Memfile lease database backend
  296. starts a new process to perform Lease File Cleanup.
  297. % DHCPSRV_MEMFILE_LFC_LEASE_FILE_RENAME_FAIL failed to rename the current lease file %1 to %2, reason: %3
  298. An error message logged when the Memfile lease database backend fails to
  299. move the current lease file to a new file on which the cleanup should
  300. be performed. This effectively means that the lease file cleanup
  301. will not take place.
  302. % DHCPSRV_MEMFILE_LFC_LEASE_FILE_REOPEN_FAIL failed to reopen lease file %1 after preparing input file for lease file cleanup, reason: %2, new leases will not be persisted!
  303. An error message logged when the Memfile lease database backend
  304. failed to re-open or re-create the lease file after renaming the
  305. lease file for lease file cleanup. The server will continue to
  306. operate but leases will not be persisted to disk.
  307. % DHCPSRV_MEMFILE_LFC_SETUP setting up the Lease File Cleanup interval to %1 sec
  308. An informational message logged when the Memfile lease database backend
  309. configures the LFC to be executed periodically. The argument holds the
  310. interval in seconds in which the LFC will be executed.
  311. % DHCPSRV_MEMFILE_LFC_SPAWN_FAIL lease file cleanup failed to run because kea-lfc process couldn't be spawned
  312. This error message is logged when the Kea server fails to run kea-lfc,
  313. the program that cleans up the lease file. The server will try again the
  314. next time a lease file cleanup is scheduled. Although this message should
  315. not appear and the reason why it did investigated, the occasional failure
  316. to start the lease file cleanup will not impact operations. Should the
  317. failure persist however, the size of the lease file will increase without bound.
  318. % DHCPSRV_MEMFILE_LFC_START starting Lease File Cleanup
  319. An informational message issued when the Memfile lease database backend
  320. starts the periodic Lease File Cleanup.
  321. % DHCPSRV_MEMFILE_LFC_UNREGISTER_TIMER_FAILED failed to unregister timer 'memfile-lfc': %1
  322. This debug message is logged when Memfile backend fails to unregister
  323. timer used for lease file cleanup scheduling. There are several reasons
  324. why this could occur, although the most likely cause is that the system
  325. is being shut down and some other component has unregistered the timer.
  326. The message includes the reason for this error.
  327. % DHCPSRV_MEMFILE_NEEDS_DOWNGRADING version of lease file: %1 schema is later than version %2
  328. A warning message issued when the schema of the lease file loaded by the server
  329. is newer than the memfile schema of the server. The server converts the lease
  330. data from newer schemas to its schema as it is read, therefore the lease
  331. information in use by the server will be correct. Note though, that any data
  332. stored in newer schema fields will be dropped. What remains is for the
  333. file itself to be rewritten using the current schema.
  334. % DHCPSRV_MEMFILE_NEEDS_UPGRADING version of lease file: %1 schema is earlier than version %2
  335. A warning message issued when the schema of the lease file loaded by the server
  336. pre-dates the memfile schema of the server. Note that the server converts the
  337. lease data from older schemas to the current schema as it is read, therefore
  338. the lease information in use by the server will be correct. What remains is
  339. for the file itself to be rewritten using the current schema.
  340. % DHCPSRV_MEMFILE_NO_STORAGE running in non-persistent mode, leases will be lost after restart
  341. A warning message issued when writes of leases to disk have been disabled
  342. in the configuration. This mode is useful for some kinds of performance
  343. testing but should not be enabled in normal circumstances. Non-persistence
  344. mode is enabled when 'persist4=no persist6=no' parameters are specified
  345. in the database access string.
  346. % DHCPSRV_MEMFILE_READ_HWADDR_FAIL failed to read hardware address from lease file: %1
  347. A warning message issued when read attempt of the hardware address stored in
  348. a disk file failed. The parameter should provide the exact nature of the failure.
  349. The database read will continue, but that particular lease will no longer
  350. have hardware address associated with it.
  351. % DHCPSRV_MEMFILE_ROLLBACK rolling back memory file database
  352. The code has issued a rollback call. For the memory file database, this is
  353. a no-op.
  354. % DHCPSRV_MEMFILE_UPDATE_ADDR4 updating IPv4 lease for address %1
  355. A debug message issued when the server is attempting to update IPv4
  356. lease from the memory file database for the specified address.
  357. % DHCPSRV_MEMFILE_UPDATE_ADDR6 updating IPv6 lease for address %1
  358. A debug message issued when the server is attempting to update IPv6
  359. lease from the memory file database for the specified address.
  360. % DHCPSRV_MULTIPLE_RAW_SOCKETS_PER_IFACE current configuration will result in opening multiple broadcast capable sockets on some interfaces and some DHCP messages may be duplicated
  361. A warning message issued when the current configuration indicates that multiple
  362. sockets, capable of receiving broadcast traffic, will be opened on some of the
  363. interfaces. It must be noted that this may lead to receiving and processing
  364. the same DHCP message multiple times, as it will be received by each socket
  365. individually.
  366. % DHCPSRV_MYSQL_ADD_ADDR4 adding IPv4 lease with address %1
  367. A debug message issued when the server is about to add an IPv4 lease
  368. with the specified address to the MySQL backend database.
  369. % DHCPSRV_MYSQL_ADD_ADDR6 adding IPv6 lease with address %1, lease type %2
  370. A debug message issued when the server is about to add an IPv6 lease
  371. with the specified address to the MySQL backend database.
  372. % DHCPSRV_MYSQL_COMMIT committing to MySQL database
  373. The code has issued a commit call. All outstanding transactions will be
  374. committed to the database. Note that depending on the MySQL settings,
  375. the committal may not include a write to disk.
  376. % DHCPSRV_MYSQL_DB opening MySQL lease database: %1
  377. This informational message is logged when a DHCP server (either V4 or
  378. V6) is about to open a MySQL lease database. The parameters of the
  379. connection including database name and username needed to access it
  380. (but not the password if any) are logged.
  381. % DHCPSRV_MYSQL_DELETED_EXPIRED_RECLAIMED deleted %1 reclaimed leases from the database
  382. A debug message issued when the server has removed a number of reclaimed
  383. leases from the database. The number of removed leases is included in the
  384. message.
  385. % DHCPSRV_MYSQL_DELETE_ADDR deleting lease for address %1
  386. A debug message issued when the server is attempting to delete a lease for
  387. the specified address from the MySQL database for the specified address.
  388. % DHCPSRV_MYSQL_DELETE_EXPIRED_RECLAIMED4 deleting reclaimed IPv4 leases that expired more than %1 seconds ago
  389. A debug message issued when the server is removing reclaimed DHCPv4
  390. leases which have expired longer than a specified period of time.
  391. The argument is the amount of time Kea waits after a reclaimed
  392. lease expires before considering its removal.
  393. % DHCPSRV_MYSQL_DELETE_EXPIRED_RECLAIMED6 deleting reclaimed IPv6 leases that expired more than %1 seconds ago
  394. A debug message issued when the server is removing reclaimed DHCPv6
  395. leases which have expired longer than a specified period of time.
  396. The argument is the amount of time Kea waits after a reclaimed
  397. lease expires before considering its removal.
  398. % DHCPSRV_MYSQL_FATAL_ERROR Unrecoverable MySQL error occurred: %1 for <%2>, reason: %3 (error code: %4). Server exiting now!
  399. An error message indicating that communication with the MySQL database server
  400. has been lost. When this occurs the server exits immediately with a non-zero
  401. exit code. This is most likely due to a network issue.
  402. % DHCPSRV_MYSQL_GET_ADDR4 obtaining IPv4 lease for address %1
  403. A debug message issued when the server is attempting to obtain an IPv4
  404. lease from the MySQL database for the specified address.
  405. % DHCPSRV_MYSQL_GET_ADDR6 obtaining IPv6 lease for address %1, lease type %2
  406. A debug message issued when the server is attempting to obtain an IPv6
  407. lease from the MySQL database for the specified address.
  408. % DHCPSRV_MYSQL_GET_CLIENTID obtaining IPv4 leases for client ID %1
  409. A debug message issued when the server is attempting to obtain a set
  410. of IPv4 leases from the MySQL database for a client with the specified
  411. client identification.
  412. % DHCPSRV_MYSQL_GET_EXPIRED4 obtaining maximum %1 of expired IPv4 leases
  413. A debug message issued when the server is attempting to obtain expired
  414. IPv4 leases to reclaim them. The maximum number of leases to be retrieved
  415. is logged in the message.
  416. % DHCPSRV_MYSQL_GET_EXPIRED6 obtaining maximum %1 of expired IPv6 leases
  417. A debug message issued when the server is attempting to obtain expired
  418. IPv6 leases to reclaim them. The maximum number of leases to be retrieved
  419. is logged in the message.
  420. % DHCPSRV_MYSQL_GET_HWADDR obtaining IPv4 leases for hardware address %1
  421. A debug message issued when the server is attempting to obtain a set
  422. of IPv4 leases from the MySQL database for a client with the specified
  423. hardware address.
  424. % DHCPSRV_MYSQL_GET_IAID_DUID obtaining IPv6 leases for IAID %1, DUID %2, lease type %3
  425. A debug message issued when the server is attempting to obtain a set of
  426. IPv6 lease from the MySQL database for a client with the specified IAID
  427. (Identity Association ID) and DUID (DHCP Unique Identifier).
  428. % DHCPSRV_MYSQL_GET_IAID_SUBID_DUID obtaining IPv6 leases for IAID %1, Subnet ID %2, DUID %3, lease type %4
  429. A debug message issued when the server is attempting to obtain an IPv6
  430. lease from the MySQL database for a client with the specified IAID
  431. (Identity Association ID), Subnet ID and DUID (DHCP Unique Identifier).
  432. % DHCPSRV_MYSQL_GET_SUBID_CLIENTID obtaining IPv4 lease for subnet ID %1 and client ID %2
  433. A debug message issued when the server is attempting to obtain an IPv4
  434. lease from the MySQL database for a client with the specified subnet ID
  435. and client ID.
  436. % DHCPSRV_MYSQL_GET_SUBID_HWADDR obtaining IPv4 lease for subnet ID %1 and hardware address %2
  437. A debug message issued when the server is attempting to obtain an IPv4
  438. lease from the MySQL database for a client with the specified subnet ID
  439. and hardware address.
  440. % DHCPSRV_MYSQL_GET_VERSION obtaining schema version information
  441. A debug message issued when the server is about to obtain schema version
  442. information from the MySQL database.
  443. % DHCPSRV_MYSQL_HOST_DB opening MySQL hosts database: %1
  444. This informational message is logged when a DHCP server (either V4 or
  445. V6) is about to open a MySQL hosts database. The parameters of the
  446. connection including database name and username needed to access it
  447. (but not the password if any) are logged.
  448. % DHCPSRV_MYSQL_HOST_DB_GET_VERSION obtaining schema version information for the MySQL hosts database
  449. A debug message issued when the server is about to obtain schema version
  450. information from the MySQL hosts database.
  451. % DHCPSRV_MYSQL_ROLLBACK rolling back MySQL database
  452. The code has issued a rollback call. All outstanding transaction will
  453. be rolled back and not committed to the database.
  454. % DHCPSRV_MYSQL_START_TRANSACTION starting new MySQL transaction
  455. A debug message issued whena new MySQL transaction is being started.
  456. This message is typically not issued when inserting data into a
  457. single table because the server doesn't explicitly start
  458. transactions in this case. This message is issued when data is
  459. inserted into multiple tables with multiple INSERT statements
  460. and there may be a need to rollback the whole transaction if
  461. any of these INSERT statements fail.
  462. % DHCPSRV_MYSQL_UPDATE_ADDR4 updating IPv4 lease for address %1
  463. A debug message issued when the server is attempting to update IPv4
  464. lease from the MySQL database for the specified address.
  465. % DHCPSRV_MYSQL_UPDATE_ADDR6 updating IPv6 lease for address %1, lease type %2
  466. A debug message issued when the server is attempting to update IPv6
  467. lease from the MySQL database for the specified address.
  468. % DHCPSRV_NOTYPE_DB no 'type' keyword to determine database backend: %1
  469. This is an error message, logged when an attempt has been made to access
  470. a database backend, but where no 'type' keyword has been included in
  471. the access string. The access string (less any passwords) is included
  472. in the message.
  473. % DHCPSRV_NO_SOCKETS_OPEN no interface configured to listen to DHCP traffic
  474. This warning message is issued when the current server configuration specifies
  475. no interfaces that the server should listen on, or when the specified interfaces are not
  476. configured to receive the traffic.
  477. % DHCPSRV_OPEN_SOCKET_FAIL failed to open socket: %1
  478. A warning message issued when IfaceMgr fails to open and bind a socket.
  479. The reason for the failure is appended as an argument of the log message.
  480. % DHCPSRV_PGSQL_ADD_ADDR4 adding IPv4 lease with address %1
  481. A debug message issued when the server is about to add an IPv4 lease
  482. with the specified address to the PostgreSQL backend database.
  483. % DHCPSRV_PGSQL_ADD_ADDR6 adding IPv6 lease with address %1
  484. A debug message issued when the server is about to add an IPv6 lease
  485. with the specified address to the PostgreSQL backend database.
  486. % DHCPSRV_PGSQL_COMMIT committing to MySQL database
  487. The code has issued a commit call. All outstanding transactions will be
  488. committed to the database. Note that depending on the PostgreSQL settings,
  489. the committal may not include a write to disk.
  490. % DHCPSRV_PGSQL_DB opening PostgreSQL lease database: %1
  491. This informational message is logged when a DHCP server (either V4 or
  492. V6) is about to open a PostgreSQL lease database. The parameters of the
  493. connection including database name and username needed to access it
  494. (but not the password if any) are logged.
  495. % DHCPSRV_PGSQL_DEALLOC_ERROR An error occurred deallocating SQL statements while closing the PostgreSQL lease database: %1
  496. This is an error message issued when a DHCP server (either V4 or V6) experienced
  497. and error freeing database SQL resources as part of closing its connection to
  498. the Postgresql database. The connection is closed as part of normal server
  499. shutdown. This error is most likely a programmatic issue that is highly
  500. unlikely to occur or negatively impact server operation.
  501. % DHCPSRV_PGSQL_DELETE_ADDR deleting lease for address %1
  502. A debug message issued when the server is attempting to delete a lease for
  503. the specified address from the PostgreSQL database for the specified address.
  504. % DHCPSRV_PGSQL_DELETE_EXPIRED_RECLAIMED4 deleting reclaimed IPv4 leases that expired more than %1 seconds ago
  505. A debug message issued when the server is removing reclaimed DHCPv4
  506. leases which have expired longer than a specified period of time.
  507. The argument is the amount of time Kea waits after a reclaimed
  508. lease expires before considering its removal.
  509. % DHCPSRV_PGSQL_DELETE_EXPIRED_RECLAIMED6 deleting reclaimed IPv6 leases that expired more than %1 seconds ago
  510. A debug message issued when the server is removing reclaimed DHCPv6
  511. leases which have expired longer than a specified period of time.
  512. The argument is the amount of time Kea waits after a reclaimed
  513. lease expires before considering its removal.
  514. % DHCPSRV_PGSQL_FATAL_ERROR Unrecoverable PostgreSQL error occurred: Statement: <%1>, reason: %2 (error code: %3). Server exiting now!
  515. An error message indicating that communication with the MySQL database server
  516. has been lost. When this occurs the server exits immediately with a non-zero
  517. exit code. This is most likely due to a network issue.
  518. % DHCPSRV_PGSQL_GET_ADDR4 obtaining IPv4 lease for address %1
  519. A debug message issued when the server is attempting to obtain an IPv4
  520. lease from the PostgreSQL database for the specified address.
  521. % DHCPSRV_PGSQL_GET_ADDR6 obtaining IPv6 lease for address %1 (lease type %2)
  522. A debug message issued when the server is attempting to obtain an IPv6
  523. lease from the PostgreSQL database for the specified address.
  524. % DHCPSRV_PGSQL_GET_CLIENTID obtaining IPv4 leases for client ID %1
  525. A debug message issued when the server is attempting to obtain a set
  526. of IPv4 leases from the PostgreSQL database for a client with the specified
  527. client identification.
  528. % DHCPSRV_PGSQL_GET_EXPIRED4 obtaining maximum %1 of expired IPv4 leases
  529. A debug message issued when the server is attempting to obtain expired
  530. IPv4 leases to reclaim them. The maximum number of leases to be retrieved
  531. is logged in the message.
  532. % DHCPSRV_PGSQL_GET_EXPIRED6 obtaining maximum %1 of expired IPv6 leases
  533. A debug message issued when the server is attempting to obtain expired
  534. IPv6 leases to reclaim them. The maximum number of leases to be retrieved
  535. is logged in the message.
  536. % DHCPSRV_PGSQL_GET_HWADDR obtaining IPv4 leases for hardware address %1
  537. A debug message issued when the server is attempting to obtain a set
  538. of IPv4 leases from the PostgreSQL database for a client with the specified
  539. hardware address.
  540. % DHCPSRV_PGSQL_GET_IAID_DUID obtaining IPv4 leases for IAID %1 and DUID %2, lease type %3
  541. A debug message issued when the server is attempting to obtain a set of
  542. IPv6 lease from the PostgreSQL database for a client with the specified IAID
  543. (Identity Association ID) and DUID (DHCP Unique Identifier).
  544. % DHCPSRV_PGSQL_GET_IAID_SUBID_DUID obtaining IPv4 leases for IAID %1, Subnet ID %2, DUID %3, and lease type %4
  545. A debug message issued when the server is attempting to obtain an IPv6
  546. lease from the PostgreSQL database for a client with the specified IAID
  547. (Identity Association ID), Subnet ID and DUID (DHCP Unique Identifier).
  548. % DHCPSRV_PGSQL_GET_SUBID_CLIENTID obtaining IPv4 lease for subnet ID %1 and client ID %2
  549. A debug message issued when the server is attempting to obtain an IPv4
  550. lease from the PostgreSQL database for a client with the specified subnet ID
  551. and client ID.
  552. % DHCPSRV_PGSQL_GET_SUBID_HWADDR obtaining IPv4 lease for subnet ID %1 and hardware address %2
  553. A debug message issued when the server is attempting to obtain an IPv4
  554. lease from the PostgreSQL database for a client with the specified subnet ID
  555. and hardware address.
  556. % DHCPSRV_PGSQL_GET_VERSION obtaining schema version information
  557. A debug message issued when the server is about to obtain schema version
  558. information from the PostgreSQL database.
  559. % DHCPSRV_PGSQL_HOST_DB opening PostgreSQL hosts database: %1
  560. This informational message is logged when a DHCP server (either V4 or
  561. V6) is about to open a PostgreSQL hosts database. The parameters of the
  562. connection including database name and username needed to access it
  563. (but not the password if any) are logged.
  564. % DHCPSRV_PGSQL_ROLLBACK rolling back PostgreSQL database
  565. The code has issued a rollback call. All outstanding transaction will
  566. be rolled back and not committed to the database.
  567. % DHCPSRV_PGSQL_UPDATE_ADDR4 updating IPv4 lease for address %1
  568. A debug message issued when the server is attempting to update IPv4
  569. lease from the PostgreSQL database for the specified address.
  570. % DHCPSRV_PGSQL_UPDATE_ADDR6 updating IPv6 lease for address %1
  571. A debug message issued when the server is attempting to update IPv6
  572. lease from the PostgreSQL database for the specified address.
  573. % DHCPSRV_QUEUE_NCR %1: name change request to %2 DNS entry queued: %3
  574. A debug message which is logged when the NameChangeRequest to add or remove
  575. a DNS entries for a particular lease has been queued. The first argument
  576. includes the client identification information. The second argument
  577. indicates whether the DNS entry is to be added or removed. The third
  578. argument carries the details of the NameChangeRequest.
  579. % DHCPSRV_QUEUE_NCR_FAILED %1: queueing %2 name change request failed for lease %3: %4
  580. This error message is logged when sending a name change request
  581. to DHCP DDNS failed. The first argument includes the client identification
  582. information. The second argument indicates whether the DNS entry is to be
  583. added or removed. The third argument specifies the leased address. The
  584. last argument provides the reason for failure.
  585. % DHCPSRV_QUEUE_NCR_SKIP %1: skip queueing name change request for lease: %2
  586. This debug message is issued when the server decides to not queue the name
  587. change request because the lease doesn't include the FQDN, the forward and
  588. reverse update is disabled for this lease or the DNS updates are disabled
  589. in the configuration. The first argument includes the client identification
  590. information. The second argument includes the leased address.
  591. % DHCPSRV_TIMERMGR_CALLBACK_FAILED running handler for timer %1 caused exception: %2
  592. This error message is emitted when the timer elapsed and the
  593. operation associated with this timer has thrown an exception.
  594. The timer name and the reason for exception is logged.
  595. % DHCPSRV_TIMERMGR_REGISTER_TIMER registering timer: %1, using interval: %2 ms
  596. A debug message issued when the new interval timer is registered in
  597. the Timer Manager. This timer will have a callback function
  598. associated with it, and this function will be executed according
  599. to the interval specified. The unique name of the timer and the
  600. interval at which the callback function will be executed is
  601. included in the message.
  602. % DHCPSRV_TIMERMGR_RUN_TIMER_OPERATION running operation for timer: %1
  603. A debug message issued when the Timer Manager is about to
  604. run a periodic operation associated with the given timer.
  605. An example of such operation is a periodic cleanup of
  606. expired leases. The name of the timer is included in the
  607. message.
  608. % DHCPSRV_TIMERMGR_SOCKET_CLEAR_FAILED clearing watch socket for timer %1 failed: %2
  609. An error message indicating that the specified timer elapsed,
  610. the operation associated with the timer was executed but the
  611. server was unable to signal this to the worker thread responsible
  612. for dispatching timers. The thread will continue but it will
  613. not be able to dispatch any operations for this timer. The
  614. server reconfiguration or restart may solve the problem
  615. but the situation may repeat.
  616. % DHCPSRV_TIMERMGR_SOCKET_MARK_FAILED marking watch socket for timer %1 failed: %2
  617. An error message indicating that the specified timer elapsed,
  618. but the server was unable to flag that the handler function
  619. should be executed for this timer. The callback will not
  620. be executed this time and most likely the subsequent attempts
  621. will not be successful too. This error is highly unlikely.
  622. The name of the timer and the reason for failure is included
  623. in the message.
  624. % DHCPSRV_TIMERMGR_START_THREAD starting thread for timers
  625. A debug message issued when the Timer Manager is starting a
  626. worker thread to run started timers. The worker thread is
  627. typically started right after all timers have been registered
  628. and runs until timers need to be reconfigured, e.g. their
  629. interval is changed, new timers are registered or existing
  630. timers are unregistered.
  631. % DHCPSRV_TIMERMGR_START_TIMER starting timer: %1
  632. A debug message issued when the registered interval timer is
  633. being started. If this operation is successful the timer will
  634. periodically execute the operation associated with it. The
  635. name of the started timer is included in the message.
  636. % DHCPSRV_TIMERMGR_STOP_THREAD stopping thread for timers
  637. A debug message issued when the Timer Manager is stopping
  638. the worker thread which executes interval timers. When the
  639. thread is stopped no timers will be executed. The thread is
  640. typically stopped at the server reconfiguration or when the
  641. server shuts down.
  642. % DHCPSRV_TIMERMGR_STOP_TIMER stopping timer: %1
  643. A debug message issued when the registered interval timer is
  644. being stopped. The timer remains registered and can be restarted
  645. if necessary. The name of the timer is included in the message.
  646. % DHCPSRV_TIMERMGR_UNREGISTER_ALL_TIMERS unregistering all timers
  647. A debug message issued when all registered interval timers are
  648. being unregistered from the Timer Manager.
  649. % DHCPSRV_TIMERMGR_UNREGISTER_TIMER unregistering timer: %1
  650. A debug message issued when one of the registered interval timers
  651. is unregistered from the Timer Manager. The name of the timer is
  652. included in the message.
  653. % DHCPSRV_UNEXPECTED_NAME database access parameters passed through '%1', expected 'lease-database'
  654. The parameters for access the lease database were passed to the server through
  655. the named configuration parameter, but the code was expecting them to be
  656. passed via the parameter named "lease-database". If the database opens
  657. successfully, there is no impact on server operation. However, as this does
  658. indicate an error in the source code, please submit a bug report.
  659. % DHCPSRV_UNKNOWN_DB unknown database type: %1
  660. The database access string specified a database type (given in the
  661. message) that is unknown to the software. This is a configuration error.