dhcp4_messages.mes 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # Copyright (C) 2012 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_CCSESSION_STARTED control channel session started on socket %1
  16. A debug message issued during startup after the IPv4 DHCP server has
  17. successfully established a session with the BIND 10 control channel.
  18. % DHCP4_CCSESSION_STARTING starting control channel session, specfile: %1
  19. This debug message is issued just before the IPv4 DHCP server attempts
  20. to establish a session with the BIND 10 control channel.
  21. % DHCP4_COMMAND_RECEIVED received command %1, arguments: %2
  22. A debug message listing the command (and possible arguments) received
  23. from the BIND 10 control system by the IPv4 DHCP server.
  24. % DHCP4_CONFIG_UPDATE updated configuration received: %1
  25. A debug message indicating that the IPv4 DHCP server has received an
  26. updated configuration from the BIND 10 configuration system.
  27. % DHCP4_NOT_RUNNING IPv4 DHCP server is not running
  28. A warning message is issued when an attempt is made to shut down the
  29. IPv4 DHCP server but it is not running.
  30. % DHCP4_OPEN_SOCKET opening sockets on port %1
  31. A debug message issued during startup, this indicates that the IPv4 DHCP
  32. server is about to open sockets on the specified port.
  33. % DHCP4_PACKET_PARSE_FAIL failed to parse incoming packet: %1
  34. The IPv4 DHCP server has received a packet that it is unable to
  35. interpret. The reason why the packet is invalid is included in the message.
  36. % DHCP4_PACKET_RECEIVED %1 (type %2) packet received on interface %3
  37. A debug message noting that the server has received the specified type of
  38. packet on the specified interface. Note that a packet marked as UNKNOWN
  39. may well be a valid DHCP packet, just a type not expected by the server
  40. (e.g. it will report a received OFFER packet as UNKNOWN).
  41. % DHCP4_PACKET_RECEIVE_FAIL error on attempt to receive packet: %1
  42. The IPv4 DHCP server tried to receive a packet but an error
  43. occured during this attempt. The reason for the error is included in
  44. the message.
  45. % DHCP4_PACKET_SEND_FAIL failed to send DHCPv4 packet: %1
  46. This error is output if the IPv4 DHCP server fails to send an assembled
  47. DHCP message to a client. The reason for the error is included in the
  48. message.
  49. % DHCP4_PACK_FAIL failed to assemble response correctly
  50. This error is output if the server failed to assemble the data to be
  51. returned to the client into a valid packet. The cause is most likely
  52. to be a programming error: please raise a bug report.
  53. % DHCP4_QUERY_DATA received packet type %1, data is <%2>
  54. A debug message listing the data received from the client.
  55. % DHCP4_RESPONSE_DATA responding with packet type %1, data is <%2>
  56. A debug message listing the data returned to the client.
  57. % DHCP4_SERVER_FAILED server failed: %1
  58. The IPv4 DHCP server has encountered a fatal error and is terminating.
  59. The reason for the failure is included in the message.
  60. % DHCP4_SESSION_FAIL failed to establish BIND 10 session (%1), running stand-alone
  61. The server has failed to establish communication with the rest of BIND
  62. 10 and is running in stand-alone mode. (This behavior will change once
  63. the IPv4 DHCP server is properly integrated with the rest of BIND 10.)
  64. % DHCP4_SHUTDOWN server shutdown
  65. The IPv4 DHCP server has terminated normally.
  66. % DHCP4_SHUTDOWN_REQUEST shutdown of server requested
  67. This debug message indicates that a shutdown of the IPv4 server has
  68. been requested via a call to the 'shutdown' method of the core Dhcpv4Srv
  69. object.
  70. % DHCP4_SRV_CONSTRUCT_ERROR error creating Dhcpv4Srv object, reason: %1
  71. This error message indicates that during startup, the construction of a
  72. core component within the IPv4 DHCP server (the Dhcpv4 server object)
  73. has failed. As a result, the server will exit. The reason for the
  74. failure is given within the message.
  75. % DHCP4_STANDALONE skipping message queue, running standalone
  76. This is a debug message indicating that the IPv4 server is running in
  77. standalone mode, not connected to the message queue. Standalone mode
  78. is only useful during program development, and should not be used in a
  79. production environment.
  80. % DHCP4_STARTING server starting
  81. This informational message indicates that the IPv4 DHCP server has
  82. processed any command-line switches and is starting.
  83. % DHCP4_START_INFO pid: %1, port: %2, verbose: %3, standalone: %4
  84. This is a debug message issued during the IPv4 DHCP server startup.
  85. It lists some information about the parameters with which the server
  86. is running.