Configuration file

During normal operation, the ftsprd daemon does not require a configuration file. To change the default daemon behavior, create a configuration file in /etc/ftspr.conf. You can also copy the example file included in the product package at doc/ftspr.conf:

$ sudo cp /opt/doc/ftspr.conf /etc/

Example configuration file:

# Set log level. By default, error is used.
#log level = debug # error, warn, info, debug, trace

# These two statements limit the range of ports which will be shared if allowed by allow/deny filter.
#sharing template = ttyPos ttylb # if name contains space characters use "" 
#sharing mode = template # or physical - if only physical devices are needed or all - if physical devices and devices from template are needed

# allow and deny statements may be used several times, one for each port/wildcard
# By default, all ports are allowed to be shared.
# deny statement prevents ports from sharing and allow statement shares ports.
# Allow wins.
#deny = ttyUSB* # don't share USB serial ports
#deny = ttyS1 # don't share COM2 internal port
# or to share just COM1:
#deny = *
#allow = ttyS0