Cambiar DNS
/etc/resolv.conf |
#Configuración básica del fichero: |
nameserver [ip dns] |
nameserver 8.8.8.8 |
Cambiar dirección IP , Mascara y puerta de enlace
/etc/network/interfaces |
# Interface Loopback, necesaria para localhost |
auto lo |
iface lo inet loopback |
# Configuración ip dinámica DHCP: |
allow-hotplug eth0 |
iface eth0 inet dhcp |
# Configuración ip estática: |
auto eth0 |
iface eth0 inet static |
address 192.168.0.70 |
gateway 192.168.0.1 |
netmask 255.255.255.0 |
network 192.168.0.0 |
Ver configuración IP
ifconfig |
Desactivar una interface
ifdown [interfaz por ejemplo eth0] |
Activar una interface
ifup eth0 |
Reiniciar el servicio de red:
/etc/init.d/networking restart |
o |
service networking restart |
Ping
ping
-c[numero de peticiones] URL
No hay comentarios:
Publicar un comentario