Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 639 Bytes

dyndns.md

File metadata and controls

33 lines (24 loc) · 639 Bytes

DynDNS

noip.com

noip.com offers three DNS names with free accounts.

  • Install and configure the client

    https://www.noip.com/support/knowledgebase/installing-the-linux-dynamic-update-client/

  • Create systemd server /etc/systemd/system/noip2.service with the following content

    [Unit]
    Description=noip2 service
    
    [Service]
    Type=forking
    ExecStart=/usr/local/bin/noip2
    Restart=always
    
    [Install]
    WantedBy=default.target
  • Enable the service

    sudo systemctl enable noip2.service
  • Start the service

    sudo systemctl start noip2.service