nithssh / DDNSClient

Dyndns2 protocol client for Windows made using C#

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DDNSClient

A light-weight Windows BackgroundService for updating Dynamic DNS records using Dyndns2 protocol.

Made originally for Google DNS's dynamic DNS service, but planned to be more configurable to support other Dyndns2 services.

Installation

Download the latest release from the releases page and configure the service by editing the appconfig.json to include:

{
  ...
    
  "DDNSConfig": {
    "Username": "asfdifugao",
    "Password": "0198461032",
    "Email": "email@example.com",
    "Hostname": "your.domainname.com"
  }
}

Then, install the service though an admin shell using:

sc.exe create "DDNS Client Service" binbath="path/to/DDClient.exe"
sc.exe config "DDNS Client Service" start=auto

Note: Installer script or MSI is planned for the project, and should make things a lot smoother.

About

Dyndns2 protocol client for Windows made using C#

License:MIT License


Languages

Language:C# 100.0%