| 1 |
########################################################################################################
|
| 2 |
#------------------------------------------------------------------------------------------------------#
|
| 3 |
# Address Translation table #
|
| 4 |
#------------------------------------------------------------------------------------------------------#
|
| 5 |
# #
|
| 6 |
# This is a list of ip:port addresses that get translated #
|
| 7 |
# #
|
| 8 |
# The entries are broken into four parts: #
|
| 9 |
# #
|
| 10 |
# * the IP address w/port to be translated #
|
| 11 |
# * the output IP address w/port #
|
| 12 |
# * comma delimited list of networks to be excluded from translation #
|
| 13 |
# * comma delimited list of networks to be included in translation #
|
| 14 |
# #
|
| 15 |
# Each line must contain all four parts or the entire entry will be rejected #
|
| 16 |
# There are no default ports, make sure input and output includes the port number #
|
| 17 |
# #
|
| 18 |
# The entries are searched in the order listed in this file #
|
| 19 |
# Exclude networks are searched before include networks #
|
| 20 |
# Only the first matching line is used #
|
| 21 |
# Lines begining with '#' are ignored #
|
| 22 |
# #
|
| 23 |
# If no match is found, the input ip will be returned. #
|
| 24 |
# #
|
| 25 |
# NONE = There are no neworks to exclude/include (just a place holder, no entries will be added) #
|
| 26 |
# ANY = All networks will be excluded/included (same as 0.0.0.0/0) #
|
| 27 |
# #
|
| 28 |
########################################################################################################
|
| 29 |
|
| 30 |
########################################################################################################
|
| 31 |
# w3route server ip (removed from w3trans.conf) (Port 6200) #
|
| 32 |
# #
|
| 33 |
# Set input address the same as the w3routeaddr setting in the bnetd.conf #
|
| 34 |
# Set output address to the address to be sent to war3 clients #
|
| 35 |
# Set exclude to the range of clients you want to recieve the input address #
|
| 36 |
# instead of the output address #
|
| 37 |
# Set include to the range of clients you want to recieve the output address #
|
| 38 |
# #
|
| 39 |
# input (ip:port) output (ip:port) exclude (ip/netmask) include (ip/netmask) #
|
| 40 |
#--------------------- ---------------------- ---------------------------- -------------------------#
|
| 41 |
|
| 42 |
#0.0.0.0:6200 192.168.1.100:6200 NONE 192.168.1.0/24
|
| 43 |
#0.0.0.0:6200 internetip:6200 NONE ANY
|
| 44 |
|
| 45 |
|
| 46 |
|
| 47 |
########################################################################################################
|
| 48 |
# Game Translations for clients (removed from gametrans.conf) (client data ports) #
|
| 49 |
# #
|
| 50 |
# Set input address to the client to be translated #
|
| 51 |
# Set output address to the address to be sent to the other clients #
|
| 52 |
# Set exclude to the range of clients you want to recieve the input address #
|
| 53 |
# instead of the output address #
|
| 54 |
# Set include to the range of clients you want to recieve the output address #
|
| 55 |
# #
|
| 56 |
# input (ip:port) output (ip:port) exclude (ip/netmask) include (ip/netmask) #
|
| 57 |
#--------------------- ---------------------- ---------------------------- -------------------------#
|
| 58 |
|
| 59 |
#192.168.1.1:6119 internetip:6119 192.168.1.0/24,10.0.0.0/8 ANY
|
| 60 |
#192.168.1.2:6118 internetip:6118 192.168.1.0/24 ANY
|
| 61 |
|
| 62 |
|
| 63 |
|
| 64 |
########################################################################################################
|
| 65 |
# Diablo II Charactar Server (d2cs) - (removed from realm.conf) (Port 6113) #
|
| 66 |
# #
|
| 67 |
# Set input address to the ip of d2cs (same as the ip in the realm.conf) #
|
| 68 |
# Set output address to the address to be sent to the clients #
|
| 69 |
# Set exclude to the range of clients you want to recieve the input address #
|
| 70 |
# instead of the output address #
|
| 71 |
# Set include to the range of client you want to recieve the output address #
|
| 72 |
# #
|
| 73 |
# input (ip:port) output (ip:port) exclude (ip/netmask) include (ip/netmask) #
|
| 74 |
#--------------------- ---------------------- ---------------------------- -------------------------#
|
| 75 |
|
| 76 |
#192.168.1.100:6113 internetip:6113 192.168.1.0/24 ANY
|
| 77 |
|
| 78 |
|
| 79 |
|
| 80 |
########################################################################################################
|
| 81 |
# Diablo II Game Server (d2gs) - (removed from d2gstrans.conf) (Port 4000) #
|
| 82 |
# #
|
| 83 |
# Set input address to the ip of d2gs (same as the gameservlist in d2cs.conf) #
|
| 84 |
# Set output address to the address to be sent to the clients #
|
| 85 |
# Set exclude to the range of clients you want to recieve the input address #
|
| 86 |
# instead of the output address #
|
| 87 |
# Set include to the range of client you want to recieve the output address #
|
| 88 |
# #
|
| 89 |
# input (ip:port) output (ip:port) exclude (ip/netmask) include (ip/netmask) #
|
| 90 |
#--------------------- ---------------------- ---------------------------- -------------------------#
|
| 91 |
|
| 92 |
#192.168.1.100:4000 internetip:4000 192.168.1.0/24 ANY
|
| 93 |
|
| 94 |
|