Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. /***********************************************************************
  2. * ArcEmu Logonserver Configuration File
  3. * Last edited: 11/14/2010
  4. *
  5. *******************************************************************************
  6. * Configure the logonserver to connect to the accounts mysql database below *
  7. *******************************************************************************
  8. * Database Section
  9. *
  10. * LogonDatabase.Host - The hostname that the database is located on
  11. * LogonDatabase.Username - The username used for the mysql connection
  12. * LogonDatabase.Password - The password used for the mysql connection
  13. * LogonDatabase.Name - The database name
  14. * LogonDatabase.Port - Port that MySQL listens on. Usually 3306.
  15. *******************************************************************************/
  16.  
  17. <LogonDatabase Hostname = "hpdv5"
  18. Username = "root"
  19. Password = "xxxx"
  20. Name = "arc_logon"
  21. Port = "3306"
  22. Type = "1">
  23.  
  24. /* Host Directive
  25. *
  26. * This is the address that the realmlist will listen on.
  27. * To listen on all addresses, set it to 0.0.0.0
  28. * Default: 127.0.0.1 (localhost)
  29. *
  30. * Note: ISHost is the interserver communication listener.
  31. */
  32.  
  33. <Listen Host = "0.0.0.0"
  34. ISHost = "0.0.0.0"
  35. RealmListPort = "3724"
  36. ServerPort = "8093">
  37.  
  38. /* Server file logging level
  39. *
  40. * This directive controls how much output the server will
  41. * write to log files. It cannot be disabled
  42. * 0 = Normal + Error; 1 = Detail; 2 = Debug
  43. * Default: 0
  44. */
  45.  
  46. <LogLevel File = "0">
  47.  
  48. /* Account Refresh Time
  49. *
  50. * This controls on which time interval accounts gets
  51. * refreshed. (In seconds)
  52. * Default = 600
  53. * 600 seconds = 10 minutes - 1 second = 0.0166666667 minutes 300 seconds = 5 minutes, 150 seconds = 2.5minutes
  54. *
  55. */
  56.  
  57. <Rates AccountRefresh = "600">
  58.  
  59. /* WorldServer Setup
  60. *
  61. * RemotePassword
  62. * This directive controls the password used to authenticate with the worldserver.
  63. * It must be the same between the two configs. If it is not, your server will
  64. * not register.
  65. *
  66. * Default: "change_me_logon"
  67. *
  68. * AllowedIPs
  69. * This section MUST be completed, otherwise all attempts to link your servers will fail.
  70. * These "Allowed" fields are a space-separated list of CIDR-form IP addresses that are allowed
  71. * to make server connections to your logonserver, and register realms.
  72. * For example, everything in the 127.0.0.* range would be:
  73. * 127.0.0.0/24, as 24 of the bits must match the 127.0.0.0
  74. *
  75. * To allow a single IP,
  76. * 1.3.3.7/32, would allow only 1.3.3.7 to connect as 32 of the bits must match.
  77. *
  78. * AllowedModIPs
  79. * In the same form as AllowedIPs, these are the IPs that are allowed to modify the database
  80. * (adding bans, GMs, account permissions, etc)
  81. */
  82.  
  83. <LogonServer RemotePassword = "xxxx"
  84. AllowedIPs = "127.0.0.1/24"
  85. AllowedModIPs = "127.0.0.1/24">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement