Advertisement
Guest User

Untitled

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