An open API service indexing awesome lists of open source software.

https://github.com/blixhavn/dyndns-domeneshop

Python script to automatically update the DNS record of a subdomain in Domeneshop
https://github.com/blixhavn/dyndns-domeneshop

Last synced: about 2 months ago
JSON representation

Python script to automatically update the DNS record of a subdomain in Domeneshop

Awesome Lists containing this project

README

        

## DYNDNS-Domeneshop

This is a super simple python script to automatically update the DNS record of a subdomain to reflect the current public IP address of the machine running the script. It's meant to be run with CRON or any other scheduling tool. There are four config variables that needs to be updated:

```
API_TOKEN="TOKEN"
API_SECRET="SECRET"

DOMAIN="domain.no"
SUBDOMAIN="subdomain"
```

The token and secret can be found by creating an API key here: [https://www.domeneshop.no/admin?view=api](https://www.domeneshop.no/admin?view=api).

The domain and subdomain needs to be already created, as this script only attempts to modify an existing record.

## Installing
As with all python projects, you should create a virtual environment where the requirements can be installed.

```
cd
git clone https://github.com/blixhavn/dyndns-domeneshop.git
cd dyndns-domeneshop
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```
Then, copy the config template to config.py and update the variables (`:wq` saves and exits vim):
```
cp config_template.py config.py
vim config.py
```

then you can add it to CRON by writing `crontab -e` and adding a line:
```
*/30 * * * * /home//dyndns-domeneshop/venv/bin/python /home//dyndns-domeneshop/dyndns.py