All Projects → roccomuso → no-ip

roccomuso / no-ip

Licence: MIT License
Noip.com Dynamic DNS update client built in Node.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to no-ip

namecheapapi
Python Namecheap API wrapper. Supports domain registration/renewal/management, domain availability checks, DNS updates and more.
Stars: ✭ 22 (-33.33%)
Mutual labels:  dns
rsdns
rackspace DNS tools
Stars: ✭ 55 (+66.67%)
Mutual labels:  dns
domfind
A Python DNS crawler to find identical domain names under different TLDs.
Stars: ✭ 22 (-33.33%)
Mutual labels:  dns
kali-wsl
KALI LINUX : WINDOWS SUBSYSTEM FOR LINUX
Stars: ✭ 56 (+69.7%)
Mutual labels:  update
aiodns
A All-In-One DNS Solution written in Go
Stars: ✭ 23 (-30.3%)
Mutual labels:  dns
DNS
Swift implementation of DNS Records / RR
Stars: ✭ 51 (+54.55%)
Mutual labels:  dns
ebook
Third edition of the Computer Networking: Principles, Protocols and Practice ebook
Stars: ✭ 64 (+93.94%)
Mutual labels:  dns
dns
DNS client & server package for Go
Stars: ✭ 38 (+15.15%)
Mutual labels:  dns
ansible-dnsmasq
Ansible role to set up Dnsmasq in Debian-like systems
Stars: ✭ 18 (-45.45%)
Mutual labels:  dns
pf4j-update
Update mechanism for PF4J
Stars: ✭ 56 (+69.7%)
Mutual labels:  update
dug
A global DNS propagation checker that gives pretty output. Written in dotnet core
Stars: ✭ 208 (+530.3%)
Mutual labels:  dns
gost
GO Simple Tunnel - a simple tunnel written in golang
Stars: ✭ 154 (+366.67%)
Mutual labels:  dns
DNS-Sinkhole-Lists-A2
A DNS Sinkhole List for testing purposes. (not for use in production systems) - UUID: 0f90ca2c-4b0a-4fbe-b659-449ab30c4284
Stars: ✭ 19 (-42.42%)
Mutual labels:  dns
go-multiaddr-dns
Go library and CLI tool for /dns4, /dns6, /dnsaddr multiaddr resolution
Stars: ✭ 24 (-27.27%)
Mutual labels:  dns
groot
Static verification tool for DNS zone files
Stars: ✭ 60 (+81.82%)
Mutual labels:  dns
noddos
Noddos client
Stars: ✭ 78 (+136.36%)
Mutual labels:  dns
SharpOffensiveShell
A sort of simple shell which support multiple protocols.
Stars: ✭ 71 (+115.15%)
Mutual labels:  dns
dnsfwd
DNS forwarder over a (TCP) virtual circuit
Stars: ✭ 21 (-36.36%)
Mutual labels:  dns
dnspod-api-php-web
DNSPod API PHP Web Example
Stars: ✭ 88 (+166.67%)
Mutual labels:  dns
dns4s
Scala DNS implementation with Akka and Netty extension
Stars: ✭ 55 (+66.67%)
Mutual labels:  dns

no-ip Build Status NPM Version Dependency Status JavaScript Style Guide Patreon donate button

Noip.com Dynamic DNS update client built in Node.js. It makes easy to remote access your connected devices!

Install

The easiest way to get no-ip is with npm:

$ npm install no-ip --save

or having it globally installed and used as a standalone tool:

$ npm install -g no-ip

Example usage

var NoIP = require('no-ip')

var noip = new NoIP({
  hostname: 'hello-world.ddns.net',
  user: '[email protected]',
  pass: 's3cr3tz'
})

noip.on('error', function(err){
  console.log(err)
})

noip.on('success', function(isChanged, ip){
  console.log(isChanged, ip)
})

noip.update() // Manual update, you can also provide a custom IP address

// noip.start() // start an automatic renewal every 1h by default or provide a custom ms.
// noip.stop() // stop the previously started automatic update

Events

.on('success', callback): The callback accepts two params isChanged and ip that gives you the current IP address your domain is currently pointing to and a boolean value indicating if an update was performed.

.on('error', callback): Called when an error occurs.

Methods

.update([ip]): Send an update request. Optionally you can provide a custom IP.

.start([ms]): Start an automatic renewal every 1h by default or provide a custom ms.

.stop(): Stop the automatic update.

.setOffline([boolean]): Sets the current host to offline status. Offline settings are an Enhanced / No-IP Plus feature. You should call the update method after this flag have been set.

.setIp([ip]): Set a custom IP Address for the update requests.

Standalone usage

If used standalone, I recommend you to start it with some process manager, like PM2.

$ no-ip -h hello-world.ddns.net -u hello -p s3cr3t -s

That start automatic DNS renewal once an hour. To see supported parameters and usage examples just type:

$ no-ip --help

Debug

This module makes use of the node DEBUG module. You can enable it setting the DEBUG env var to no-ip before the app starts:

$ DEBUG=no-ip

Author

Rocco Musolino (@roccomuso)

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].