3 # System startup script for tinc
4 # $Id: init.d,v 1.15 2000/10/18 20:12:06 zarq Exp $
6 # Based on Lubomir Bulej's Redhat init script.
8 # Create a file $NETSFILE (/etc/tinc/nets.boot), and put all the names of
9 # the networks in there. These names must be valid directory names under
10 # $TCONF (/etc/tinc). Lines starting with a # will be ignored in this
14 my $DAEMON="/usr/sbin/tincd";
16 my $DESC="tinc daemons";
17 my $TCONF="/etc/tinc";
19 my $NETSFILE="$TCONF/nets.boot";
23 if (! -f $DAEMON) { exit 0; }
28 if(! open(FH, $NETSFILE)) {
29 warn "Please create $NETSFILE.\n";
34 if( /^[ ]*([^ \#]+)/i ) {
39 warn "$NETSFILE doesn't contain any nets.\n";
46 ##############################################################################
47 # vpn_load () Loads VPN configuration
49 # $_[0] ... VPN to load
53 $CFG="$TCONF/$_[0]/tinc.conf";
54 if(! open($CFG, "< $CFG")) {
55 warn "tinc: $CFG does not exist\n";
61 if( /^[ ]*TapDevice[ =]+([^ \#]+)/i ) {
64 $DEV =~ s/^.*\/([^\/0-9]+)([0-9]+)$/$1$2/;
66 } elsif ( /^[ ]*(MyOwnVPNIP|MyVirtualIP)[ =]+([^ \#]+)/i ) {
69 } elsif ( /^[ ]*VpnMask[ =]+([^ \#]+)/i ) {
75 warn "tinc: There must be a TapDevice\n";
79 warn "tinc: TapDevice should be of the form /dev/tapN\n";
83 warn "tinc: MyVirtualIP required\n";
87 warn "tinc: No argument to MyVirtualIP/MyOwnVPNIP\n";
90 if(defined($VPNMASK) && $VPNMASK eq "") {
91 warn "tinc: Invalid argument to VpnMask\n";
96 $ADR =~ s/^([^\/]+)\/.*$/$1/;
98 $LEN =~ s/^.*\/([^\/]+)$/$1/;
99 if($ADR eq "" || $LEN eq "") {
100 warn "tinc: Badly formed MyVirtualIP/MyOwnVPNIP\n";
103 @addr = split(/\./, $ADR);
105 $ADR = pack('C4', @addr);
106 $MSK = pack('N4', -1 << (32 - $LEN));
107 $BRD = join(".", unpack('C4', $ADR | ~$MSK));
108 $MAC = "fe:fd:" . join(":", map { sprintf "%02x", $_ } unpack('C4', $ADR));
110 if(!defined($VPNMASK)) {
112 $VPNMASK = join(".", unpack('C4', $VPNMASK));
114 $ADR = join(".", unpack('C4', $ADR));
115 $MSK = join(".", unpack('C4', $MSK));
121 ##############################################################################
122 # vpn_start () starts specified VPN
124 # $_[0] ... VPN to start
127 vpn_load($_[0]) || return 0;
129 system("insmod ethertap -s --name=\"ethertap$NUM\" unit=\"$NUM\" >/dev/null");
130 system("ifconfig $DEV hw ether $MAC");
131 system("ifconfig $DEV $ADR netmask $VPNMASK broadcast $BRD mtu 1448 -arp");
132 system("start-stop-daemon --start --quiet --pidfile /var/run/$NAME.$_[0].pid --exec $DAEMON -- -n $_[0] $EXTRA");
138 ##############################################################################
139 # vpn_stop () Stops specified VPN
141 # $_[0] ... VPN to stop
144 vpn_load($_[0]) || return 1;
146 system("start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.$_[0].pid --exec $DAEMON -- -n $_[0] $EXTRA -k");
148 system("ifconfig $DEV down");
149 system("rmmod ethertap$NUM -s");
153 if(!defined($ARGV[0])) {
154 die "Usage: /etc/init.d/$NAME {start|stop|restart|force-reload}\n";
157 if($ARGV[0] eq "start") {
159 print "Starting $DESC:";
165 } elsif ($ARGV[0] eq "stop") {
167 print "Stopping $DESC:";
173 } elsif ($ARGV[0] eq "restart" || $ARGV[0] eq "force-reload") {
175 print "Stopping $DESC:";
181 print "Starting $DESC:";
188 die "Usage: /etc/init.d/$NAME {start|stop|restart|force-reload}\n";