Forum Replies Created
-
AuthorPosts
-
Sweet! Thanks! I’ll try to set that up this weekend when I go home. Ya I alway wondered if that DNS Server role had anything to do with it. Looks like I’m messing around with that! Thanks for the replies Arris
The script you posted would also change the address bar to the ip address. as in, when you go to subdomain.domain.com it would change to your ip address. I’m looking for a way to mask the IP address, and leave the domain name intact. Do you know of any way to do this through Server? Otherwise it would be more related to DynDNS I think.
EDIT: Here’s a little Java program I wrote to make a text file containing your local IP address:
import java.io.*;
import java.net.*;
public class IPAddressWriter {
public static void main(String[] args) {
URL ipURL = null;
BufferedReader in = null;
try {
ipURL = new URL("http://whatismyip.org/");
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
in = new BufferedReader(new InputStreamReader(yahoo.openStream()));
BufferedWriter out = new BufferedWriter(new FileWriter("ip.txt"));
out.write(in.readLine());
out.close();
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}So, now I can schedule a Windows task to do an FTP transfer to my computer at home, so that leaves only one more hurdle: getting a subdomain redirected to that text file…
Here’s what I get when I choose “See details” or whatever. Any ideas?:
Problem signature:
Problem Event Name: APPCRASH
Application Name: explorer.exe
Application Version: 6.0.6001.18000
Application Timestamp: 47918e5d
Fault Module Name: kernel32.dll
Fault Module Version: 6.0.6001.18000
Fault Module Timestamp: 4791a76d
Exception Code: e06d7363
Exception Offset: 000442eb
OS Version: 6.0.6001.2.1.0.274.10
Locale ID: 1033
Additional Information 1: 2e76
Additional Information 2: 44e6a7f18312ed4ff6ac15f2aa63ea01
Additional Information 3: f586
Additional Information 4: 1214e78969616d0fcdb565e541d5edf0 -
AuthorPosts