Leaked source code of windows server 2003
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.

318 lines
26 KiB

  1. /*++
  2. Copyright(c) 1998,99 Microsoft Corporation
  3. Module Name:
  4. version.rc
  5. Abstract:
  6. Windows Load Balancing Service (WLBS)
  7. Notifier object UI - resources
  8. Author:
  9. kyrilf
  10. --*/
  11. #if 0 // version info not needed since we are linking with netcfgx.dll
  12. #include "windows.h"
  13. #include "ntverp.h"
  14. #define VER_FILETYPE VFT_APP
  15. /* possible values: VFT_UNKNOWN
  16. VFT_APP
  17. VFT_DLL
  18. VFT_DRV
  19. VFT_FONT
  20. VFT_VXD
  21. VFT_STATIC_LIB
  22. */
  23. #define VER_FILESUBTYPE VFT2_UNKNOWN
  24. /* possible values VFT2_UNKNOWN
  25. VFT2_DRV_PRINTER
  26. VFT2_DRV_KEYBOARD
  27. VFT2_DRV_LANGUAGE
  28. VFT2_DRV_DISPLAY
  29. VFT2_DRV_MOUSE
  30. VFT2_DRV_NETWORK
  31. VFT2_DRV_SYSTEM
  32. VFT2_DRV_INSTALLABLE
  33. VFT2_DRV_SOUND
  34. VFT2_DRV_COMM
  35. */
  36. #define VER_FILEDESCRIPTION_STR "Network Load Balancing Notifier Object"
  37. #define VER_INTERNALNAME_STR "WLBS.DLL"
  38. #define VER_ORIGINALFILENAME_STR "WLBS.DLL"
  39. #include "common.ver"
  40. IDR_REG_WLBS REGISTRY "wlbs.rgs"
  41. #endif // end merge with netcfgx.dll
  42. #include "resource.h"
  43. #include "commctrl.h"
  44. #include "winnt.h"
  45. #include "winuser.h"
  46. #define IDC_STATIC -1
  47. IDD_DIALOG_CLUSTER DIALOG DISCARDABLE 0, 0, 300, 215
  48. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  49. CAPTION "Cluster Parameters"
  50. FONT 8, "MS Shell Dlg"
  51. BEGIN
  52. GROUPBOX "Cluster IP configuration",IDC_GROUP_CL_IP,7,7,286,84
  53. LTEXT "IP &address:",IDC_TEXT_CL_IP,15,21,65,8
  54. CONTROL "",IDC_EDIT_CL_IP,"SysIPAddress32",WS_TABSTOP | 0x80,115,19,80,12
  55. LTEXT "&Subnet mask:",IDC_TEXT_CL_MASK,15,38,65,8
  56. CONTROL "",IDC_EDIT_CL_MASK,"SysIPAddress32",WS_TABSTOP | 0x80,115,36,80,12
  57. LTEXT "&Full Internet name:",IDC_TEXT_DOMAIN,15,55,65,8
  58. EDITTEXT IDC_EDIT_DOMAIN,115,53,80,12,ES_AUTOHSCROLL
  59. LTEXT "&Network address:",IDC_TEXT_ETH,15,72,65,8
  60. EDITTEXT IDC_EDIT_ETH,115,70,80,12,ES_AUTOHSCROLL
  61. GROUPBOX "Cluster operation mode",IDC_GROUP_CL_MODE,7,97,286,32
  62. CONTROL "&Unicast",IDC_RADIO_UNICAST,"Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,15,111,45,10
  63. CONTROL "&Multicast",IDC_RADIO_MULTICAST,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,64,111,45,10
  64. CONTROL "I&GMP multicast",IDC_CHECK_IGMP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,121,111,65,10
  65. GROUPBOX "",IDC_GROUP_RCT,7,135,286,50
  66. CONTROL "Allow &remote control",IDC_CHECK_RCT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,135,77,10
  67. LTEXT "Remote &password:",IDC_TEXT_PASSW,15,149,65,10
  68. EDITTEXT IDC_EDIT_PASSW,115,147,80,12,ES_PASSWORD | ES_AUTOHSCROLL
  69. LTEXT "&Confirm password:",IDC_TEXT_PASSW2,15,166,65,8
  70. EDITTEXT IDC_EDIT_PASSW2,115,164,80,12,ES_PASSWORD | ES_AUTOHSCROLL
  71. END
  72. IDD_DIALOG_HOST DIALOG DISCARDABLE 0, 0, 300, 215
  73. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  74. CAPTION "Host Parameters"
  75. FONT 8, "MS Shell Dlg"
  76. BEGIN
  77. LTEXT "&Priority (unique host identifier):",IDC_TEXT_PRI,7,9,100,8
  78. EDITTEXT IDC_EDIT_PRI,115,7,28,12,ES_AUTOHSCROLL | ES_NUMBER
  79. CONTROL "Spin4",IDC_SPIN_PRI,"msctls_updown32",UDS_WRAP | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_NOTHOUSANDS,139,7,9,14
  80. GROUPBOX "Dedicated IP configuration",IDC_GROUP_DED_IP,7,25,286,50
  81. LTEXT "IP &address:",IDC_TEXT_DED_IP,15,39,70,10
  82. CONTROL "",IDC_EDIT_DED_IP,"SysIPAddress32",WS_TABSTOP | 0x80, 115,37,80,12
  83. LTEXT "&Subnet mask:",IDC_TEXT_DED_MASK,15,56,70,10
  84. CONTROL "",IDC_EDIT_DED_MASK,"SysIPAddress32",WS_TABSTOP | 0x80, 115,54,80,12
  85. GROUPBOX "Initial host state",IDC_GROUP_INITIAL_HOST_STATE,7,81,286,48
  86. LTEXT "&Default state:",IDC_TEXT_DEFAULT_STATE,15,95,92,8
  87. COMBOBOX IDC_COMBOBOX_DEFAULT_STATE,115,93,80,100,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
  88. CONTROL "&Retain suspended state after computer restarts",IDC_CHECK_PERSIST_SUSPEND,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,112,210,10
  89. END
  90. IDD_DIALOG_PORTS DIALOG DISCARDABLE 0, 0, 300, 215
  91. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  92. CAPTION "Port Rules"
  93. FONT 8, "MS Shell Dlg"
  94. BEGIN
  95. LTEXT "&Defined port rules:",IDC_TEXT_PORT_RULE,7,7,80,8
  96. CONTROL "",IDC_LIST_PORT_RULE,"SysListView32", LVS_REPORT | LVS_AUTOARRANGE | LVS_SINGLESEL | LVS_SHOWSELALWAYS | WS_BORDER | WS_TABSTOP,7,20,286,100
  97. PUSHBUTTON "&Add...",IDC_BUTTON_ADD,148,127,45,14
  98. PUSHBUTTON "&Edit...",IDC_BUTTON_MODIFY,198,127,45,14
  99. PUSHBUTTON "&Remove",IDC_BUTTON_DEL,248,127,45,14
  100. GROUPBOX "Port rule description",IDC_GROUP_PORT_RULE_DESCR,7,147,286,60
  101. LTEXT "",IDC_TEXT_PORT_RULE_DESCR,14,159,272,42
  102. END
  103. IDD_DIALOG_PORT_RULE_PROP DIALOGEX DISCARDABLE 0, 0, 240, 262
  104. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  105. EXSTYLE WS_EX_CONTEXTHELP
  106. CAPTION "Add/Edit Port Rule"
  107. FONT 8, "MS Shell Dlg", 0, 0, 0x1
  108. BEGIN
  109. GROUPBOX "Cluster IP address",IDC_GROUP_PORT_RULE_VIP,7,7,226,38
  110. CONTROL "",IDC_EDIT_PORT_RULE_VIP,"SysIPAddress32",WS_TABSTOP | 0x80,18,23,80,12
  111. LTEXT "or",IDC_STATIC,107,24,8,8
  112. CONTROL "&All",IDC_CHECK_PORT_RULE_ALL_VIP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,124,24,25,11
  113. GROUPBOX "Port range",IDC_GROUP_RANGE,7,51,226,33
  114. LTEXT "&From:",IDC_TEXT_START,17,64,22,8
  115. EDITTEXT IDC_EDIT_START,45,63,40,12,ES_AUTOHSCROLL | ES_NUMBER
  116. CONTROL "Spin5",IDC_SPIN_START,"msctls_updown32",UDS_WRAP | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_NOTHOUSANDS,83,64,9,14
  117. LTEXT "T&o:",IDC_TEXT_END,95,64,15,8
  118. EDITTEXT IDC_EDIT_END,116,63,40,12,ES_AUTOHSCROLL | ES_NUMBER
  119. CONTROL "Spin6",IDC_SPIN_END,"msctls_updown32",UDS_WRAP | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_NOTHOUSANDS,154,64,9,14
  120. GROUPBOX "Protocols",IDC_GROUP_PROTOCOLS,7,90,226,33
  121. CONTROL "&TCP",IDC_RADIO_TCP,"Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,16,105,30,10
  122. CONTROL "&UDP",IDC_RADIO_UDP,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,57,105,30,10
  123. CONTROL "&Both",IDC_RADIO_BOTH,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,99,105,30,10
  124. GROUPBOX "",IDC_GROUP_SINGLE,7,174,226,33
  125. GROUPBOX "",IDC_GROUP_DISABLED,7,202,226,33
  126. GROUPBOX "Filtering mode",IDC_GROUP_MULTIPLE,7,129,226,50
  127. CONTROL "&Multiple host",IDC_RADIO_MULTIPLE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP | WS_GROUP,16,143,55,10
  128. CONTROL "&Single host",IDC_RADIO_SINGLE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,16,188,55,10
  129. CONTROL "&Disable this port range",IDC_RADIO_DISABLED,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,16,215,85,10
  130. LTEXT "Affinity:",IDC_TEXT_AFF,85,143,25,8
  131. CONTROL "&None",IDC_RADIO_AFF_NONE,"Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,114,143,33,10
  132. CONTROL "S&ingle",IDC_RADIO_AFF_SINGLE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,150,143,35,10
  133. CONTROL "&Class C",IDC_RADIO_AFF_CLASSC,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,188,143,39,10
  134. LTEXT "&Load weight:",IDC_TEXT_MULTI,85,159,44,8
  135. EDITTEXT IDC_EDIT_MULTI,136,158,33,12,ES_AUTOHSCROLL | ES_NUMBER
  136. CONTROL "Spin4",IDC_SPIN_MULTI,"msctls_updown32",UDS_WRAP | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_NOTHOUSANDS,167,159,9,14
  137. LTEXT "or",IDC_STATIC,177,159,8,8
  138. CONTROL "&Equal",IDC_CHECK_EQUAL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,193,160,34,10
  139. LTEXT "&Handling priority:",IDC_TEXT_SINGLE,85,188,58,8
  140. EDITTEXT IDC_EDIT_SINGLE,147,186,28,12,ES_AUTOHSCROLL | ES_NUMBER
  141. CONTROL "Spin4",IDC_SPIN_SINGLE,"msctls_updown32",UDS_WRAP | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_NOTHOUSANDS,182,188,9,14
  142. DEFPUSHBUTTON "OK",IDOK,137,241,45,14
  143. PUSHBUTTON "Cancel",IDCANCEL,187,241,45,14
  144. END
  145. IDR_ACCELERATOR ACCELERATORS DISCARDABLE
  146. BEGIN
  147. VK_F1, ID_HELP, VIRTKEY, NOINVERT
  148. VK_F1, ID_CONTEXT_HELP, VIRTKEY, SHIFT, NOINVERT
  149. END
  150. STRINGTABLE DISCARDABLE
  151. BEGIN
  152. IDS_PARM_RULES "The number of port rules exceeds the maximum of 32. Reduce the number of defined port rules."
  153. IDS_PARM_RANGE "The port range is not valid. The upper value must be greater than or equal to the lower value. Enter a valid port range."
  154. IDS_PARM_OVERLAP "The port range overlaps with the range in an existing rule for the specified cluster ip address. Specify a port range that does not overlap."
  155. IDS_PARM_PASSWORD "The password is not valid. The two remote passwords must match. Enter a valid password."
  156. IDS_PARM_IGMP_MCAST "IGMP support requires multicast support. You can use IGMP only if multicast is enabled."
  157. IDS_PARM_RCT_WARN "Enabling the remote control option presents many security risks. It is strongly recommended that you instead use NLB Manager or other remote management tools such as WMI. Before you enable remote control, see the online Help for information about security implications and precautions. \n\nDo you want to enable remote control?"
  158. IDS_PARM_IGMP_WARN "Before you enable IGMP support, consult on-line help regarding the network implications of using this feature."
  159. IDS_PARM_WARN "Warning"
  160. IDS_PARM_ERROR "Error"
  161. IDS_PARM_INFORMATION "Information"
  162. IDS_PARM_PORT_BLANK "A port value is required. The value must be from %1 to %2. Enter a valid value."
  163. IDS_PARM_LOAD_BLANK "A load weight is required. The weight must be from %1 to %2. Enter a valid weight."
  164. IDS_PARM_HPRI_BLANK "A handling priority is required. The priority must be from %1 to %2. Enter a handling priority."
  165. IDS_PARM_PRI_BLANK "A host priority is required. The priority must be from %1 to %2. Enter a host priority."
  166. IDS_PARM_CL_IP_BLANK "A cluster IP address is required. Enter a cluster IP address."
  167. IDS_PARM_DED_IP_BLANK "A dedicated IP address is required. Enter a dedicated IP address."
  168. IDS_PARM_CL_NM_BLANK "The cluster subnet mask is required. Network Load Balancing has automatically generated a subnet mask.\r\nIf you do not want Network Load Balancing to use the subnet mask it generated, enter a different subnet mask."
  169. IDS_PARM_DED_NM_BLANK "The dedicated subnet mask is required. Network Load Balancing has automatically generated a subnet mask.\r\nIf you do not want Network Load Balancing to use the subnet mask it generated, enter a different subnet mask."
  170. IDS_PARM_INVAL_CL_IP "The cluster IP address and subnet mask are not valid. Enter a new cluster IP address and subnet mask."
  171. IDS_PARM_INVAL_DED_IP "The dedicated IP address and subnet mask are not valid. Enter a new dedicated IP address and subnet mask."
  172. IDS_PARM_INVAL_CL_MASK "The cluster subnet mask is not valid. A subnet mask must be contiguous. Enter a valid subnet mask."
  173. IDS_PARM_INVAL_DED_MASK "The dedicated subnet mask is not valid. A subnet mask must be contiguous. Enter a valid subnet mask."
  174. IDS_PARM_CL_IP_FIELD "%1 is not a valid cluster IP address entry. Please specify a value between %2 and %3."
  175. IDS_PARM_CL_NM_FIELD "%1 is not a valid cluster subnet mask entry. Please specify a value between %2 and %3."
  176. IDS_PARM_DED_IP_FIELD "%1 is not a valid dedicated IP address entry. Please specify a value between %2 and %3."
  177. IDS_PARM_DED_NM_FIELD "%1 is not a valid dedicated subnet mask entry. Please specify a value between %2 and %3."
  178. IDS_PARM_PRI "The host priority is not valid. The priority must be from %1 to %2. Enter a valid priority."
  179. IDS_PARM_PORT_VAL "The port value is not valid. The value must be from %1 to %2. Enter a valid port value."
  180. IDS_PARM_LOAD "The load weight is not valid. The weight must be from %1 to %2. Enter a valid weight."
  181. IDS_PARM_SINGLE "The handling priority is not valid. The priority must be from %1 to %2. Enter a valid priority."
  182. IDS_PARM_IP_CONFLICT "The cluster IP address and dedicated IP address cannot be identical. Enter different cluster IP and dedicated IP addresses."
  183. IDS_PARM_MULTINIC_IP_CONFLICT "Another network adapter is using this cluster IP address. Enter a unique cluster IP address."
  184. IDS_PARM_INVAL_MAC "The cluster network address is not valid. The address must be of the form xx-xx-xx-xx-xx-xx or xx:xx:xx:xx:xx:xx. Enter a valid network address."
  185. IDS_PARM_TCPIP "When you enter a new IP address or subnet mask for this cluster or host, you\r\nmust also enter the new address in the Internet Protocol (TCP/IP) component.\r\n\r\nTo enter the address, follow the steps listed in setting up TCP/IP for Network\r\nLoad Balancing in Windows Help."
  186. IDS_PARM_VIP_BLANK "A specific cluster IP address is required if the port rule does not apply to all cluster IP addresses"
  187. IDS_PARM_VIP_CONFLICT_DIP "Cluster IP address can not be the same as the dedicated IP address. Enter a different cluster IP address."
  188. IDS_PARM_DIP_CONFLICT_VIP "Dedicated IP address can not be the same as a cluster IP address specified in the port rules. Enter a different dedicated IP address."
  189. IDS_PARM_MSCS_INSTALLED "Microsoft Cluster Service is already installed on this machine. Continuing\nwith this installation may prevent Cluster Service from working properly."
  190. IDS_PARM_OPEN_ANS_FILE_FAILED "NLB: Open answer file failed hr (0x) = '%1!x!'\n"
  191. IDS_PARM_GET_ADAPTERS_FAILED "NLB: Attempt to retrieve adapter list from answer file failed hr (0x) = '%1!x!'\n"
  192. IDS_PARM_GET_SPECIFIC_TO "NLB: Attempt to retrieve adapter name in section '%1' of answer file failed hr (0x) = '%2!x!'. Skipping to next adapter.\n"
  193. IDS_PARM_GET_NETCARD_GUID "NLB: Failed retrieving guid for netcard\n"
  194. IDS_PARM_OOM_NETCFGCLUS "NLB: Memory allocation failed for CNetcfgCluster\n"
  195. IDS_PARM_GET_VALUE_FAILED "NLB: Reading '%1' from answer file failed hr (0x) = '%2!x!'\n"
  196. IDS_PARM_LICENSE_DECODE_FAILED "NLB: License data decode failed\n"
  197. IDS_PARM_PORT_RULE_INVALID "NLB: Port rule '%1!d!' is not valid and will be skipped\n"
  198. END
  199. STRINGTABLE DISCARDABLE
  200. BEGIN
  201. IDS_LIST_VIP "Cluster IP address"
  202. IDS_LIST_ALL_VIP "All"
  203. IDS_LIST_BOTH "Both"
  204. IDS_LIST_TCP "TCP"
  205. IDS_LIST_UDP "UDP"
  206. IDS_LIST_MULTIPLE "Multiple"
  207. IDS_LIST_SINGLE "Single"
  208. IDS_LIST_DISABLED "Disabled"
  209. IDS_LIST_EQUAL "Equal"
  210. IDS_LIST_ANONE "None"
  211. IDS_LIST_ASINGLE "Single"
  212. IDS_LIST_ACLASSC "Class C"
  213. IDS_LIST_START "Start"
  214. IDS_LIST_END "End"
  215. IDS_LIST_PROT "Protocol"
  216. IDS_LIST_MODE "Mode"
  217. IDS_LIST_PRI "Priority"
  218. IDS_LIST_LOAD "Load"
  219. IDS_LIST_AFF "Affinity"
  220. END
  221. STRINGTABLE DISCARDABLE
  222. BEGIN
  223. IDS_HOST_STATE_STARTED "Started"
  224. IDS_HOST_STATE_STOPPED "Stopped"
  225. IDS_HOST_STATE_SUSPENDED "Suspended"
  226. END
  227. STRINGTABLE DISCARDABLE
  228. BEGIN
  229. IDS_PORT_RULE_DEFAULT "Any traffic directed to cluster IP addresses and/or arriving on ports and/or through protocols not covered by the defined port rules is handled by the default host. The default host is determined by the cluster members and is defined as the active cluster host with the smallest host priority (unique host ID)."
  230. IDS_PORT_RULE_ALL_VIP_TCP_PORT_DISABLED "TCP traffic directed to any cluster IP address that arrives on port %1!d! is discarded by all members of the cluster."
  231. IDS_PORT_RULE_ALL_VIP_TCP_PORT_SINGLE "TCP traffic directed to any cluster IP address that arrives on port %1!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  232. IDS_PORT_RULE_ALL_VIP_TCP_PORT_MULTIPLE_EQUAL "TCP traffic directed to any cluster IP address that arrives on port %1!d! is balanced equally across all members of the cluster. "
  233. IDS_PORT_RULE_ALL_VIP_TCP_PORT_MULTIPLE_UNEQUAL "TCP traffic directed to any cluster IP address that arrives on port %1!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  234. IDS_PORT_RULE_ALL_VIP_TCP_PORTS_DISABLED "TCP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is discarded by all members of the cluster."
  235. IDS_PORT_RULE_ALL_VIP_TCP_PORTS_SINGLE "TCP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  236. IDS_PORT_RULE_ALL_VIP_TCP_PORTS_MULTIPLE_EQUAL "TCP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is balanced equally across all members of the cluster. "
  237. IDS_PORT_RULE_ALL_VIP_TCP_PORTS_MULTIPLE_UNEQUAL "TCP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  238. IDS_PORT_RULE_ALL_VIP_UDP_PORT_DISABLED "UDP traffic directed to any cluster IP address that arrives on port %1!d! is discarded by all members of the cluster."
  239. IDS_PORT_RULE_ALL_VIP_UDP_PORT_SINGLE "UDP traffic directed to any cluster IP address that arrives on port %1!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  240. IDS_PORT_RULE_ALL_VIP_UDP_PORT_MULTIPLE_EQUAL "UDP traffic directed to any cluster IP address that arrives on port %1!d! is balanced equally across all members of the cluster. "
  241. IDS_PORT_RULE_ALL_VIP_UDP_PORT_MULTIPLE_UNEQUAL "UDP traffic directed to any cluster IP address that arrives on port %1!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  242. IDS_PORT_RULE_ALL_VIP_UDP_PORTS_DISABLED "UDP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is discarded by all members of the cluster."
  243. IDS_PORT_RULE_ALL_VIP_UDP_PORTS_SINGLE "UDP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  244. IDS_PORT_RULE_ALL_VIP_UDP_PORTS_MULTIPLE_EQUAL "UDP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is balanced equally across all members of the cluster. "
  245. IDS_PORT_RULE_ALL_VIP_UDP_PORTS_MULTIPLE_UNEQUAL "UDP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  246. IDS_PORT_RULE_ALL_VIP_BOTH_PORT_DISABLED "TCP and UDP traffic directed to any cluster IP address that arrives on port %1!d! is discarded by all members of the cluster."
  247. IDS_PORT_RULE_ALL_VIP_BOTH_PORT_SINGLE "TCP and UDP traffic directed to any cluster IP address that arrives on port %1!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  248. IDS_PORT_RULE_ALL_VIP_BOTH_PORT_MULTIPLE_EQUAL "TCP and UDP traffic directed to any cluster IP address that arrives on port %1!d! is balanced equally across all members of the cluster. "
  249. IDS_PORT_RULE_ALL_VIP_BOTH_PORT_MULTIPLE_UNEQUAL "TCP and UDP traffic directed to any cluster IP address that arrives on port %1!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  250. IDS_PORT_RULE_ALL_VIP_BOTH_PORTS_DISABLED "TCP and UDP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is discarded by all members of the cluster."
  251. IDS_PORT_RULE_ALL_VIP_BOTH_PORTS_SINGLE "TCP and UDP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  252. IDS_PORT_RULE_ALL_VIP_BOTH_PORTS_MULTIPLE_EQUAL "TCP and UDP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is balanced equally across all members of the cluster. "
  253. IDS_PORT_RULE_ALL_VIP_BOTH_PORTS_MULTIPLE_UNEQUAL "TCP and UDP traffic directed to any cluster IP address that arrives on ports %1!d! through %2!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  254. IDS_PORT_RULE_VIP_TCP_PORT_DISABLED "TCP traffic directed to %1 that arrives on port %2!d! is discarded by all members of the cluster."
  255. IDS_PORT_RULE_VIP_TCP_PORT_SINGLE "TCP traffic directed to %1 that arrives on port %2!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  256. IDS_PORT_RULE_VIP_TCP_PORT_MULTIPLE_EQUAL "TCP traffic directed to %1 that arrives on port %2!d! is balanced equally across all members of the cluster. "
  257. IDS_PORT_RULE_VIP_TCP_PORT_MULTIPLE_UNEQUAL "TCP traffic directed to %1 that arrives on port %2!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  258. IDS_PORT_RULE_VIP_TCP_PORTS_DISABLED "TCP traffic directed to %1 that arrives on ports %2!d! through %3!d! is discarded by all members of the cluster."
  259. IDS_PORT_RULE_VIP_TCP_PORTS_SINGLE "TCP traffic directed to %1 that arrives on ports %2!d! through %3!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  260. IDS_PORT_RULE_VIP_TCP_PORTS_MULTIPLE_EQUAL "TCP traffic directed to %1 that arrives on ports %2!d! through %3!d! is balanced equally across all members of the cluster. "
  261. IDS_PORT_RULE_VIP_TCP_PORTS_MULTIPLE_UNEQUAL "TCP traffic directed to %1 that arrives on ports %2!d! through %3!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  262. IDS_PORT_RULE_VIP_UDP_PORT_DISABLED "UDP traffic directed to %1 that arrives on port %2!d! is discarded by all members of the cluster."
  263. IDS_PORT_RULE_VIP_UDP_PORT_SINGLE "UDP traffic directed to %1 that arrives on port %2!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  264. IDS_PORT_RULE_VIP_UDP_PORT_MULTIPLE_EQUAL "UDP traffic directed to %1 that arrives on port %2!d! is balanced equally across all members of the cluster. "
  265. IDS_PORT_RULE_VIP_UDP_PORT_MULTIPLE_UNEQUAL "UDP traffic directed to %1 that arrives on port %2!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  266. IDS_PORT_RULE_VIP_UDP_PORTS_DISABLED "UDP traffic directed to %1 that arrives on ports %2!d! through %3!d! is discarded by all members of the cluster."
  267. IDS_PORT_RULE_VIP_UDP_PORTS_SINGLE "UDP traffic directed to %1 that arrives on ports %2!d! through %3!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  268. IDS_PORT_RULE_VIP_UDP_PORTS_MULTIPLE_EQUAL "UDP traffic directed to %1 that arrives on ports %2!d! through %3!d! is balanced equally across all members of the cluster. "
  269. IDS_PORT_RULE_VIP_UDP_PORTS_MULTIPLE_UNEQUAL "UDP traffic directed to %1 that arrives on ports %2!d! through %3!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  270. IDS_PORT_RULE_VIP_BOTH_PORT_DISABLED "TCP and UDP traffic directed to %1 that arrives on port %2!d! is discarded by all members of the cluster."
  271. IDS_PORT_RULE_VIP_BOTH_PORT_SINGLE "TCP and UDP traffic directed to %1 that arrives on port %2!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  272. IDS_PORT_RULE_VIP_BOTH_PORT_MULTIPLE_EQUAL "TCP and UDP traffic directed to %1 that arrives on port %2!d! is balanced equally across all members of the cluster. "
  273. IDS_PORT_RULE_VIP_BOTH_PORT_MULTIPLE_UNEQUAL "TCP and UDP traffic directed to %1 that arrives on port %2!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  274. IDS_PORT_RULE_VIP_BOTH_PORTS_DISABLED "TCP and UDP traffic directed to %1 that arrives on ports %2!d! through %3!d! is discarded by all members of the cluster."
  275. IDS_PORT_RULE_VIP_BOTH_PORTS_SINGLE "TCP and UDP traffic directed to %1 that arrives on ports %2!d! through %3!d! is handled by the active cluster host with the smallest handling priority for this port rule."
  276. IDS_PORT_RULE_VIP_BOTH_PORTS_MULTIPLE_EQUAL "TCP and UDP traffic directed to %1 that arrives on ports %2!d! through %3!d! is balanced equally across all members of the cluster. "
  277. IDS_PORT_RULE_VIP_BOTH_PORTS_MULTIPLE_UNEQUAL "TCP and UDP traffic directed to %1 that arrives on ports %2!d! through %3!d! is balanced across multiple members of the cluster according to the load weight of each member. "
  278. IDS_PORT_RULE_AFFINITY_NONE "Client IP addresses and ports are used to assign client connections to a specific cluster host."
  279. IDS_PORT_RULE_AFFINITY_SINGLE "Client IP addresses are used to assign client connections to a specific cluster host."
  280. IDS_PORT_RULE_AFFINITY_CLASSC "The class C subnet of the client IP addresses is used to assign client connections to a specific cluster host."
  281. END
  282. //#include "log_msgs.rc"