diff options
author | Fridrich von Stauffenberg <cancellor2@gmail.com> | 2011-11-12 07:44:37 -0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-11-26 09:09:11 -0600 |
commit | 6234fdb9cd7062e180b0af55a8475c40f147f1f7 (patch) | |
tree | edc932e0f88c2811963e67a705c1481b4bd397e6 /network/miredo/README | |
parent | 3bb965a4324775e8d84b54dd79ab57651836066f (diff) |
network/miredo: Added (teredo IPv6 tunneling)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'network/miredo/README')
-rw-r--r-- | network/miredo/README | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/network/miredo/README b/network/miredo/README new file mode 100644 index 0000000000000..c20cb11c2584f --- /dev/null +++ b/network/miredo/README @@ -0,0 +1,24 @@ +Miredo is an opensource Teredo IPv6 tunneling software for Linux +and BSD operating systems. It includes functional implementations +of all components of the Teredo specification (client, relay and +server). It is meant to provide IPv6 connectivity even from +behind NAT devices. + +This script requires a 'miredo' user/group to exist before running. +The recommended UID/GID is 255. You can create these like so: + groupadd -g 255 miredo + useradd -u 255 -g 255 -c "Teredo IPv6 Tunneling" -d /dev/null -s /bin/false miredo + +Alternatively, you can fall back to default 'nobody' user by passing +NOBODY=yes to the script. However, this is less safe. + +The following can be used to start/stop miredo automatically: +/etc/rc.d/rc.local + if [ -x /etc/rc.d/rc.miredo ]; then + /etc/rc.d/rc.miredo start + fi + +/etc/rc.d/rc.local_shutdown + if [ -x /etc/rc.d/rc.miredo ]; then + /etc/rc.d/rc.miredo stop + fi |