P
P
Pavel2014-07-23 20:11:34
network hardware
Pavel, 2014-07-23 20:11:34

How to set up DDNS from no-ip on a D-Link DIR-320/A/D1A router?

The native firmware of the router was 1.0.6, but in the DDNS settings there were only dyndns.com, dlinkddns from the servers, and there was no no-ip I needed, after which I updated the firmware to the latest (which I found), but in it in DDNS settings is missing the field specifying the ddns server. Tell me how to solve this problem?7b93a9f5b60d45f7988eb06d639f9258.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
P
Pavel, 2014-08-04
@VoRez

I solved the problem with a script. www.noip.com/integrate/request

import re, urllib

if __name__ == "__main__":
    
    web_page = urllib.urlopen("http://2ip.ru")
    
    web_page = web_page.read()
    
    ip = re.findall("(\d+\.\d+\.\d+\.\d+)", web_page)[0]
    
    username = 'username'
    password = 'password'
    host = 'host'
    
    update = urllib.urlopen("http://"+str(username)+":"+str(password)+
                            "@dynupdate.no-ip.com/nic/update?hostname="+str(host)+"&myip="+ ip)
    res = update.read()
    if re.match("(good)|(nochg)", res):
        print 'ok'
    else:
        print 'error\n' + res

A
Andrey-S, 2014-08-19
@Andrey-S

Here everything is described in detail. https://dynru.ru/question/howto-dlink-dir-300/
Only free no-ip does not allow port 80 to be thrown out and every month you need to confirm ((

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question