Typhon Software Site Admin

Registrado: 24 Jul 2006 Mensajes: 248 Ubicación: Bs As Argentina
|
Publicado: Mar Dic 22, 2009 10:08 am Título del mensaje: Cambiar la Ip de Nuestro Ubuntu Server |
|
|
Para setear la ip de nuestro Ubuntu Server, tenemos que cambiar los datos del archivo /etc/network/interfaces
Para ello podemos utilizar el comando sudo nano -w /etc/network/interfaces.
Y ahi adentro podemos escribir algo asi para setear nuestra ip.
Código: | # 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
auto eth0
iface eth0 inet static
address 192.168.10.210
netmask 255.255.255.0
network 192.168.10.0
broadcast 192.168.10.255
gateway 192.168.10.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.10.1 |
Saludos. _________________ http://www.typhon.com.ar - Soporte y Ayuda para la implementacion de Commit Soft ERP. info@typhon.com.ar |
|