Amigos, Estoy tratando de realizar una VPN con CIPE y Sarge, el problema que se presenta es el siguiente (adjunto el resultado de ejecutar /bin/sh -x /etc/init.d/cipe start) :
+ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin + DAEMON=/usr/sbin/ciped + NAME=ciped + DESC=encrypted tunnel + PEERDIR=/etc/cipe/peers + test -x /usr/sbin/ciped + test -d /etc/cipe/peers ++ find /etc/cipe/peers -type f -maxdepth 1 '!' -name '*~' -exec basename '{}' ';' + PEERS=options.cipcb0 + '[' xoptions.cipcb0 = x ']' + set -e + echo -n 'Starting encrypted tunnel: ' Starting encrypted tunnel: + start_all + echo -n 'options.cipcb0 ' options.cipcb0 + start-stop-daemon --start --quiet --exec /usr/sbin/ciped -- -o /etc/cipe/peers/options.cipcb0 ciped-wrapper: Cannot find binary for kernel 2.6.8-2-386. El contenido del archivo /usr/sbib/ciped es : #!/bin/sh set -e REAL="/usr/sbin/ciped-`uname -r`" if [ -x "$REAL" ]; then exec "$REAL" "$@" else echo "ciped-wrapper: Cannot find binary for kernel `uname -r`." 1>&2 exit 1 fi No se que hacer, ni que cambiar para corregir este error, agradecere si pudieran indicarme que hacer o donde puedo buscar informacion para corregirlo, la busqueda en google no dio resultados. Grcs