Advertisement
apfelcast

DynDNS auf Raspberry Pi

Aug 3rd, 2019
12,723
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. #### DynDNS auf Raspberry Pi ####
  2.  
  3. ## Quellen aktualisieren ##
  4. sudo apt-get update
  5. sudo apt-get upgrade
  6.  
  7. ## DynDNS Client installieren ##
  8. sudo apt-get install ddclient
  9.  
  10. ## Konfiguration bearbeiten ##
  11. sudo nano /etc/ddclient.conf
  12.  
  13. *** für no-ip ***
  14.  
  15. protocol=noip
  16. use=web
  17. web=checkip.dyndns.org
  18. server=dynupdate.no-ip.com
  19. login=
  20. password=
  21. example.de
  22.  
  23. ***
  24.  
  25. *** für Strato ***
  26.  
  27. pid=/var/run/ddclient.pid
  28. protocol=dyndns2
  29. use=web
  30. server=dyndns.strato.com
  31. login=example.de
  32. password='passwort'
  33. example.de
  34.  
  35. ***
  36. ## Dienst neu sratten ##
  37. sudo /etc/init.d/ddclient restart
  38.  
  39. ## Konfiguration testen ##
  40. sudo ddclient -daemon=0 -debug -verbose -noquiet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement