# Server name/IP to connect to
localhost

# Server port
8086

# Listening port
26755

# Max client connections
6

# Allow/deny entries. The first "match" is used
# Allow, IP, Mask, PassRx, TimeLimit, MaxConns
#   Allow:     Y= allow connections from this entry
#   IP:        If ClientIP AND Mask == this IP, match entry
#   Mask:      Connecting IPs ANDed with Mask and compared
#              to IP in entry
#   PassRx:    Y= client data sent to server
#   TimeLimit: If non-zero, maximum seconds per client
#              connection
#   AllowDupe: Y= allow duplicate IPs (multiple conns from
#              same client IP)

# Allow unfettered access from the local machine
Y, 127.0.0.1, 255.255.255.255, Y, 0, Y

# Allow unfettered access from machines on the LAN
Y, 10.0.0.0, 255.0.0.0, Y, 0, Y
#Y, 192.168.0.0, 255.255.0.0, Y, 0, Y
#Y, 172.16.0.0, 255.240.0.0, Y, 0, Y


# BAN 66.123.55.234 (sample only)
#N, 66.123.55.234, 255.255.255.255, N, 0, N


# allow all clients, pass data, no timeout, single connection
# only
#Y, 0.0.0.0, 0.0.0.0, Y, 0, N

# allow all clients, no pass data, 5 minute timeout, single
# connection only
Y, 0.0.0.0, 0.0.0.0, N, 300, N

