----------------------------
Fuzziqer Software DNS Server
----------------------------

Okay, it's not really a DNS server. It's a DNS cache program. But you don't care
about that, right? Here's how you use it:

1. Extract fsdnssrv.exe to somewhere.
2. Run it. It'll create a file called default.drf in the same folder.

You can press CTRL+SPACE at any time to show/hide the console window.
To close the server, just close the console window or press CTRL+SHIFT+SPACE.

--------------------
Command Line Options
--------------------

fsdnssrv.exe [-e] [-i<ip>] [-x<ip>] [-n<ip>] [-o<ip>] [entry list name]

    -e: opens the entry editor (see next section)
    -i: adds an address to the address list
    -x: removes an address from the address list
    -n: sets your external IP address
    -o: adds and sets your external IP (combination of -i and -n)

If you want to run a DNS server for the entire Internet to use, make sure you
use the -o switch and give it your external IP.
Examples:

fsdnssrv -e
fsdnssrv -o66.35.217.48
fsdnssrv -x192.168.1.30 gameserver.drf

----------------
The Entry Editor
----------------

You can edit entries to point to locations other than they're supposed to. Just
run fsdnssrv.exe with the -e flag (and a filename, if desired), and the entry
editor will open instead of the DNS server.

The entry editor displays a list of entries and prompts for a command. There are
only three commands:

a <name> [address]
    adds an entry to the list. If the address is not supplied, the DNS server
    will resolve this to its own address. Examples:
        a www.fuzziqersoftware.com 192.168.1.47
        a www.google.com

f <name> <dest>
    adds a forward to the list. For example, if I wanted to redirect
    www.google.com to www.fuzziqersoftware.com, this is what I'd do:
        f www.google.com www.fuzziqersoftware.com

d <number>
    deletes an entry from the list. Each entry has a number next to it; just use
    that number. Example:
        d 3

e
    exits the Entry Editor.

********************************************************************************