summaryrefslogtreecommitdiff
blob: 117be90309c39f5dfc2d01b4f42f79f1fcfb0c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# /etc/conf.d/spiped

# Once you're happy with your settings,
# set IS_CONFIGURED to "yes".
IS_CONFIGURED="no"

# spiped is shipped with plenty of options. 
# Please see the man page for the complete list.
# -e : encrypt communication
# -d : decrypt communication
OPTS="-e"

# Address and port on which spiped should listen for incoming connections.
# If you want it to listen on the loopback interface, do not specify "localhost" 
# but the localhost IP address instead. spiped won't start if you do so.
SRCHOST="127.0.0.1"
SRCPORT="12345"

# Address and port to which spiped should connect
TARGETHOST="some.domain.tld"
TARGETPORT="1337"