Advertisement
Guest User

Untitled

a guest
Jun 8th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1.  
  2. /***********************************************************************
  3. * ArcEmu Logonserver Configuration File
  4. * Last edited: 7/18/09
  5. ***********************************************************************
  6. * Configure the logonserver to connect to the accounts database below *
  7. ***********************************************************************
  8. * LogonDatabase.Host - The hostname that the database is located on
  9. * LogonDatabase.Username - The username used for the mysql connection
  10. * LogonDatabase.Password - The password used for the mysql connection
  11. * LogonDatabase.Name - The database name
  12. * LogonDatabase.Port - Port that MySQL listens on. Usually 3306.
  13. * LogonDatabase.Type - Client to use. 1 = MySQL
  14. * Not supported: - 2 = PostgreSQL (Partly implemented)
  15. * Not Supported: - 3 = SQLite (unimplemented)
  16. ***********************************************************************/
  17.  
  18. <LogonDatabase Hostname = "localhost_3306"
  19. Username = "root"
  20. Password = "kittens"
  21. Name = "arc_logon"
  22. Port = "3306"
  23. Type = "1">
  24.  
  25.  
  26. /* Host Directive
  27. *
  28. * This is the address that the realmlist will listen on.
  29. * To listen on all addresses, set it to 0.0.0.0
  30. * Default: 127.0.0.1 (localhost)
  31. *
  32. * Note: ISHost is the interserver communication listener.
  33. */
  34.  
  35. <Listen Host = "0.0.0.0"
  36. ISHost = "0.0.0.0"
  37. RealmListPort = "3724"
  38. ServerPort = "8093">
  39.  
  40. /* Server console logging level
  41. *
  42. * This directive controls how much output the server will
  43. * display in it's console. Set to 0 for none.
  44. * 0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
  45. * Default: 3
  46. */
  47.  
  48. <LogLevel Screen = "0"
  49. File = "-1">
  50.  
  51. /* Account Refresh Time
  52. *
  53. * This controls on which time interval accounts gets
  54. * refreshed. (In seconds)
  55. * Default = 600
  56. * 600 seconds = 10 minutes - 1 second = 0.0166666667 minutes 300 seconds = 5 minutes, 150 seconds = 2.5minutes
  57. *
  58. */
  59.  
  60. <Rates AccountRefresh = "600">
  61.  
  62. /* Accepted Build Range Setup
  63. *
  64. * These two directives set up which clients will be
  65. * allowed to authenticate with the realm list.
  66. *
  67. * Set these to the same builds that the server was
  68. * compiled for.
  69. *
  70. * As of the last update, version 3.1.3 was build 9947.
  71. */
  72.  
  73. <Client MinBuild = "10482"
  74. MaxBuild = "10505">
  75.  
  76. /* WorldServer Setup
  77. *
  78. * RemotePassword
  79. * This directive controls the password used to authenticate with the worldserver.
  80. * It must be the same between the two configs. If it is not, your server will
  81. * not register.
  82. *
  83. * Default: "change_me_logon"
  84. *
  85. * AllowedIPs
  86. * This section MUST be completed, otherwise all attempts to link your servers will fail.
  87. * These "Allowed" fields are a space-seperated list of CIDR-form IP addresses that are allowed
  88. * to make server connections to your logonserver, and register realms.
  89. * For example, everything in the 127.0.0.* range would be:
  90. * 127.0.0.0/24, as 24 of the bits must match the 127.0.0.0
  91. *
  92. * To allow a single IP,
  93. * 1.3.3.7/32, would allow only 1.3.3.7 to connect as 32 of the bits must match.
  94. *
  95. * AllowedModIPs
  96. * In the same form as AllowedIPs, these are the IPs that are allowed to modify the database
  97. * (adding bans, GMs, account permissions, etc)
  98. */
  99.  
  100. <LogonServer RemotePassword = "kittens"
  101. AllowedIPs = "127.0.0.1/24"
  102. AllowedModIPs = "127.0.0.1/24">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement