elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Curso de javascript por TickTack


  Mostrar Mensajes
Páginas: 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26
131  Sistemas Operativos / GNU/Linux / ssh-rsa en: 16 Junio 2010, 20:47 pm
Como puedo saber que SSH-RSA tiene mi servidor??

Cuando realizo una conexion me sale una SSH-RSA y me gustaria saber como comprobar dicha RSA y saber donde se almacena..

Salu2

alzehimer_cerebral
132  Sistemas Operativos / GNU/Linux / Saber version de Apache y Openssl que tengo instaladas?? en: 16 Junio 2010, 20:46 pm
Como puedo saber las versiones de Apache y OpenSSL que tengo instaladas??

Saludos.

alzehimer_cerebral
133  Sistemas Operativos / GNU/Linux / Re: Servidor Apache + SSL en: 16 Junio 2010, 12:46 pm
Nadie me puede ayudar a configurar el SSL??

Por favor si alguien entiende del tema que me heche una mano ya que lo necesito para un proyecto.

Gracias de antemano.

alzehimer_Cerebral
134  Sistemas Operativos / GNU/Linux / Re: Servidor Apache + SSL en: 15 Junio 2010, 16:09 pm
Hola de nuevo,

Estoy siguiendo el manual: http://www.gpltarragona.org/archives/318 para configurar un servidor Apache con SSL.

De momento

He instalado el servidor apache2 y he habilitado el modulo ssl.  Pero al intentar generar el certificado autofirmado mediante el script apache2-ssl-certificate. Donde se encuentra dicho script???

Al final he generado el certificado mediante openssl siguiendo dichos pasos: http://onlamp.com/pub/a/onlamp/2008/03/04/step-by-step-configuring-ssl-under-apache.html

1.Me gustaria saber en que directorio colocar el key y crt??

Tambien el manual tiene los ficheros diferente a la version de apache que he instalado yo.. En mi version el fichero apache2.conf y httpd.conf estan vacios.

El fichero ports.conf:

# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default
# This is also true if you have upgraded from before 2.2.9-3 (i.e. from
# Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
# README.Debian.gz

NameVirtualHost *:80
Listen 80

<IfModule mod_ssl.c>
    # If you add NameVirtualHost *:443 here, you will also have to change
    # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
    # to <VirtualHost *:443>
    # Server Name Indication for SSL named virtual hosts is currently not
    # supported by MSIE on Windows XP.
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>


El fichero /sites-avaible/default:

<VirtualHost *:80>
   ServerAdmin webmaster@localhost

   DocumentRoot /var/www
   <Directory />
      Options FollowSymLinks
      AllowOverride None
   </Directory>
   <Directory /var/www/>
      Options Indexes FollowSymLinks MultiViews
      AllowOverride None
      Order allow,deny
      allow from all
   </Directory>

   ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
   <Directory "/usr/lib/cgi-bin">
      AllowOverride None
      Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
      Order allow,deny
      Allow from all
   </Directory>

   ErrorLog /var/log/apache2/error.log

   # Possible values include: debug, info, notice, warn, error, crit,
   # alert, emerg.
   LogLevel warn

   CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

Parte del fichero /sites-avaible/default-ssl:

<VirtualHost _default_:443>
   ServerAdmin webmaster@localhost

   DocumentRoot /var/www
   <Directory />
      Options FollowSymLinks
      AllowOverride None
   </Directory>
   <Directory /var/www/>
      Options Indexes FollowSymLinks MultiViews
      AllowOverride None
      Order allow,deny
      allow from all
   </Directory>

   ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
   <Directory "/usr/lib/cgi-bin">
      AllowOverride None
      Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
      Order allow,deny
      Allow from all
   </Directory>

..............
............
He cambiado las rutas de:
SSLCertificateFile    /etc/ssl/certs/ssl-cert-snakeoil.pem
SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key

Para que apunten a la key y al certificado generados anteriormente.

Tengo que añadir a default y default-ssl lo de NameVirtualHost *=80||443 y lo de <VirtualHost *:443||80>??  Y en ports.conf como lo pongo??

Alguien me puede guiar un poco porfavor. Salu2.

P.D Si intento acceder a https://localhost me sale:

SSL ha recibido un registro que excedía la longitud máxima permitida.

(Código de error: ssl_error_rx_record_too_long)


alzehimer_cerebral
135  Sistemas Operativos / GNU/Linux / Re: Servidor Apache + SSL en: 15 Junio 2010, 02:35 am
Bueno de momento lo tengo instalado y no es que vaya rapido pero para hacer las pruebas de momento es suficiente...

Me he bajado la ultima version de Apache y de Openssl.  He hecho man openssl y me ha salido el manual por lo tanto ya debo tener una version de openssl, como puedo saber la version que tengo instalada??

Me podrias indicar un buen manual para configurar Apache con SSL que explique paso por paso sin saltarse ideas basicas??

Salu2.

alzehimer_cerebral
136  Sistemas Operativos / GNU/Linux / Servidor Apache + SSL en: 15 Junio 2010, 00:28 am
Hola gente,

necesito instalar un servidor Apache con SSL sobre una maquina cuyo procesador es P2 cuya velocidad desconozco, tiene casi 600MB RAM y 40GB de HDD.

Actualmente estoy instalando Ubuntu 10.04 LTS Desktop.. Tambien estoy bajando Ubuntu 8.04 LTS Desktop por si el anterior no va bien.

Creen que ira bien??  Sino que distro puedo ponerle??

Darme opiniones.

alzehimer_cerebral

137  Comunicaciones / Redes / Re: Servidor ftp Filezilla en: 13 Junio 2010, 23:38 pm
Tema solucionado, era tema de abrir puertos correctamente en el FW e incluir la IP del servidor en la DMZ.

Saludos.

alzehimer_cerebral
138  Comunicaciones / Redes / Re: Servidor ftp Filezilla en: 8 Junio 2010, 13:19 pm
Utilizo Ono y tengo el no-ip instalado en el servidor.

Que mas podria ser??
139  Sistemas Operativos / GNU/Linux / Caracteristicas de un PC en Ubuntu 9.04 en: 6 Junio 2010, 20:07 pm
Me gustaria saber que procesador, RAM tiene un pc, existe algun comando para dicho fin??

Tambien me gustaria saber el nombre del grupo de trabajo y el nombre del equipo??

Espero vuestras respuestas.

alzehimer_cerebral
140  Comunicaciones / Redes / Servidor ftp Filezilla en: 6 Junio 2010, 19:01 pm
Acabo de instalar un servidor ftp Filezilla y no logro conectar...

He abierto el puerto 21 en el router y lo he redireccionado a la IP privada donde corre el servidor.

He creado un usuario de pruebas...

En passive mode settings lo tengo en "default".

Al conectar con el cliente Filezilla desde una red externa me da timeout de conexion.

Que me esta fallando???

alzehimer_cerebral
Páginas: 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines