|
|
|
|
![]() ![]() |
Dec 11 2007, 12:24 AM
Post
#1
|
|
|
PROGRAMMER(prō'grăm'ər)- n. An organism that converts caffeine into software. ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: [HOSTED] Posts: 903 Joined: 25-September 05 From: The dungeon deep below the foundation of trap17 Member No.: 12,251 |
I'm not much of a network guy, so I'm asking for help from all of you trap17 techies... I've got a network drive that can be accessed via ftp over the web but the only problem is I've got a dynamic IP address. At first I would just bookmark my IP address every day when I came home with my laptop but is there an easier way of getting that IP address?
Thanks |
|
|
|
Dec 11 2007, 02:25 AM
Post
#2
|
|
|
Converting one Penguin at a time. ![]() Group: [MODERATOR] Posts: 1,740 Joined: 22-June 05 From: The place where moving forward means moving backwards. Member No.: 8,528 ![]() |
search:whatismyip—this is what i do. Local scripts don't show my IP address. However, when i'm not on my network, i just check out my desktop widget.
|
|
|
|
Dec 11 2007, 02:44 AM
Post
#3
|
|
|
PROGRAMMER(prō'grăm'ər)- n. An organism that converts caffeine into software. ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: [HOSTED] Posts: 903 Joined: 25-September 05 From: The dungeon deep below the foundation of trap17 Member No.: 12,251 |
Yes I want to get my network IP when I am not on my home network. I'm not quite sure you linked the right thing for your desktop widget because it seems to be a theme?
|
|
|
|
Dec 11 2007, 02:48 AM
Post
#4
|
|
|
|||[ n00b King ]||| ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: [HOSTED] Posts: 591 Joined: 20-June 07 From: Auckland Member No.: 45,102 |
A few years back one of my tutors pointed out to me there was a program that will run on your local machine. It will get your ip and send it to a server. this server will hold a url name you sign up e.g yourname.dynamicip.com so all you would need to do is type in that url and it will automatically redierect it to your IP address. I cant reemember the name though its been a long time.
I think this is it http://www.dnsexit.com/Direct.sv?cmd=11 |
|
|
|
Dec 11 2007, 02:54 AM
Post
#5
|
|
|
Converting one Penguin at a time. ![]() Group: [MODERATOR] Posts: 1,740 Joined: 22-June 05 From: The place where moving forward means moving backwards. Member No.: 8,528 ![]() |
I'm not quite sure you linked the right thing for your desktop widget because it seems to be a theme? It's a SuperKaramba theme, yes. You need an operating system that supports KDE, unless you can find an alternative for Windows that provides the same information that my widget does. But it seems i misunderstood what you wanted, so nevermind. The only other solution i can think of is http://www.no-ip.com |
|
|
|
Dec 11 2007, 05:05 AM
Post
#6
|
|
|
PROGRAMMER(prō'grăm'ər)- n. An organism that converts caffeine into software. ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: [HOSTED] Posts: 903 Joined: 25-September 05 From: The dungeon deep below the foundation of trap17 Member No.: 12,251 |
Well I don't exactly want to register a domain name for this and both of your solutions seem to require this. This is only so when I take my laptop to my university I can access the network drive plugged into my router via FTP. I can access this by typing in ftp://myipaddress/directoryindrive, but the problem is I have a dynamic IP address that likes to randomly change every other day and it makes it very difficult to keep track of.
By the way @ truefusion, I'm running a mac, but I also dual boot ubuntu. But I would never run that horrid OS that shall not be mentioned, that you assumed I had. |
|
|
|
Dec 11 2007, 07:09 AM
Post
#7
|
|
|
apt-get moo ![]() Group: [MODERATOR] Posts: 1,914 Joined: 28-May 05 From: Hertfordshire, England Member No.: 7,593 ![]() |
As far as I remember, No-IP give you the option of a sub-domain ( http://username.no-ip.com/ ). You can then use that in the same way that you would use your IP address.
|
|
|
|
Feb 19 2008, 08:29 PM
Post
#8
|
|
|
Newbie [Level 2] ![]() ![]() Group: [HOSTED] Posts: 35 Joined: 16-February 08 From: bombay Member No.: 57,972 |
register a domain name for your IP address .....you can get a free account at DynDNS..then use a dynamic DNS update client to update your DNS automatically
you just have to remember the domain name...whenever your IP changes, the update client will register it automatically. This post has been edited by klusk: Feb 19 2008, 08:30 PM |
|
|
|
Feb 19 2008, 10:26 PM
Post
#9
|
|
|
Newbie [Level 2] ![]() ![]() Group: Members Posts: 32 Joined: 19-February 08 Member No.: 58,129 |
register a domain name for your IP address .....you can get a free account at DynDNS..then use a dynamic DNS update client to update your DNS automatically you just have to remember the domain name...whenever your IP changes, the update client will register it automatically. This is a great solution! although there are easier ways.... i notice your sig says you are a very adaptable programmer to many languages.... i'm sure you would know a solution then? oh well.... here's a decent one: If you leave your computer in idle at home (on, with a low power state) you can create a simple php script and redirect itself to the same page every hour or so (leave a web browser open on this page). In the page, have it use the fopen() and fwrite() command to write the $_SERVER['REMOTE_ADDR'] (your computer's ip) to a log file every refresh. once this log file is getting very large, simply clear it via FTP and upload a blank one, or with fwrite, use "a" so you can simply pop open FTP and delete it, and the next hour it will create a new one and start writing your ip to it again. then all you have to do it simply type in the url to the script's log file (like http://yoursite.com/iplog.txt) and view the latest one! hope this helps! |