sábado, 3 de agosto de 2013

FORTICLIENT: BUG'S DE CONEXIÓN PARA FEDORA

Después de tanto tiempo buscando alternativas para poder hacer andar el Forticlient SSL VPN en Fedora encontré la solución:

El error que tenia es que el cliente me informaba que estaba conectado pero cuando queria ingresar a mis servidores la conexion no se realizaba y me daba este error en consola:

Usage: inet_route [-vF] del {-host|-net} Target[/prefix] [gw Gw] [metric M] [[dev] If]
       inet_route [-vF] add {-host|-net} Target[/prefix] [gw Gw] [metric M][netmask N] [mss Mss] [window W] [irtt I][mod] [dyn] [reinstate] [[dev] If]
       inet_route [-vF] add {-host|-net} Target[/prefix] [metric M] reject
       inet_route [-FC] flush      NOT supported

Esto se debe a un bugs que tiene el archivo sysconfig.linux.sh en la linea:

addr=`ifconfig $ifn |grep "inet"|awk ' {print $2 }'| awk -F : '{ print $2}'`

Hay que cambiarlo por:

addr=`ifconfig $ifn |grep "inet"|awk ' {print $2 }'`

Porque el comando ifconfig entrega una cadena vacía, haciendo que le falte un parámetro al comando route.

Este es el link de quien encontro la solucion:

http://forums.fedoraforum.org/showthread.php?t=280553

No hay comentarios:

Publicar un comentario