mirror of https://github.com/toreanderson/clatd
Merge branch 'master' of https://github.com/toreanderson/clatd
This commit is contained in:
commit
2213bee895
2
LICENCE
2
LICENCE
|
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2014-2015 Tore Anderson <tore@fud.no>
|
||||
Copyright (c) 2014-2016 Tore Anderson <tore@fud.no>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@ example:
|
|||
|
||||
B<clatd 'script-up=ip route add 192.0.2.0/24 dev $clat_dev || true'>
|
||||
|
||||
=item B<script-up=string> (no default)
|
||||
=item B<script-down=string> (no default)
|
||||
|
||||
This works exactly the same as B<script-up>, only that this script is run right
|
||||
after TAYGA has exited, before the clean-up process of restoring any settings
|
||||
|
|
@ -354,7 +354,7 @@ If you enable B<v4-defaultroute-replace> while at the same time disabling
|
|||
B<v4-defaultroute-enable>, B<clatd> will remove any pre-existing IPv4 default
|
||||
routes but not add any of its own.
|
||||
|
||||
Setting B<v4-defaultroute-replace> to I<yes>will disable the IPv4 connectivity
|
||||
Setting B<v4-defaultroute-replace> to I<yes> will disable the IPv4 connectivity
|
||||
check.
|
||||
|
||||
=item B<v4-defaultroute-metric=integer> (default: I<2048>)
|
||||
|
|
@ -412,7 +412,7 @@ configuration file) when reporting a bug.
|
|||
|
||||
=head1 LICENCE
|
||||
|
||||
Copyright (c) 2014-2015 Tore Anderson <tore@fud.no>
|
||||
Copyright (c) 2014-2016 Tore Anderson <tore@fud.no>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
|
|
|
|||
22
clatd
22
clatd
|
|
@ -1,10 +1,24 @@
|
|||
#! /usr/bin/perl -w
|
||||
#
|
||||
# Copyright (c) 2014 Tore Anderson <tore@fud.no>
|
||||
# Copyright (c) 2014-2016 Tore Anderson <tore@fud.no>
|
||||
#
|
||||
# As long as you retain this notice, you may use this piece of software as
|
||||
# you wish. If you like it, and we happen to meet one day, you can buy me
|
||||
# a beer in return. If you really like it, make it an IPA.
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
# in the Software without restriction, including without limitation the rights
|
||||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
# copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
# SOFTWARE.
|
||||
#
|
||||
# See the file 'README.pod' in the source distribution or the manual page
|
||||
# clatd(8) for more information.
|
||||
|
|
|
|||
Loading…
Reference in New Issue