version 1.2 | | version 1.3 |
---|
| | |
# For a ban to result, both the user and ip must be true. | | # For a ban to result, both the user and ip must be true. |
# Note: Crossfire does not do a ip -> dns name, so matches for the | | # Note: Crossfire does not do a ip -> dns name, so matches for the |
# second part must be by ip. | | # second part must be by ip. |
# Note2: The user portion is currently igored - the ban check is | | |
# done before the user logs in. | | |
# | | # |
# Syntax is "user@ip.address". Note that when actually putting | | # Syntax is "user@ip.address". Note that when actually putting in lines, the |
# in lines, the double quotes should be ignored. user should | | # double quotes should be ignored. user can be "*" to match any user. |
# always be "*" for any form of banning to work. | | |
# | | # |
# the ip address portion is done as a substring and not wildcard | | # The ip address portion is done as a substring and not wildcard |
# match. Some examples, and results: | | # match. Some examples, and results: |
# | | # |
# "mark@tavern.us" - won't work - mark won't match, nor would tavern.us | | # "mark@tavern.us" - won't work - tavern.us would not match - must be ip |
# match - must be ip address. | | # address. |
# "*@10.1.31.1" - users from 10.1.31.1 will not be able to play. | | # "*@10.1.31.1" - users from 10.1.31.1 will not be able to play. |
# "*@10.1.31.*" - will not work - * is not a wildcard for host matches. | | # "*@10.1.31.*" - will not work - * is not a wildcard for host matches. |
# "*@10.1.31." - will do above - every ip that has 10.1.31. will be banned. | | # "*@10.1.31." - will do above - every ip that has 10.1.31. will be banned. |
# "*@10.1.31" - will ban above, but would also ban things like "129.10.1.31". | | # "*@10.1.31" - will ban above, but would also ban things like |
| | # "129.10.1.31". |
| | # "mark@10.1.31.1" - user mark from 10.1.31.1 will not be able to play. |
| | # "mark@" - user mark will not be able to play. |
| | # "mark@*" - user mark will not be able to play - * matches any host |
| | # name. |
# | | # |
# Ip address can be determined by looking at the logs, or with the who command. | | # Ip address can be determined by looking at the logs, or with the who command. |