Advertisement
Kimeraweb

Untitled

Dec 24th, 2011
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.22 KB | None | 0 0
  1. <!--
  2.   ~ This file is part of Aion Java Free <www.aionjfree.com>.
  3.   ~
  4.   ~ aion-unique is free software: you can redistribute it and/or modify
  5.   ~ it under the terms of the GNU General Public License as published by
  6.   ~ the Free Software Foundation, either version 3 of the License, or
  7.   ~ (at your option) any later version.
  8.   ~
  9.   ~ aion-unique is distributed in the hope that it will be useful,
  10.   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.   ~ GNU General Public License for more details.
  13.   ~
  14.   ~ You should have received a copy of the GNU General Public License
  15.   ~ along with aion-unique.  If not, see <http://www.gnu.org/licenses/>.
  16.   -->
  17.  
  18. <!--
  19.     File that is responsible for network address mapping.
  20.     We can have any number of ip ranges mapped to various network interfaces
  21.     Useful for those who run server in local areas with two (or more) networks
  22.  
  23.     For ipconfig's "default" attribute both DNS and ip address is supported.
  24.    Example: <ipconfig default="216.239.59.104"> = your Internet IP Adress (WAN-IP)
  25.    Examples: <ipconfig default="127.0.0.1"> for Local use, modify your C:\Windows\System32\drivers\etc\hosts to: 127.0.0.1 localhost
  26.    Examples: <ipconfig default="192.168.2.xx"> for Local use, modify your C:\Windows\System32\drivers\etc\hosts to: 192.168.2.xx    localhost
  27.    Examples: <ipconfig default="192.168.2.xx"> for DNS Hosting (yourhost.NO-IP.com) use, modify your C:\Windows\System32\drivers\etc\hosts to: 192.168.2.xx    yourhost.no-ip.com (loop-back)
  28.    <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.0.20"/> // where (192.168.0.20 = your Local IP Adress
  29.        <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.2.20"/>
  30. -->
  31.  
  32. <ipconfig default="127.0.0.1">
  33.  
  34.    <!--
  35.        IANA-reserved private IPv4 network ranges
  36.        Access only from local networks, external client can't have any of
  37.         the following ip addresses
  38.      -->
  39.     <iprange min="10.0.0.0" max="10.255.255.255" address="10.0.0.0"/>
  40.     <iprange min="172.16.0.0" max="172.31.255.255" address="172.16.0.0"/>
  41.     <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.0.0"/>
  42.  
  43. </ipconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement