Dhiraagu Dynamic DNS

🕓 Nov 29, 2019 · ☕4 min read

Due to lack of IPv4 address Dhiraagu gives a dynamic IP address to customers.

Unless a customer specifically requests for a static IP address. Even then they allow only for business customers with an extra monthly fee. So the residential customers are left with no choice but to use a dynamic IP. Which in most cases is a good thing. However, this is not good when it comes to hosting because your IP address changes everytime router restarts this would mean you will have to check for the the new IP address. 1 way to do this is searching foryour IP address on google but this isn’t possible if you are not in local network. Another way is to use a service like DynDNS or No-IP on your router if it supports it and the Huawei router dhiraagu sells do not, and from my experience (from Dlink and TP-Link) routers aren’t reliable.

Scenario where someone needs the IP address

  • Manager of a small shop or cafe who wants to view DVR remotely
  • Gamers who want to host for multiplayer
  • Office where they need to host a service locally
  • VPN access to an office network

Solution

..well the solution is IPv6, but let’s face it fossils everywhere. Lucky for us, Dhiraagu shows the IP address in their web usage portal. My idea was to take the IP address from the portal and send to No-IP for DNS update, So I have come up with a script to do just that.

Requirements

  • Dhiraagu Fibre or ADSL connection
  • No-IP Account Register here
  • Python
  • A Computer to host the script
  • requests Python library

Setup - Registering and testing

  1. Set a username for your No-IP account.
  2. Create a new hostname from No-IP.
  3. Save the script with a .py file extension. I saved it as ipupdate.py
  4. Edit quotes in line 5 to 9 with the corresponding detail.
  5. Run the script.

The script

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import requests
import re

#The creds
DHIRAAGU_USERNAME=""
DHIRAAGU_PASSWORD=""
NOIP_USERNAME=""
NOIP_PASSWORD=""
NOIP_DOMAIN=""

LOGIN_URL = "https://portal.dhivehinet.net.mv/adsls/login_api"
HOME_URL = "https://portal.dhivehinet.net.mv/home"

def login(username= DHIRAAGU_USERNAME, password=DHIRAAGU_PASSWORD):

    headers = {'Content-Type': 'application/x-www-form-urlencoded'}
    form_data = {"data[adsl][username]": username, "data[adsl][password]": password}

    login_req = requests.post(LOGIN_URL,headers=headers, data=form_data)

    # 200 means the creds are correct
    if login_req.status_code == 200:
        cookie = login_req.cookies
        home_page = requests.get(HOME_URL,cookies=cookie) #get the home page with the returned cookie
        return home_page.text
    else:
        return False

#tries to find ip address from the homepage with regex
def getIp(string):
    #tries to filter so it will work if two ip matches are found
    results = re.findall('<td colspan="2">(.*)</td>', string)
    result = ' '.join(result for result in results)
    #finds the ip in the new string
    ip_candidates = re.findall(r"\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b", result)
    if len(ip_candidates) == 1:
        return ip_candidates[0]
    else:
        return "NULL"

page = login()
DHIRAAGU_IPADDRESS = getIp(page)

print("IP Adress: {}".format(DHIRAAGU_IPADDRESS))

#Send IP to no-ip.com for DNS update
requests.get("http://"+(NOIP_USERNAME)+":"+(NOIP_PASSWORD)+"@dynupdate.no-ip.com/nic/update?hostname="+(NOIP_DOMAIN)+"&myip="+(DHIRAAGU_IPADDRESS))

Setup - Deploy

Since you will need to have the Domain auto-updated, I Would recommend using Cron job for it. To do that:

  1. Enter crontab -e in the terminal, Select an editor you want (I like nano)
  2. Add this line

with logging

1
0 * * * * echo ============================= >> /home/ip_update/log.txt 2>&1 ; /usr/bin/python3 /home/ip_update/ipupdate.py >> /home/ip_update/log.txt 2>&1 ; date  >> /home/ip_update/log.txt 2>&1 ; echo ============================= >> /home/ip_update/log.txt 2>&1

without logging

1
0 * * * * /usr/bin/python3 /home/ip_update/ipupdate.py

and save it by CTRL+X and Y

Custom Domain and DDoS Protection

The free domain no-ip gives is a subdomain of their domains, which might be fine depending on your application but if you own a domain and want to use it, You can add a CNAME record to your domain.

Type    Name    Content    TTL
CNAME @ NOIP_DOMAIN    Auto

This may not be applicable depending on your service, but for DDoS of web service (Cafe DVR) you can use CloudFlare


Shiham Abdul Rahman
WRITTEN BY
Shiham Abdul Rahman