dhcp4_messages.mes 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. # Copyright (C) 2012-2013 Internet Systems Consortium, Inc. ("ISC")
  2. #
  3. # Permission to use, copy, modify, and/or distribute this software for any
  4. # purpose with or without fee is hereby granted, provided that the above
  5. # copyright notice and this permission notice appear in all copies.
  6. #
  7. # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  8. # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  9. # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  10. # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  11. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  12. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  13. # PERFORMANCE OF THIS SOFTWARE.
  14. $NAMESPACE isc::dhcp
  15. % DHCP4_ACTIVATE_INTERFACE activating interface %1
  16. This message is printed when DHCPv4 server enabled an interface to be used
  17. to receive DHCPv4 traffic. IPv4 socket on this interface will be opened once
  18. Interface Manager starts up procedure of opening sockets.
  19. % DHCP4_CCSESSION_STARTED control channel session started on socket %1
  20. A debug message issued during startup after the IPv4 DHCP server has
  21. successfully established a session with the BIND 10 control channel.
  22. % DHCP4_CCSESSION_STARTING starting control channel session, specfile: %1
  23. This debug message is issued just before the IPv4 DHCP server attempts
  24. to establish a session with the BIND 10 control channel.
  25. % DHCP4_COMMAND_RECEIVED received command %1, arguments: %2
  26. A debug message listing the command (and possible arguments) received
  27. from the BIND 10 control system by the IPv4 DHCP server.
  28. % DHCP4_CONFIG_COMPLETE DHCPv4 server has completed configuration: %1
  29. This is an informational message announcing the successful processing of a
  30. new configuration. It is output during server startup, and when an updated
  31. configuration is committed by the administrator. Additional information
  32. may be provided.
  33. % DHCP4_CONFIG_LOAD_FAIL failed to load configuration: %1
  34. This critical error message indicates that the initial DHCPv4
  35. configuration has failed. The server will start, but nothing will be
  36. served until the configuration has been corrected.
  37. % DHCP4_CONFIG_NEW_SUBNET a new subnet has been added to configuration: %1
  38. This is an informational message reporting that the configuration has
  39. been extended to include the specified IPv4 subnet.
  40. % DHCP4_CONFIG_OPTION_DUPLICATE multiple options with the code %1 added to the subnet %2
  41. This warning message is issued on an attempt to configure multiple options
  42. with the same option code for a particular subnet. Adding multiple options
  43. is uncommon for DHCPv4, but is not prohibited.
  44. % DHCP4_CONFIG_START DHCPv4 server is processing the following configuration: %1
  45. This is a debug message that is issued every time the server receives a
  46. configuration. That happens at start up and also when a server configuration
  47. change is committed by the administrator.
  48. % DHCP4_CONFIG_UPDATE updated configuration received: %1
  49. A debug message indicating that the IPv4 DHCP server has received an
  50. updated configuration from the BIND 10 configuration system.
  51. % DHCP4_DB_BACKEND_STARTED lease database started (type: %1, name: %2)
  52. This informational message is printed every time DHCPv4 server is started
  53. and gives both the type and name of the database being used to store
  54. lease and other information.
  55. % DHCP4_DEACTIVATE_INTERFACE deactivate interface %1
  56. This message is printed when DHCPv4 server disables an interface from being
  57. used to receive DHCPv4 traffic. Sockets on this interface will not be opened
  58. by the Interface Manager until interface is enabled.
  59. % DHCP4_HOOK_BUFFER_RCVD_SKIP received DHCPv4 buffer was dropped because a callout set the skip flag.
  60. This debug message is printed when a callout installed on buffer4_receive
  61. hook point set the skip flag. For this particular hook point, the
  62. setting of the flag by a callout instructs the server to drop the packet.
  63. % DHCP4_HOOK_BUFFER_SEND_SKIP prepared DHCPv4 response was dropped because a callout set the skip flag.
  64. This debug message is printed when a callout installed on buffer4_send
  65. hook point set the skip flag. For this particular hook point, the
  66. setting of the flag by a callout instructs the server to drop the packet.
  67. Server completed all the processing (e.g. may have assigned, updated
  68. or released leases), but the response will not be send to the client.
  69. % DHCP4_HOOK_LEASE4_RELEASE_SKIP DHCPv4 lease was not released because a callout set the skip flag.
  70. This debug message is printed when a callout installed on lease4_release
  71. hook point set the skip flag. For this particular hook point, the
  72. setting of the flag by a callout instructs the server to not release
  73. a lease.
  74. % DHCP4_HOOK_PACKET_RCVD_SKIP received DHCPv4 packet was dropped, because a callout set the skip flag.
  75. This debug message is printed when a callout installed on the pkt4_receive
  76. hook point sets the skip flag. For this particular hook point, the
  77. setting of the flag instructs the server to drop the packet.
  78. % DHCP4_HOOK_PACKET_SEND_SKIP prepared DHCPv6 response was not sent, because a callout set skip flag.
  79. This debug message is printed when a callout installed on the pkt4_send
  80. hook point sets the skip flag. For this particular hook point, the setting
  81. of the flag instructs the server to drop the packet. This means that
  82. the client will not get any response, even though the server processed
  83. client's request and acted on it (e.g. possibly allocated a lease).
  84. % DHCP4_HOOK_SUBNET4_SELECT_SKIP no subnet was selected, because a callout set skip flag.
  85. This debug message is printed when a callout installed on the
  86. subnet4_select hook point sets the skip flag. For this particular hook
  87. point, the setting of the flag instructs the server not to choose a
  88. subnet, an action that severely limits further processing; the server
  89. will be only able to offer global options - no addresses will be assigned.
  90. % DHCP4_HOOKS_LIBS_RELOAD_FAIL reload of hooks libraries failed
  91. A "libreload" command was issued to reload the hooks libraries but for
  92. some reason the reload failed. Other error messages issued from the
  93. hooks framework will indicate the nature of the problem.
  94. % DHCP4_LEASE_ADVERT lease %1 advertised (client client-id %2, hwaddr %3)
  95. This debug message indicates that the server successfully advertised
  96. a lease. It is up to the client to choose one server out of othe advertised
  97. and continue allocation with that server. This is a normal behavior and
  98. indicates successful operation.
  99. % DHCP4_LEASE_ADVERT_FAIL failed to advertise a lease for client client-id %1, hwaddr %2
  100. This message indicates that the server has failed to offer a lease to
  101. the specified client after receiving a DISCOVER message from it. There are
  102. many possible reasons for such a failure.
  103. % DHCP4_LEASE_ALLOC lease %1 has been allocated for client-id %2, hwaddr %3
  104. This debug message indicates that the server successfully granted a lease
  105. in response to client's REQUEST message. This is a normal behavior and
  106. indicates successful operation.
  107. % DHCP4_LEASE_ALLOC_FAIL failed to grant a lease for client-id %1, hwaddr %2
  108. This message indicates that the server failed to grant a lease to the
  109. specified client after receiving a REQUEST message from it. There are many
  110. possible reasons for such a failure. Additional messages will indicate the
  111. reason.
  112. % DHCP4_NO_SOCKETS_OPEN no interface configured to listen to DHCP traffic
  113. This warning message is issued when current server configuration specifies
  114. no interfaces that server should listen on, or specified interfaces are not
  115. configured to receive the traffic.
  116. % DHCP4_NOT_RUNNING IPv4 DHCP server is not running
  117. A warning message is issued when an attempt is made to shut down the
  118. IPv4 DHCP server but it is not running.
  119. % DHCP4_OPEN_SOCKET opening sockets on port %1
  120. A debug message issued during startup, this indicates that the IPv4 DHCP
  121. server is about to open sockets on the specified port.
  122. % DHCP4_PACKET_PARSE_FAIL failed to parse incoming packet: %1
  123. The IPv4 DHCP server has received a packet that it is unable to
  124. interpret. The reason why the packet is invalid is included in the message.
  125. % DHCP4_PACKET_PROCESS_FAIL failed to process packet received from %1: %2
  126. This is a general catch-all message indicating that the processing of a
  127. received packet failed. The reason is given in the message. The server
  128. will not send a response but will instead ignore the packet.
  129. % DHCP4_PACKET_DROP_NO_TYPE packet received on interface %1 dropped, because of missing msg-type option
  130. This is a debug message informing that incoming DHCPv4 packet did not
  131. have mandatory DHCP message type option and thus was dropped.
  132. % DHCP4_PACKET_RECEIVED %1 (type %2) packet received on interface %3
  133. A debug message noting that the server has received the specified type of
  134. packet on the specified interface. Note that a packet marked as UNKNOWN
  135. may well be a valid DHCP packet, just a type not expected by the server
  136. (e.g. it will report a received OFFER packet as UNKNOWN).
  137. % DHCP4_PACKET_RECEIVE_FAIL error on attempt to receive packet: %1
  138. The IPv4 DHCP server tried to receive a packet but an error
  139. occurred during this attempt. The reason for the error is included in
  140. the message.
  141. % DHCP4_PACKET_SEND_FAIL failed to send DHCPv4 packet: %1
  142. This error is output if the IPv4 DHCP server fails to send an assembled
  143. DHCP message to a client. The reason for the error is included in the
  144. message.
  145. % DHCP4_PARSER_COMMIT_EXCEPTION parser failed to commit changes
  146. On receipt of message containing details to a change of the IPv4 DHCP
  147. server configuration, a set of parsers were successfully created, but one
  148. of them failed to commit its changes due to a low-level system exception
  149. being raised. Additional messages may be output indicating the reason.
  150. % DHCP4_PARSER_COMMIT_FAIL parser failed to commit changes: %1
  151. On receipt of message containing details to a change of the IPv4 DHCP
  152. server configuration, a set of parsers were successfully created, but
  153. one of them failed to commit its changes. The reason for the failure
  154. is given in the message.
  155. % DHCP4_PARSER_CREATED created parser for configuration element %1
  156. A debug message output during a configuration update of the IPv4 DHCP
  157. server, notifying that the parser for the specified configuration element
  158. has been successfully created.
  159. % DHCP4_PARSER_EXCEPTION failed to create or run parser for configuration element %1
  160. On receipt of message containing details to a change of its configuration,
  161. the IPv4 DHCP server failed to create a parser to decode the contents of
  162. the named configuration element, or the creation succeeded but the parsing
  163. actions and committal of changes failed. The message has been output in
  164. response to a non-BIND 10 exception being raised. Additional messages
  165. may give further information.
  166. % DHCP4_PARSER_FAIL failed to create or run parser for configuration element %1: %2
  167. On receipt of message containing details to a change of its configuration,
  168. the IPv4 DHCP server failed to create a parser to decode the contents
  169. of the named configuration element, or the creation succeeded but the
  170. parsing actions and committal of changes failed. The reason for the
  171. failure is given in the message.
  172. % DHCP4_QUERY_DATA received packet type %1, data is <%2>
  173. A debug message listing the data received from the client.
  174. % DHCP4_RELEASE address %1 belonging to client-id %2, hwaddr %3 was released properly.
  175. This debug message indicates that an address was released properly. It
  176. is a normal operation during client shutdown.
  177. % DHCP4_RELEASE_EXCEPTION exception %1 while trying to release address %2
  178. This message is output when an error was encountered during an attempt
  179. to process a RELEASE message. The error will not affect the client,
  180. which does not expect any response from the server for RELEASE
  181. messages. Depending on the nature of problem, it may affect future
  182. server operation.
  183. % DHCP4_RELEASE_FAIL failed to remove lease for address %1 for duid %2, hwaddr %3
  184. This error message indicates that the software failed to remove a
  185. lease from the lease database. It is probably due to an error during a
  186. database operation: resolution will most likely require administrator
  187. intervention (e.g. check if DHCP process has sufficient privileges to
  188. update the database). It may also be triggered if a lease was manually
  189. removed from the database during RELEASE message processing.
  190. % DHCP4_RELEASE_FAIL_NO_LEASE client (client-id %2) tried to release address %1, but there is no lease for such address.
  191. This warning message is printed when client attempts to release a lease,
  192. but no such lease is known to the server.
  193. % DHCP4_RELEASE_FAIL_WRONG_CLIENT_ID client (client-id %2) tried to release address %1, but it belongs to client (client-id %3)
  194. This warning message indicates that client tried to release an address
  195. that belongs to a different client. This should not happen in normal
  196. circumstances and may indicate a misconfiguration of the client. However,
  197. since the client releasing the address will stop using it anyway, there
  198. is a good chance that the situation will correct itself.
  199. % DHCP4_RELEASE_FAIL_WRONG_HWADDR client (client-id %2) tried to release address %1, but sent from a wrong hardware address (%3)
  200. This warning message indicates that client tried to release an address
  201. that does belong to it, but the lease information was associated with
  202. a different hardware address. One possible reason for using different
  203. hardware address is that a cloned virtual machine was not updated and
  204. both clones use the same client-id.
  205. % DHCP4_RESPONSE_DATA responding with packet type %1, data is <%2>
  206. A debug message listing the data returned to the client.
  207. % DHCP4_SERVERID_GENERATED server-id %1 has been generated and will be stored in %2
  208. This informational messages indicates that the server was not able to
  209. read its server identifier and has generated a new one. This server-id
  210. will be stored in a file and will be read (and used) whenever the server
  211. is restarted. This is normal behavior when the server is started for the
  212. first time. If this message is printed every time the server is started,
  213. please check that the server has sufficient permission to write its
  214. server-id file and that the file is not corrupt.
  215. % DHCP4_SERVERID_LOADED server-id %1 has been loaded from file %2
  216. This debug message indicates that the server loaded its server identifier.
  217. That value is sent in all server responses and clients use it to
  218. discriminate between servers. This is a part of normal startup or
  219. reconfiguration procedure.
  220. % DHCP4_SERVERID_WRITE_FAIL server was not able to write its ID to file %1
  221. This warning message indicates that server was not able to write its
  222. server identifier to a file. The most likely cause is is that the server
  223. does not have permissions to write the server id file.
  224. % DHCP4_SERVER_FAILED server failed: %1
  225. The IPv4 DHCP server has encountered a fatal error and is terminating.
  226. The reason for the failure is included in the message.
  227. % DHCP4_SESSION_FAIL failed to establish BIND 10 session (%1), running stand-alone
  228. The server has failed to establish communication with the rest of BIND
  229. 10 and is running in stand-alone mode. (This behavior will change once
  230. the IPv4 DHCP server is properly integrated with the rest of BIND 10.)
  231. % DHCP4_SHUTDOWN server shutdown
  232. The IPv4 DHCP server has terminated normally.
  233. % DHCP4_SHUTDOWN_REQUEST shutdown of server requested
  234. This debug message indicates that a shutdown of the IPv4 server has
  235. been requested via a call to the 'shutdown' method of the core Dhcpv4Srv
  236. object.
  237. % DHCP4_SRV_CONSTRUCT_ERROR error creating Dhcpv4Srv object, reason: %1
  238. This error message indicates that during startup, the construction of a
  239. core component within the IPv4 DHCP server (the Dhcpv4 server object)
  240. has failed. As a result, the server will exit. The reason for the
  241. failure is given within the message.
  242. % DHCP4_STANDALONE skipping message queue, running standalone
  243. This is a debug message indicating that the IPv4 server is running in
  244. standalone mode, not connected to the message queue. Standalone mode
  245. is only useful during program development, and should not be used in a
  246. production environment.
  247. % DHCP4_STARTING server starting
  248. This informational message indicates that the IPv4 DHCP server has
  249. processed any command-line switches and is starting.
  250. % DHCP4_START_INFO pid: %1, port: %2, verbose: %3, standalone: %4
  251. This is a debug message issued during the IPv4 DHCP server startup.
  252. It lists some information about the parameters with which the server
  253. is running.
  254. % DHCP4_SUBNET_SELECTED the %1 subnet was selected for client assignment
  255. This is a debug message noting the selection of a subnet to be used for
  256. address and option assignment. Subnet selection is one of the early
  257. steps in the processing of incoming client message.
  258. % DHCP4_SUBNET_SELECTION_FAILED failed to select a subnet for incoming packet, src: %1, type: %2
  259. This warning message is output when a packet was received from a subnet
  260. for which the DHCPv4 server has not been configured. The most probable
  261. cause is a misconfiguration of the server.