dopluto

来自「ipsec vpn」· 代码 · 共 55 行

TXT
55
字号
#!/bin/sh# fill in most pluto flags for debugging# Only argument is east or west# Actually, extra args are passed on to pluto, so --nofork might be useful## RCSID $Id: dopluto,v 1.14 2004/10/17 23:59:57 mcr Exp $. CONFIGcase "$1" ineast) INTERFACE=$EASTIF ; MYPLUTO=${EASTPLUTO:-$PLUTO} ; MYWHACK=${EASTWHACK:-$WHACK} ;;west) INTERFACE=$WESTIF ; MYPLUTO=${WESTPLUTO:-$PLUTO} ; MYWHACK=${WESTWHACK:-$WHACK} ;;north) INTERFACE=$NORTHIF ; MYPLUTO=${NORTHPLUTO:-$PLUTO} ; MYWHACK=${NORTHWHACK:-$WHACK} ;;south) INTERFACE=$SOUTHIF ; MYPLUTO=${SOUTHPLUTO:-$PLUTO} ; MYWHACK=${SOUTHWHACK:-$WHACK} ;;*) echo "$0: \"east\" or \"west\" expected" >&2   exit 1;   ;;esacSIDE=$1shift# the purpose of this function is to hide differences that don't count# from the log: path to pluto and LWDNSQOPTIONfunction performpluto() {	mkdir -p pluto/$SIDE && cd pluto/$SIDE	ln -s -f ../../ipsec.secrets .	ln -s -f ${TESTING}/pluto/ipsec.d/west .	ln -s -f ${TESTING}/pluto/ipsec.d/east .	echo "PLUTO" "$@"	$MYPLUTO ${LWDNSQOPTION:-} "$@" || echo RC: $?	}LOCK=pluto.$SIDE.pidif [ -f $LOCK ]then	$MYWHACK --ctlbase pluto.$SIDE --shutdown	rm -f $LOCKfi# make sure it is set to somethingHELPERS=${HELPERS-}performpluto \	--ctlbase pluto.$SIDE \	--interface $INTERFACE \	--ikeport $IKEPORT $HELPERS \	--secretsfile `pwd`/ipsec.secrets/$SIDE \	--ipsecdir `pwd`/$SIDE \	--noklips --uniqueids --stderrlog \	--debug-all --debug-private \	"$@"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?