Advertisement
Guest User

Untitled

a guest
Jun 17th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 0.63 KB | None | 0 0
  1. Resolver los siguientes casos y escribir la lista de comandos usados para su resolucion:
  2.  
  3. 1. Se desea renovar la direccion IP asignada por el servidor DHCP
  4. # inconfig
  5. # dhclient eth0
  6.  
  7. 2. Cambiar la direccion del gateway por 192.168.1.10 como predeterminada
  8. # route add default gw 192.168.1.1 eth0
  9.  
  10. 3. Cambiar la direccion IP por 192.168.1.60
  11. # ifconfig eth0 192.168.1.60
  12.  
  13. 4. Editar las direcciones de los DNS, por los de Google (8.8.8.8 y 8.8.4.4)
  14. # nano/etc/resolv.conf
  15. # vim.tiny/etc/resolv.conf
  16. # gedit/etc/resolv.conf
  17. # geany/etc/resolv.conf
  18.  
  19. 5. Reiniciar el servicio de conexion a la red.
  20. # /etcinit.d/networking restart
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement