w3trans
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. ##############################################################################
  2. # Warcraft III Route Server IP table                                         #
  3. #----------------------------------------------------------------------------#
  4. #                                                                            #
  5. # This is a list of networks whos clients get sent a different w3route       # # server ip.                                                                 # # The entries are broken into two parts:      #
  6. #                                                                            #
  7. # * the network(s) of possible clients                                       #
  8. # * the IP address which will be sent to the client                      # #                                                                            #
  9. # set w3routeaddr = 0.0.0.0:6200 (in bnetd.conf) to make server listen on    #
  10. # all interfaces, but if you do make sure you have a 0.0.0.0/0 entry in      # # this file.                                                                 #
  11. #                                                                            # # The entries are searched in the order listed in the file and only the      #
  12. # first matching line is used.                                               #
  13. #                                                                            #
  14. ##############################################################################
  15. # if there are no entries in this file # or no matching networks listed for a client # the ip in the bnetd.conf (w3routeaddr) will be sent to the client # Example # 1 #  pvpgn runs on a gateway/router #    local ip = 192.168.0.1 #    internet ip 111.222.333.444 #  lan comps (192.168.0.2 - 192.168.0.255) #  internet players # #  set w3routeaddr = 0.0.0.0:6200 (in bnetd.conf) # #  two entries in this file  # # network w/bitmask output ip #---------------------- ------------------------ # 192.168.0.0/24 192.168.0.1:6200 # 0.0.0.0/0 111.222.333.444:6200 # Example # 2 #  pvpgn runs on a local lan behind a router (10.0.0.100) #  router #    local ip = 10.0.0.1 #    internet ip = 111.222.333.444 #  lan comps (10.0.0.2 - 10.255.255.255) #  internet players # #  set w3routeaddr = 0.0.0.0:6200 or 10.0.0.100:6200 (in bnetd.conf) #  portforward port 6200 from router to 10.0.0.100 # #  two entries in this file  # # network w/bitmask output ip #---------------------- ------------------------ # 10.0.0.0/8 10.0.0.100:6200 # 0.0.0.0/0 111.222.333.444:6200 # network w/bitmask output ip #---------------------- ------------------------