Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

412 lines
17 KiB

  1. ;/*++
  2. ;
  3. ;Copyright(c) 1998,99 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; log_msgs.mc
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Windows Load Balancing Service (WLBS)
  12. ; Driver - event log string resources
  13. ;
  14. ;Author:
  15. ;
  16. ; kyrilf
  17. ;
  18. ;--*/
  19. ;
  20. ;
  21. ;#ifndef _Log_msgs_h_
  22. ;#define _Log_msgs_h_
  23. ;
  24. ;
  25. MessageIdTypedef=NTSTATUS
  26. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  27. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  28. Warning=0x2:STATUS_SEVERITY_WARNING
  29. Error=0x3:STATUS_SEVERITY_ERROR
  30. )
  31. FacilityNames=(System=0x0
  32. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  33. RpcStubs=0x3:FACILITY_RPC_STUBS
  34. Io=0x4:FACILITY_IO_ERROR_CODE
  35. CVYlog=0x7:FACILITY_CONVOY_ERROR_CODE
  36. )
  37. ;//
  38. ;// %1 is reserved by the IO Manager. If IoAllocateErrorLogEntry is
  39. ;// called with a device, the name of the device will be inserted into
  40. ;// the message at %1. Otherwise, the place of %1 will be left empty.
  41. ;// In either case, the insertion strings from the driver's error log
  42. ;// entry starts at %2. In other words, the first insertion string goes
  43. ;// to %2, the second to %3 and so on.
  44. ;//
  45. ;
  46. ;
  47. ;
  48. MessageId=0x0001 Facility=CVYlog Severity=Informational
  49. SymbolicName=MSG_INFO Language=English
  50. %2 %1: %3. %4 %5
  51. .
  52. ;
  53. MessageId=+1 Facility=CVYlog Severity=Warning
  54. SymbolicName=MSG_WARN Language=English
  55. %2 %1: %3. %4 %5
  56. .
  57. ;
  58. MessageId=+1 Facility=CVYlog Severity=Error
  59. SymbolicName=MSG_ERROR Language=English
  60. %2 %1: %3. %4 %5
  61. .
  62. ;
  63. MessageId=+1 Facility=CVYlog Severity=Informational
  64. SymbolicName=MSG_INFO_START Language=English
  65. %2 %1: %3 started. %4 %5
  66. .
  67. ;
  68. MessageId=+1 Facility=CVYlog Severity=Informational
  69. SymbolicName=MSG_INFO_STARTED Language=English
  70. %2 %1: cluster mode started with host ID %3. %4 %5
  71. .
  72. ;
  73. MessageId=+1 Facility=CVYlog Severity=Informational
  74. SymbolicName=MSG_INFO_STOPPED Language=English
  75. %2 %1: cluster mode stopped. %3 %4 %5
  76. .
  77. ;
  78. MessageId=+1 Facility=CVYlog Severity=Error
  79. SymbolicName=MSG_ERROR_INTERNAL Language=English
  80. %2 %1: internal error. Please contact technical support. %3 %4 %5
  81. .
  82. ;
  83. MessageId=+1 Facility=CVYlog Severity=Error
  84. SymbolicName=MSG_ERROR_REGISTERING Language=English
  85. %2 %1: error registering driver with NDIS. %3 %4 %5
  86. .
  87. ;
  88. MessageId=+1 Facility=CVYlog Severity=Error
  89. SymbolicName=MSG_ERROR_MEDIA Language=English
  90. %2 %1: driver does not support media type that was requested by TCP/IP. NLB will not bind to this adapter. %3 %4 %5
  91. .
  92. ;
  93. MessageId=+1 Facility=CVYlog Severity=Error
  94. SymbolicName=MSG_ERROR_MEMORY Language=English
  95. %2 %1: driver could not allocate required memory pool. %3 %4 %5
  96. .
  97. ;
  98. MessageId=+1 Facility=CVYlog Severity=Error
  99. SymbolicName=MSG_ERROR_OPEN Language=English
  100. %2 %1: driver could not open device %3. %4 %5
  101. .
  102. ;
  103. MessageId=+1 Facility=CVYlog Severity=Error
  104. SymbolicName=MSG_ERROR_ANNOUNCE Language=English
  105. %2 %1: driver could not announce virtual NIC %3 to TCP/IP. %4 %5
  106. .
  107. ;
  108. MessageId=+1 Facility=CVYlog Severity=Warning
  109. SymbolicName=MSG_WARN_RESOURCES Language=English
  110. %2 %1: driver temporarily ran out of resources. Increase the %3 value under \SYSTEM\CurrentControlSet\Services\WLBS\Parameters key in the registry. %4 %5
  111. .
  112. ;
  113. MessageId=+1 Facility=CVYlog Severity=Error
  114. SymbolicName=MSG_ERROR_NET_ADDR Language=English
  115. %2 %1: cluster network address %3 is invalid. Please check WLBS Setup page and make sure that it consists of six hexadecimal byte values separated by dashes. %4 %5
  116. .
  117. ;
  118. MessageId=+1 Facility=CVYlog Severity=Warning
  119. SymbolicName=MSG_WARN_DED_IP_ADDR Language=English
  120. %2 %1: dedicated IP address %3 is invalid. Will proceed assuming that there is no dedicated IP address. Please check WLBS Setup page and make sure that it consists of four decimal byte values separated by dots. %4 %5
  121. .
  122. ;
  123. MessageId=+1 Facility=CVYlog Severity=Error
  124. SymbolicName=MSG_ERROR_CL_IP_ADDR Language=English
  125. %2 %1: cluster IP address %3 is invalid. Please check WLBS Setup page and make sure that it consists of four decimal byte values separated by dots. %4 %5
  126. .
  127. ;
  128. MessageId=+1 Facility=CVYlog Severity=Error
  129. SymbolicName=MSG_ERROR_HOST_ID Language=English
  130. %2 %1: duplicate host priority %3 was discovered on the network. Please check WLBS Setup dialog on all hosts that belong to the cluster and make sure that they all contain unique host priorities between 1 and 32. %4 %5
  131. .
  132. ;
  133. MessageId=+1 Facility=CVYlog Severity=Error
  134. SymbolicName=MSG_ERROR_DUP_DED_IP_ADDR Language=English
  135. %2 %1: duplicate dedicated ip address %3 was discovered on the network. Please check WLBS Setup dialog on all hosts that belong to the cluster and make sure that they all contain unique dedicated ip addresses. %4 %5
  136. .
  137. ;
  138. MessageId=+1 Facility=CVYlog Severity=Warning
  139. SymbolicName=MSG_WARN_OVERLAP Language=English
  140. %2 %1: duplicate cluster subnets detected. The network may have been inadvertently partitioned. %3 %4 %5
  141. .
  142. ;
  143. MessageId=+1 Facility=CVYlog Severity=Warning
  144. SymbolicName=MSG_WARN_DESCRIPTORS Language=English
  145. %2 %1: could not allocate additional connection descriptors. Increase the %3 value under \SYSTEM\CurrentControlSet\Services\WLBS\Parameters key in the registry. %4 %5
  146. .
  147. ;
  148. MessageId=+1 Facility=CVYlog Severity=Error
  149. SymbolicName=MSG_ERROR_SINGLE_DUP Language=English
  150. %2 %1: port rules with duplicate single host priority %3 detected on the network. Please check WLBS Setup dialog on all hosts that belong to the cluster and make sure that they do not contain single host rules with duplicate priorities for the same port range. %4 %5
  151. .
  152. ;
  153. MessageId=+1 Facility=CVYlog Severity=Error
  154. SymbolicName=MSG_ERROR_RULES_MISMATCH Language=English
  155. %2 %1: host %3 does not have the same number or type of port rules as this host. Please check WLBS Setup dialog on all machines that belong to the cluster and make sure that they all contain the same number and the same type of port rules. %4 %5
  156. .
  157. ;
  158. MessageId=+1 Facility=CVYlog Severity=Warning
  159. SymbolicName=MSG_WARN_TOO_MANY_RULES Language=English
  160. %2 %1: there are more port rules defined than you are licensed to use. Some rules will be disabled. Please check WLBS Setup dialog to ensure that you are using the proper number of rules. %3 %4 %5
  161. .
  162. ;
  163. MessageId=+1 Facility=CVYlog Severity=Informational
  164. SymbolicName=MSG_INFO_PORT_ENABLED Language=English
  165. %2 %1: enabled traffic handling for rule containing port %3. %4 %5
  166. .
  167. ;
  168. MessageId=+1 Facility=CVYlog Severity=Informational
  169. SymbolicName=MSG_INFO_PORT_DISABLED Language=English
  170. %2 %1: disabled ALL traffic handling for rule containing port %3. %4 %5
  171. .
  172. ;
  173. MessageId=+1 Facility=CVYlog Severity=Warning
  174. SymbolicName=MSG_WARN_PORT_NOT_FOUND Language=English
  175. %2 %1: port %3 not found in any of the valid port rules. %4 %5
  176. .
  177. ;
  178. MessageId=+1 Facility=CVYlog Severity=Warning
  179. SymbolicName=MSG_WARN_CLUSTER_STOPPED Language=English
  180. %2 %1: port rules cannot be enabled/disabled while cluster operations are stopped. %3 %4 %5
  181. .
  182. ;
  183. MessageId=+1 Facility=CVYlog Severity=Informational
  184. SymbolicName=MSG_INFO_CONVERGING Language=English
  185. %2 %1: host %3 is converging with host(s) %4 %5 as part of the cluster.
  186. .
  187. ;
  188. MessageId=+1 Facility=CVYlog Severity=Informational
  189. SymbolicName=MSG_INFO_SLAVE Language=English
  190. %2 %1: host %3 converged with host(s) %4 %5 as part of the cluster.
  191. .
  192. ;
  193. MessageId=+1 Facility=CVYlog Severity=Informational
  194. SymbolicName=MSG_INFO_MASTER Language=English
  195. %2 %1: host %3 converged as DEFAULT host with host(s) %4 %5 as part of the cluster.
  196. .
  197. ;
  198. MessageId=+1 Facility=CVYlog Severity=Warning
  199. SymbolicName=MSG_WARN_DED_NET_MASK Language=English
  200. %2 %1: dedicated network mask %3 is invalid. Will ignore dedicated IP address and network mask. Please check WLBS Setup page and make sure that it consists of four decimal byte values separated by dots. %4 %5
  201. .
  202. ;
  203. MessageId=+1 Facility=CVYlog Severity=Error
  204. SymbolicName=MSG_ERROR_CL_NET_MASK Language=English
  205. %2 %1: cluster network mask %3 is invalid. Please check WLBS Setup page and make sure that it consists of four decimal byte values separated by dots. %4 %5
  206. .
  207. ;
  208. MessageId=+1 Facility=CVYlog Severity=Warning
  209. SymbolicName=MSG_WARN_DED_MISMATCH Language=English
  210. %2 %1: both dedicated IP address and network mask have to be entered. Will ignore dedicated IP address and network mask. %3 %4 %5
  211. .
  212. ;
  213. MessageId=+1 Facility=CVYlog Severity=Warning
  214. SymbolicName=MSG_WARN_RCT_HACK Language=English
  215. %2 %1: remote control request rejected from host %3 due to incorrect password. %4 %5
  216. .
  217. ;
  218. MessageId=+1 Facility=CVYlog Severity=Error
  219. SymbolicName=MSG_ERROR_REGISTRY Language=English
  220. %2 %1: error querying parameters from the registry key %3. Please run WLBS Setup dialog to fix the problem and run 'wlbs reload' followed by 'wlbs start'. %4 %5
  221. .
  222. ;
  223. MessageId=+1 Facility=CVYlog Severity=Error
  224. SymbolicName=MSG_ERROR_DISABLED Language=English
  225. %2 %1: cluster mode cannot be enabled due to parameter errors. All traffic will be passed to TCP/IP. Restart cluster operations after fixing the problem by running 'WLBS reload' followed by 'WLBS start'. %3 %4 %5
  226. .
  227. ;
  228. MessageId=+1 Facility=CVYlog Severity=Informational
  229. SymbolicName=MSG_INFO_RELOADED Language=English
  230. %2 %1: registry parameters successfully reloaded. %3 %4 %5
  231. .
  232. ;
  233. MessageId=+1 Facility=CVYlog Severity=Warning
  234. SymbolicName=MSG_WARN_DIFFERENT_MODE Language=English
  235. %2 %1: This host has detected another host with a different mode (unicast/multicast/IGMP) in this cluster. Cluster operations may be disrupted. Please check the configuration on all the servers in this cluster. %3 %4 %5
  236. .
  237. ;
  238. MessageId=+1 Facility=CVYlog Severity=Warning
  239. SymbolicName=MSG_WARN_VERSION Language=English
  240. %2 %1: version mismatch between the driver and control programs. Please make sure that you are running the same version. %3 %4 %5
  241. .
  242. ;
  243. MessageId=+1 Facility=CVYlog Severity=Informational
  244. SymbolicName=MSG_INFO_PORT_ADJUSTED Language=English
  245. %2 %1: adjusted traffic handling for rule containing port %3. %4 %5
  246. .
  247. ;
  248. MessageId=+1 Facility=CVYlog Severity=Informational
  249. SymbolicName=MSG_INFO_PORT_DRAINED Language=English
  250. %2 %1: disabled NEW traffic handling for rule containing port %3. %4 %5
  251. .
  252. ;
  253. MessageId=+1 Facility=CVYlog Severity=Informational
  254. SymbolicName=MSG_INFO_PORT_ADJUSTED_ALL Language=English
  255. %2 %1: adjusted traffic handling for all port rules. %3 %4 %5
  256. .
  257. ;
  258. MessageId=+1 Facility=CVYlog Severity=Informational
  259. SymbolicName=MSG_INFO_PORT_DRAINED_ALL Language=English
  260. %2 %1: disabled NEW traffic handling for all port rules. %3 %4 %5
  261. .
  262. ;
  263. MessageId=+1 Facility=CVYlog Severity=Informational
  264. SymbolicName=MSG_INFO_PORT_ENABLED_ALL Language=English
  265. %2 %1: enabled traffic handling for all port rules. %3 %4 %5
  266. .
  267. ;
  268. MessageId=+1 Facility=CVYlog Severity=Informational
  269. SymbolicName=MSG_INFO_PORT_DISABLED_ALL Language=English
  270. %2 %1: disabled ALL traffic handling for all port rules. %3 %4 %5
  271. .
  272. ;
  273. MessageId=+1 Facility=CVYlog Severity=Informational
  274. SymbolicName=MSG_INFO_CLUSTER_DRAINED Language=English
  275. %2 %1: connection draining started. %3 %4 %5
  276. .
  277. ;
  278. MessageId=+1 Facility=CVYlog Severity=Informational
  279. SymbolicName=MSG_INFO_DRAINING_STOPPED Language=English
  280. %2 %1: connection draining interrupted. %3 %4 %5
  281. .
  282. ;
  283. MessageId=+1 Facility=CVYlog Severity=Informational
  284. SymbolicName=MSG_INFO_RCT_RCVD Language=English
  285. %2 %1: %3 remote control request received from host %4. %5
  286. .
  287. ;
  288. MessageId=+1 Facility=CVYlog Severity=Informational
  289. SymbolicName=MSG_INFO_RESUMED Language=English
  290. %2 %1: cluster mode control resumed. %3 %4 %5
  291. .
  292. ;
  293. MessageId=+1 Facility=CVYlog Severity=Informational
  294. SymbolicName=MSG_INFO_SUSPENDED Language=English
  295. %2 %1: cluster mode control suspended. %3 %4 %5
  296. .
  297. ;
  298. MessageId=+1 Facility=CVYlog Severity=Error
  299. SymbolicName=MSG_ERROR_PRODUCT Language=English
  300. %2 %1: Network Load Balancing can only be installed on systems running Windows 2002 Advanced Server or Datacenter Server. %3 %4 %5
  301. .
  302. ;
  303. MessageId=+1 Facility=CVYlog Severity=Error
  304. SymbolicName=MSG_ERROR_MCAST_LIST_SIZE Language=English
  305. %2 %1: Cannot add cluster MAC address. Maximum number of multicast MAC addresses already assigned to the NIC. %3 %4 %5
  306. .
  307. ;
  308. MessageId=+1 Facility=CVYlog Severity=Error
  309. SymbolicName=MSG_ERROR_BIND_FAIL Language=English
  310. %2 %1: Cannot bind NLB to this adapter due to memory allocation failure. %3 %4 %5
  311. .
  312. ;
  313. MessageId=+1 Facility=CVYlog Severity=Informational
  314. SymbolicName=MSG_INFO_CONFIGURE_CHANGE_CONVERGING Language=English
  315. %2 %1: registry parameters successfully reloaded without resetting the driver. %3 %4 %5
  316. .
  317. ;
  318. MessageId=+1 Facility=CVYlog Severity=Error
  319. SymbolicName=MSG_ERROR_DYNAMIC_MAC Language=English
  320. %2 %1: the adapter to which NLB is bound does not support dynamically changing the MAC address. NLB will not bind to this adapter. %3 %4 %5
  321. .
  322. ;
  323. MessageId=+1 Facility=CVYlog Severity=Warning
  324. SymbolicName=MSG_WARN_VIRTUAL_CLUSTERS Language=English
  325. %4 %1: A Windows 2000 or NT 4.0 host MAY be participating in a cluster utilizing virtual cluster support. Virtual Clusters are only supported in a homogeneous Windows 2002 cluster. %2 %3
  326. .
  327. ;
  328. MessageId=+1 Facility=CVYlog Severity=Error
  329. SymbolicName=MSG_ERROR_BDA_BAD_TEAM_CONFIG Language=English
  330. %2 %1: Inconsistent bi-directional affinity (BDA) teaming configuration detected on host %3. The team in which this cluster participates will be marked inactive and this cluster will remain in the converging state until consistent teaming configuration is detected. %4 %5
  331. .
  332. ;
  333. MessageId=+1 Facility=CVYlog Severity=Error
  334. SymbolicName=MSG_ERROR_BDA_PARAMS_TEAM_ID Language=English
  335. %2 %1: Invalid bi-directional addinity (BDA) team ID detected. Team IDs must be a GUID of the form {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}. To add this cluster to a team, correct the team ID and run 'WLBS reload' followed by 'WLBS start'. %3 %4 %5
  336. .
  337. ;
  338. MessageId=+1 Facility=CVYlog Severity=Error
  339. SymbolicName=MSG_ERROR_BDA_PARAMS_PORT_RULES Language=English
  340. %2 %1: Invalid bi-directional addinity (BDA) teaming port rules detected. Each member of a BDA team may have no more than one port rule whose affinity must be single or class C if multiple host filtering is specified. To add this cluster to a team, correct the port rules and run 'WLBS reload' followed by 'WLBS start'. %3 %4 %5
  341. .
  342. ;
  343. MessageId=+1 Facility=CVYlog Severity=Informational
  344. SymbolicName=MSG_INFO_BDA_TEAM_REACTIVATED Language=English
  345. %2 %1: Consistent bi-directional affinity (BDA) teaming configuration detected again. The team in which this cluster participates has been re-activated. %3 %4 %5
  346. .
  347. ;
  348. MessageId=+1 Facility=CVYlog Severity=Error
  349. SymbolicName=MSG_INFO_BDA_MULTIPLE_MASTERS Language=English
  350. %2 %1: The bi-directional affinity (BDA) team which this cluster has attempted to join already has a designated master. This cluster will not join the team and will remain in the stopped state until the parameter errors are corrected and the cluster is restarted by running 'WLBS reload' followed by 'WLBS start'. %3 %4 %5
  351. .
  352. ;
  353. MessageId=+1 Facility=CVYlog Severity=Warning
  354. SymbolicName=MSG_INFO_BDA_NO_MASTER Language=English
  355. %2 %1: The bi-directional affinity (BDA) team in which this cluster participates has no designated master. The team is inactive and will remain inactive until a master for the team is designated and consistent BDA teaming configuration is detected. %3 %4 %5
  356. .
  357. ;
  358. MessageId=+1 Facility=CVYlog Severity=Informational
  359. SymbolicName=MSG_INFO_BDA_MASTER_JOIN Language=English
  360. %2 %1: This cluster has joined a bi-directional affinity (BDA) team as the designated master. If the rest of the team has been consistently configured, the team will be actived. %3 %4 %5
  361. .
  362. ;
  363. MessageId=+1 Facility=CVYlog Severity=Warning
  364. SymbolicName=MSG_INFO_BDA_MASTER_LEAVE Language=English
  365. %2 %1: This cluster has left a bi-directional affinity (BDA) team in which it was the designated master. If other adapters are still participating in the team, the team will be marked inactive and will remain inactive until a master for the team is designated and consistent BDA teaming configuration is detected. %3 %4 %5
  366. .
  367. ;
  368. MessageId=+1 Facility=CVYlog Severity=Informational
  369. SymbolicName=MSG_INFO_CONVERGING_NEW_MEMBER Language=English
  370. %2 %1: Initiating convergence on host %3. Reason: Host %4 is joining the cluster. %5
  371. .
  372. ;
  373. MessageId=+1 Facility=CVYlog Severity=Informational
  374. SymbolicName=MSG_INFO_CONVERGING_BAD_CONFIG Language=English
  375. %2 %1: Initiating convergence on host %3. Reason: Host %4 has conflicting configuration. %5
  376. .
  377. ;
  378. MessageId=+1 Facility=CVYlog Severity=Informational
  379. SymbolicName=MSG_INFO_CONVERGING_UNKNOWN Language=English
  380. %2 %1: Initiating convergence on host %3. Reason: Host %4 is converging for an unknown reason. %5
  381. .
  382. ;
  383. MessageId=+1 Facility=CVYlog Severity=Informational
  384. SymbolicName=MSG_INFO_CONVERGING_DUPLICATE_HOST_ID Language=English
  385. %2 %1: Initiating convergence on host %3. Reason: Host %4 is configured with the same host ID. %5
  386. .
  387. ;
  388. MessageId=+1 Facility=CVYlog Severity=Informational
  389. SymbolicName=MSG_INFO_CONVERGING_NUM_RULES Language=English
  390. %2 %1: Initiating convergence on host %3. Reason: Host %4 is configured with a conflicting number of port rules. %5
  391. .
  392. ;
  393. MessageId=+1 Facility=CVYlog Severity=Informational
  394. SymbolicName=MSG_INFO_CONVERGING_NEW_RULES Language=English
  395. %2 %1: Initiating convergence on host %3. Reason: Host %4 has changed its port rule configuration. %5
  396. .
  397. ;
  398. MessageId=+1 Facility=CVYlog Severity=Informational
  399. SymbolicName=MSG_INFO_CONVERGING_MEMBER_LOST Language=English
  400. %2 %1: Initiating convergence on host %3. Reason: Host %4 is leaving the cluster. %5
  401. .
  402. ;
  403. ; /* MessageId >= 0x1000 are reserved for use by the notify object, part of netcfgx.dll. The code using those */
  404. ; /* events is in \nt\net\config\netcfg\wlbscfg\netcfgconfig.cpp and the .mc file is */
  405. ; /* \nt\net\config\netcfg\wlbscfg\log_msgs.mc */
  406. ; /* Both the current file and the other .mc file are using Eventlog\System\WLBS as their event source so that
  407. ; /* users will associate these events with WLBS. */
  408. ;
  409. ;#endif /* _Log_msgs_h_ */