dhcpsrv_messages.mes 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. % DHCPSRV_INVALID_ACCESS invalid database access string: %1
  16. This is logged when an attempt has been made to parse a database access string
  17. and the attempt ended in error. The access string in question - which should
  18. be of the form 'keyword=value keyword=value...' is included in the message.
  19. % DHCPSRV_MEMFILE_DB opening memory file lease database: %1
  20. This informational message is logged when a DHCP server (either V4 or V6) is
  21. about to open a memory file lease database. The parameters of the connection
  22. are logged.
  23. % DHCPSRV_MYSQL_ADD_ADDR4 adding IPv4 lease with address %1
  24. A debug message issued when the server is about to add an IPv4 lease
  25. with the specified address to the MySQL backend database.
  26. % DHCPSRV_MYSQL_ADD_ADDR6 adding IPv6 lease with address %1
  27. A debug message issued when the server is about to add an IPv6 lease
  28. with the specified address to the MySQL backend database.
  29. % DHCPSRV_MYSQL_DB opening MySQL lease database: %1
  30. This informational message is logged when a DHCP server (either V4 or V6) is
  31. about to open a MySQL lease database. The parameters of the connection
  32. including database name and username needed to access it (but not the
  33. password if any) are logged.
  34. % DHCPSRV_MYSQL_DELETE_ADDR deleting lease for address %1
  35. A debug message issued when the server is attempting to delete
  36. a lease for the specified address from the database for the specified address.
  37. % DHCPSRV_MYSQL_GET_ADDR4 obtaining IPv4 lease for address %1
  38. A debug message issued when the server is attempting to obtain an
  39. IPv4 lease from the database for the specified address.
  40. % DHCPSRV_MYSQL_GET_ADDR6 obtaining IPv6 lease for address %1
  41. A debug message issued when the server is attempting to obtain an
  42. IPv6 lease from the database for the specified address.
  43. % DHCPSRV_MYSQL_GET_CLIENTID obtaining IPv4 leases for client ID %1
  44. A debug message issued when the server is attempting to obtain a set of
  45. IPv4 leases from the database for a client with the specified client
  46. identification.
  47. % DHCPSRV_MYSQL_GET_HWADDR obtaining IPv4 leases for hardware address %1
  48. A debug message issued when the server is attempting to obtain a set of
  49. IPv4 leases from the database for a client with the specified hardware
  50. address.
  51. % DHCPSRV_MYSQL_GET_IAID_DUID obtaining IPv4 leases for IAID %1 and DUID %2
  52. A debug message issued when the server is attempting to obtain a set of IPv6
  53. lease from the database for a client with the specified IAID (Identity Association ID) and
  54. DUID (DHCP Unique Identifier).
  55. % DHCPSRV_MYSQL_GET_IAID_SUBID_DUID obtaining IPv4 leases for IAID %1, Subnet ID %2 and DUID %3
  56. A debug message issued when the server is attempting to obtain an IPv6 lease
  57. from the database for a client with the specified IAID (Identity Association ID),
  58. Subnet ID and DUID (DHCP Unique Identifier).
  59. % DHCPSRV_MYSQL_GET_SUBID_CLIENTID obtaining IPv4 lease for subnet ID %1 and client ID %2
  60. A debug message issued when the server is attempting to obtain an IPv4
  61. lease from the database for a client with the specified subnet ID and
  62. client ID.
  63. % DHCPSRV_MYSQL_GET_SUBID_HWADDR obtaining IPv4 lease for subnet ID %1 and hardware address %2
  64. A debug message issued when the server is attempting to obtain an IPv4
  65. lease from the database for a client with the specified subnet ID and
  66. hardware address.
  67. % DHCPSRV_MYSQL_GET_VERSION obtaining schema version information
  68. A debug message issued when the server is about to obtain schema version
  69. information from the database.
  70. % DHCPSRV_MYSQL_UPDATE_ADDR4 updating IPv4 lease for address %1
  71. A debug message issued when the server is attempting to update
  72. IPv4 lease from the database for the specified address.
  73. % DHCPSRV_MYSQL_UPDATE_ADDR6 updating IPv6 lease for address %1
  74. A debug message issued when the server is attempting to update
  75. IPv6 lease from the database for the specified address.
  76. % DHCPSRV_NOTYPE_DB no 'type' keyword to determine database backend: %1
  77. This is an error message, logged when an attempt has been made to access a
  78. database backend, but where no 'type' keyword has been included in the access
  79. string. The access string (less any passwords) is included in the message.
  80. % DHCPSRV_UNKNOWN_DB unknown database type: %1
  81. The database access string specified a database type (given in the message)
  82. that is unknown to the software. This is a configuration error.