- -- - - - - - - - - - - - - - - - - - TrB.jpg Margaret.png Jkb.jpg JoeD.jpg Edbatchelor.jpg JimB.png DAD-TINT.JPG C03515.jpg

Difference between revisions of "NO-IP"

From Batchelor-s
Jump to navigationJump to search
m (Protected "NO-IP" ([edit=autoconfirmed] (indefinite)))
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
  
  
Need description here.
+
NO-IP is a Domain Name Service [[DNS]] provider
 +
 
 +
It can make your dynamic IP address appear to be static
 +
 
 +
 
 +
 
 +
Free version is a hassel every month to renew
 +
 
 +
or $30 yr in 2020
 +
 
 +
 
 +
 
 +
 
 +
 
 +
sudo bash
 +
 
 +
cd /usr/local/src/
 +
 
 +
wget http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz
 +
tar xf noip-duc-linux.tar.gz
 +
 
 +
cd noip-2.1.9-1/
 +
 
 +
make install
 +
 
 +
 
 +
Enter the email and password for the account you wish to connect the [[rpi]] to.
 +
 
 +
Next set the update interval with the default being 30 minutes.
 +
 
 +
(This checks to see if the IP has changed)
 +
 
 +
You can now also set something to run whenever the IP updates.
 +
 
 +
 
 +
 
 +
create NO-IP account
 +
---------------------
 +
 
 +
nano /etc/rc.local
 +
 
 +
/usr/local/bin/noip2
 +
 
 +
 
 +
start no-ip with the following command:
 +
 
 +
sudo /usr/local/bin/noip2
 +
 
 +
 
 +
Check the status with the following command:
 +
 
 +
sudo /usr/local/bin/noip2 -S
 +
 
 +
 
 +
close it using the following command. Replace pid with the pid from the -S command.
 +
 
 +
sudo /usr/local/bin/noip2 -K 'pid'
 +
 
 +
 
 +
copy file
 +
 
 +
sudo /usr/local/bin/noip2 -C
 +
 
  
  

Latest revision as of 03:27, 17 July 2020


NO-IP is a Domain Name Service DNS provider

It can make your dynamic IP address appear to be static


Free version is a hassel every month to renew

or $30 yr in 2020



sudo bash

cd /usr/local/src/

wget http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz tar xf noip-duc-linux.tar.gz

cd noip-2.1.9-1/

make install


Enter the email and password for the account you wish to connect the rpi to.

Next set the update interval with the default being 30 minutes.

(This checks to see if the IP has changed)

You can now also set something to run whenever the IP updates.


create NO-IP account


nano /etc/rc.local

/usr/local/bin/noip2


start no-ip with the following command:

sudo /usr/local/bin/noip2


Check the status with the following command:

sudo /usr/local/bin/noip2 -S


close it using the following command. Replace pid with the pid from the -S command.

sudo /usr/local/bin/noip2 -K 'pid'


copy file

sudo /usr/local/bin/noip2 -C






--