I'm investigating a solution. Basically I have a unit that must be remotely monitored. The unit itself has an rs-232 connection and ethernet too. However, for the tiny amount of data transfer needed (it sends temperatures), the rs-232 should suffice. I was thinking that I could attach this device to some sort of terminal server and then attach the server to the internet via a free dial-up, or perhaps a 64k leased line (it needs to be constantly monitored). Has anyone done such a thing? If so, any tips as to what to use as a terminal server? I realise this might be old hat to the rest of you, but I have no experience of this!
TIA Ricardo
If you have a user interface program for the probe then you could use VNC to remotely view the remote machines desktop
http://www.uk.research.att.com/vnc/
But that's not how I would do it I would try to figure out how your temperature probe presents it's data to the serial port, do you have detailed information on this bit ?
Does it for example simply output a continuous data stream with the temperature info or do you have to poll it somehow in order to request the current temperature.
One quick and dirty way would be if it presents a continuous data stream then it is fairly trivial to write a short script to cat /dev/ttyS0 (or whatever port you have it on), reformat the data (if required),write the finished data to a text file, wait (a short amount of time) and then repeat.
Then simply use Apache to publish the text file (after your script has perhaps padded it with a bit of html like adding the refresh meta tag so that the browser viewing the page keeps reloading it ) Job Done !
You could even add another script to monitor the dial up connection and reconnect if something causes the connection to drop.
Wayne