Difference between revisions of "ServerAdministration"

From The Battle for Wesnoth Wiki
(Available commands)
m (Available commands)
Line 39: Line 39:
 
'''/yellow <message>''': this command send the lobbysmg command with yellow font.
 
'''/yellow <message>''': this command send the lobbysmg command with yellow font.
  
'''/query kick <mask>''': this command will disconnect the user matching the given nick or ip mask from the server.
+
'''/query kick <mask> [<reason>]''': this command will disconnect the user matching the given nick or ip mask from the server.
  
'''/query ban <mask> [<time>] <reason>''': this command will make the server refuse connections from users matching the given ip mask or the ips of users matching the nick mask. When banning by nick mask already existing bans will not be overwritten. When banning by ip mask existing bans (and their reason!) will be overwritten so you can change the reason for a ban that way.
+
'''/query ban <mask> [<time>] <reason>''': this command will make the server refuse connections from users matching the given ip mask or the ips of users matching the nick mask. Existing bans (and their reason!) will be overwritten so you can change the reason for a ban by adding it again.
  
'''/query gban <mask> <group> [<time>] <reason>''': this command will make ban that belongs to a group. It functions just like ordinary ban but ban listing just ignores them.
+
'''/query gban <mask> <group> [<time>] <reason>''': this command will make a ban that belongs to a group. They function just like ordinary bans but only the group name is mentioned in the ban listing.
  
 
'''/query bans''': shows a list of currently banned ip masks and the reasons for the bans.
 
'''/query bans''': shows a list of currently banned ip masks and the reasons for the bans.

Revision as of 15:32, 9 February 2009

Overview

The Wesnoth server, wesnothd provides a simple interface for administering the server from within the game itself.

To issue an administrative command to the server, you must be connected to the server using Wesnoth, and in the lobby. Any text you type into the chat box that begins with '/query ' will be considered an administrative command instead of a normal chat message. It will not be relayed to other users, but instead treated as a command by the server.

Most commands are not accessible to normal users. They are only accessible once you have authenticated yourself to the server as an administrator. The way to authenticate yourself as an administrator is to use the command,

/query <password>

where <password> is the administrative password to the server. The administrative password is specified as the passwd attribute in wesnothd.cfg. By convention, it will generally start with 'admin ' followed by the actual password, so the usual syntax to authenticate yourself is,

/query admin <passwd>

Naturally the password for a server should be kept a secret. One danger is that if you forget to type '/query ' at the start of a command you may accidentally type the password in a chat message, and let all users on the server know it. If you do this, then notify an administrator who has access to the box as soon as possible, so they can reset the password in wesnothd.cfg. We may provide features to prevent this kind of accident in future versions.

A message from the server should tell you that you have successfully authenticated yourself as an administrator. The server will recognize you as an administrator until the next time you log out of the server.

Available commands

/query metrics: this command will show a simple metrics report of how the server has been performing. (available to non-administrators)

/query netstats: shows some network stats. (available to non-administrators)

/query wml: shows stats about WML documents and their current memory consumption. (available to non-administrators)

/query status [<nickmask>]: this command will show you a list of users (matching the nickmask) connected to the server, with IP addresses, and how long they have been connected. Note that IP addresses of users are not available to non-administrators, and should be treated as confidential. When used as a non-administrator it just returns the entry of the user.

/query motd [<message>]: this command sets the message of the day that appears as the first message users get when they log on to the server. Without argument it returns the current motd. (available to non-administrators)

/query msg <message>: this command will relay the message 'message' to all users on the server, even if they are in a game. The message will appear to come from 'server', so you should write your name as part of the message if it is necessary to show who it comes from. You can prefix your message with <red,green,blue> to color it, e.g. /query msg <255,255,0>message> for a yellow message.

/query lobbymsg <message>: this command will relay the message 'message' to all users in the lobby of the server. The message will appear to come from 'server', so you should write your name as part of the message if it is necessary to show who it comes from. You can prefix your message with <red,green,blue> to color it, e.g. /query msg <255,255,0>message> for a yellow message.

/green <message>: this command send the lobbysmg command with green font.

/red <message>: this command send the lobbysmg command with red font.

/yellow <message>: this command send the lobbysmg command with yellow font.

/query kick <mask> [<reason>]: this command will disconnect the user matching the given nick or ip mask from the server.

/query ban <mask> [: this command will make the server refuse connections from users matching the given ip mask or the ips of users matching the nick mask. Existing bans (and their reason!) will be overwritten so you can change the reason for a ban by adding it again.

/query gban <mask> <group> [: this command will make a ban that belongs to a group. They function just like ordinary bans but only the group name is mentioned in the ban listing.

/query bans: shows a list of currently banned ip masks and the reasons for the bans.

/query kban <mask> [: this command is equivalent to 'kick <mask>' 'ban <mask> [<time] <reason>' -- i.e. bans the users matching the ip mask or the ips of users matching the nick mask and disconnects them all in one go. The most common way to ban someone from the server.

/query unban <ipmask>: this command removes the specified ip mask from the ban list.

/query ungban <group>: this command removes all bans in the group.

/query searchlog <mask>: this returns the IP a nick matching the mask has used or the nicks that an IP matching the used. Unlike status this searches the IP log.


Masks are arguments that can contain wildcards ('*' and '?'). '*' matches any number of characters (including none), and '?' any one character. Ip masks are masks that contain at least one '.'.

The time parameter is used to set the time when a ban expires. A simple example is 2D12h which means after 2 days and 12 hours the ban gets removed. Modifiers are: s=seconds, m=minutes, h=hours, D=days, M=months and Y=years (short times with lowercase and long times with uppercase). We can also set shortcuts like LONG, MEDIUM and SHORT for common ban lengths but none is set yet.

Future extensions

The current administrative interface is fairly primitive. We plan to provide some further extensions in the future, such as,

/query mute <nick>: makes it so that any messages sent by the user with the given nick will not be received by any other user on the server unless they share an IP address with 'nick'. Any games created by 'nick' will likewise not be seen by other users. 'nick' may observe games but will not appear in the observer list, and players of the game will not see any messages they type.