Advertisement
Guest User

Untitled

a guest
May 3rd, 2017
608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.00 KB | None | 0 0
  1. // Athena Login Server configuration file.
  2. // Translated by Peter Kieser <pfak@telus.net>
  3.  
  4. // Note: "Comments" are all text on the right side of a double slash "//"
  5. // Whatever text is commented will not be parsed by the servers, and serves
  6. // only as information/reference.
  7.  
  8. // The login server listens on the interface with this IP address.
  9. // NOTE: This allows you to run multiple servers on multiple interfaces
  10. // while using the same ports for each server.
  11. //bind_ip: 127.0.0.1
  12.  
  13. // Login Server Port
  14. login_port: 6900
  15.  
  16. //Time-stamp format which will be printed before all messages.
  17. //Can at most be 20 characters long.
  18. //Common formats:
  19. // %I:%M:%S %p (hour:minute:second 12 hour, AM/PM format)
  20. // %H:%M:%S (hour:minute:second, 24 hour format)
  21. // %d/%b/%Y (day/Month/year)
  22. //For full format information, consult the strftime() manual.
  23. //timestamp_format: [%d/%b %H:%M]
  24.  
  25. //If redirected output contains escape sequences (color codes)
  26. stdout_with_ansisequence: no
  27.  
  28. //Makes server output more silent by ommitting certain types of messages:
  29. //1: Hide Information messages
  30. //2: Hide Status messages
  31. //4: Hide Notice Messages
  32. //8: Hide Warning Messages
  33. //16: Hide Error and SQL Error messages.
  34. //32: Hide Debug Messages
  35. //Example: "console_silent: 7" Hides information, status and notice messages (1+2+4)
  36. console_silent: 0
  37.  
  38. // Whether remote administration is enabled or disabled
  39. admin_state: no
  40.  
  41. // Administrative password, used by ladmin to connect remotely to server.
  42. // NOTICE: you should change this value for security if you use ladmin.
  43. admin_pass: admin
  44.  
  45. // Indicate the IP/host that the server accepts for remote administration.
  46. admin_allowed_host: 127.0.0.1
  47.  
  48. // Console Commands
  49. // Allow for console commands to be used on/off
  50. // This prevents usage of >& log.file
  51. console: off
  52.  
  53. // Can you use _M/_F to make new accounts on the server?
  54. new_account: no
  55.  
  56. // Account registration flood protection system
  57. // allowed_regs is the number of registrations allowed in time_allowed (in seconds)
  58. allowed_regs: 1
  59. time_allowed: 10
  60.  
  61. // Log Filename. All operations received by the server are logged in this file.
  62. login_log_filename: log/login.log
  63.  
  64. // To log the login server?
  65. // NOTE: The login-sql server needs the login logs to enable dynamic pass failure bans.
  66. log_login: yes
  67.  
  68. // Indicate how to display date in logs, to players, etc.
  69. date_format: %Y-%m-%d %H:%M:%S
  70.  
  71. // Indicate the minimum GM level of player that the server accepts to connection.
  72. // 0: all players (normal player are 0. it's default), 1-99: GM level at least with level x
  73. min_level_to_connect: 0
  74.  
  75. // Starting additional sec from now for the limited time at creation of account
  76. // -1: new account are created with UNlimited time (default value)
  77. // 0 or more: new accounts was created by addition of the value (in sec) to the actual time (to set first limited time)
  78. start_limited_time: -1
  79.  
  80. // Check The clientversion set in the clientinfo ?
  81. check_client_version: no
  82.  
  83. // What version we would allow to connect? (if the options above is enabled..)
  84. client_version_to_connect: 20
  85.  
  86. // Store passwords as MD5 hashes instead of plaintext ?
  87. // NOTE: Will not work with clients that use <passwordencrypt>
  88. use_MD5_passwords: yes
  89.  
  90. // Ipban features (SQL only)
  91. ipban.enable: yes
  92. ipban.sql.db_hostname: 173.203.201.111
  93. ipban.sql.db_port: 3306
  94. ipban.sql.db_username: Removed
  95. ipban.sql.db_password: Removed
  96. ipban.sql.db_database: eathena
  97. ipban.sql.codepage:
  98. ipban.sql.ipban_table: ipbanlist
  99. // Dynamic password failure ipban system
  100. ipban.dynamic_pass_failure_ban: yes
  101. ipban.dynamic_pass_failure_ban_interval: 5
  102. ipban.dynamic_pass_failure_ban_limit: 7
  103. ipban.dynamic_pass_failure_ban_duration: 5
  104.  
  105. // Interval (in seconds) to clean up expired IP bans. 0 = disabled. default = 60.
  106. // NOTE: Even if this is disabled, expired IP bans will be cleaned up on login server start/stop.
  107. // Players will still be able to login if an ipban entry exists but the expiration time has already passed.
  108. ipban_cleanup_interval: 60
  109.  
  110. // Interval (in minutes) to execute a DNS/IP update. Disabled by default.
  111. // Enable it if your server uses a dynamic IP which changes with time.
  112. //ip_sync_interval: 10
  113.  
  114. // DNS Blacklist Blocking
  115. // If enabled, each incoming connection will be tested against the blacklists
  116. // on the specified dnsbl_servers (comma-separated list)
  117. use_dnsbl: no
  118. dnsbl_servers: dnsbl.deltaanime.net
  119.  
  120. // Which account engine to use.
  121. // 'auto' selects the first engine available (txt, sql, then others)
  122. // (defaults to auto)
  123. account.engine: sql
  124.  
  125. // Account data storage configuration
  126. // TXT
  127. //account.txt.account_db: save/account.txt
  128. //account.txt.case_sensitive: no
  129. // SQL
  130. account.sql.db_hostname: 173.203.201.111
  131. account.sql.db_port: 3306
  132. account.sql.db_username: Removed
  133. account.sql.db_password: Removed
  134. account.sql.db_database: eathena
  135. //account.sql.codepage:
  136. //account.sql.case_sensitive: no
  137. //account.sql.account_db: login
  138. //account.sql.accreg_db: global_reg_value
  139.  
  140. import: conf/inter_athena.conf
  141. import: conf/import/login_conf.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement