IP Estática - Debian 6.0 Squeeze

 

AYUDARNOS A MANTENER LA WEB ES FACIL,
SOLO TENÉIS QUE VISITAR LOS ANUNCIOS QUE HAY EN LA WEB.

alt

Si queremos configurar nuestra IP de forma estática nos logeamos como root y simplemente tenemos que editar el siguiente archivo:

nano /etc/network/interfaces

 Debemos dejarlo de la siguiente manera:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
        address 192.168.1.240 #Dirección IP
        netmask 255.255.255.0 #Mascara de red
        network 192.168.1.0 #Dirección de red
        broadcast 192.168.1.255 #Broadcast
        gateway 192.168.1.254 #Puerta de enlace
        dns-nameservers 192.168.1.254 #Dirección del Servidor DNS (Router)
 Con esto ya tenemos configurada la red de forma estática.
 Si queremos configurarla con DHCP, simplente lo dejamos así:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
 Espero que os sea de ayuda.

Usuarios en Linea

Tenemos 13 visitantes y ningun miembro en Línea

Últimos usuarios

  • rac_fenix
  • Penf_Cype
  • jesusgg
  • klara-Jact
  • nehjipqer
Usted está aquí: Home Vídeo Tutoriales Sistemas Operativos Debian Debian 6.0 Squeeze IP Estática - Debian 6.0 Squeeze