Skip to content

Commit

Permalink
Update changelog and readme for he.net
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbabcock committed Apr 2, 2021
1 parent d5dd277 commit 7e1cd41
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.5.1 - 2021-04-02

Add support for [he.net](http://he.net/). Below is a sample config:

```toml
[[domains]]
type = "he"
hostname = "test-dness-1.xyz"
password = "super_secret_password"
records = [ "@", "sub" ]
```

## 0.5.0 - 2020-12-29

This release is for the sysadmins out there. The dness config file is now treated as a handlebar template with variables filled in from the environment. Now one can write
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ GoDaddy dynamic dns service works as the following:
#### Namecheap

```toml
[[domains]]
# Namecheap requires that dynamic dns is enabled in their UI!
type = "namecheap"
domain = "test-dness-1.xyz"
Expand All @@ -248,6 +249,18 @@ Updating the dns entry works as follows:

This method suffers from natural flow of dns propagation. When namecheap receives the update, it may take up to an hour for cloudflare to see the new record. In the meantime, dness will keep updating namecheap servers with the WAN. This has no consequential side effects other than momentary confusion why updates are being sent to namecheap every 5 minutes. Future revisions of this provider may use another method (like API integration) if the current method proves deficient enough.

### He.net

```toml
[[domains]]
type = "he"
hostname = "test-dness-1.xyz"
password = "super_secret_password"
records = [ "@", "sub" ]
```

[he.net](http://he.net/) follows the same flow as Namecheap (check the current record via DNS and update if necessary).

### Supported WAN IP Resolvers

There are a couple different methods for dness to resolve the WAN IP address.
Expand Down

0 comments on commit 7e1cd41

Please sign in to comment.