- Account Name (typically this is your email address)
- Password for No-IP
- Host Name configured in No-IP
sudo apt-get install no-ipWhen the package is downloaded, you will want to create the configuration directory:
sudo mkdir /var/lib/noip2Once the configuration directory is created, you'll need to create a configuration file:
sudo joe /var/lib/noip2/noip2.confand when Joe opens, just enter in a space and save and exit. That will create the dummy file and you'll be then able to run:
sudo noip2 -Cwhich will run the configuration for NoIP2.
First you will be prompted to enter in the interface that has an external connection. In my case, since I'm running noip from my Ubuntu router it has two interfaces, my external connection is on eth1.
You will be prompted to first enter in your Account Name. Remember this is your email address. Then you will be prompted to enter in your password and finally it will register your host that is registered to your no-ip account.
Once the wizard is complete you should be dropped back to your Terminal prompt. Now the question is how do you know that it's running? For this you will want to check your logs. Run the following:
cat daemon.log | grep noipYou should see something like the following:
george@otani:/var/log$ cat daemon.log | grep noipThe "****.servehttp.com' will be replaced with whatever you specified as your own host within the configuration wizard and the xx.xx.xx.xxx will be the IP address that should be your external WAN IP address. You can confirm this by opening your router administration and comparing what you see in the logs to what's listed there as your WAN address. Or you can visit a webpage that will tell you what your external IP address is.
May 11 09:42:38 otani noip2[11343]: v2.1.7 daemon started with NAT enabled
May 11 09:42:38 otani noip2[11343]: ****.servehttp.com was already set to xx.xx.xx.xxx.
1 comments:
You can convert sudo joe command on sudo touch. Touch command make a file what is empty.
Post a Comment