Slashdot Mirror


Web Enabled Spacecraft

gilgsn writes "Yahoo has an article from space.com about a satellite which will be operated by FTP over TCP/IP on the Internet! The CHIP (Cosmic Hot Interstellar Plasma Spectrometer) spacecraft will examine the stuff between stars, the so-called void of space that is actually rich with hot gas. The choice of protocol was dictated by economics. I wonder what OS it will run and if communications will be encrypted?"

17 of 236 comments (clear)

  1. Pity about no www server by garbs · · Score: 5, Funny

    Though they may have anticpated the slashdot effect.

    1. Re:Pity about no www server by arvindn · · Score: 5, Funny

      It should be obvious why there is no www server. www is world wide web: So you can't use from space :)

  2. did you say FTP? by Anonymous Coward · · Score: 5, Funny

    Watch out: the RIAA will shut down the first Mp3 pirate server in space!

  3. Microsoft announces... by SmurfButcher+Bob · · Score: 5, Funny

    Windows SPACE! Service Pack 12.

    In other news, a satellite was taken over by a 5 year old...

    --

    help me i've cloned myself and can't remember which one I am

  4. I guess our company isn't too far off the mark... by los+furtive · · Score: 5, Interesting

    We were asked to come up with a fast cheap solution for getting two servers to keep in touch, and not have to change the company's firewall setup. Our solution was to use SOAP and JAXM, but our backup plan was to do everything via FTP...who knew we were in the same league as NASA?

    --

    I'm a writer, a poet, a genius, I know it. I don't buy software, I grow it.

  5. Why FTP? by drunkmonk · · Score: 5, Interesting

    Maybe it's just me, but doesn't it seem strange that it would be operated by FTP? I mean, one would think that being able to SSH to it and having a command prompt would be a lot more useful...

    Unless it's actually a cover and NASA is creating the first orbiting pr0n server :)

  6. FTP? by praedor · · Score: 5, Funny

    It wont take long for someone to crack the satellite. They will download images thinking to collect nice data about deep space but instead will find that some h@X0R has redirected their satellite to take a good close look at Natalie Portman.


    Or...the first DDoS initiated from space will soon be in the headlines.


    FTP? C'mon!

    --
    In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
  7. FTP!? by autopr0n · · Score: 5, Insightful

    Wow, I've never heard of FTP being used as a control protocol. Sure, HTTP might have been a bit much (although I doubt it. people have run webservers computers the size of matchheads. Even HTTP over a serial connection on an apple2). Why not use straight telnet with no options?

    And I wonder how this control works, do you CD into a spesifc cordinate of space to examine? Can you DIR the stars it can see to find which ones to look more closely at, and then GET the acual data?

    Hrm, actualy that would be kind of cool.

    --
    autopr0n is like, down and stuff.
  8. FTP and TCP/IP???? by amithv · · Score: 4, Interesting

    Couldn't they have picked better protocols? It seems to be me for reliability and performance that isn't the best of choices. There are alot of other protocols (XTP for example) that the government could have used instead. Although TCP/IP is so commonplace I wouldn't want my 15 million dollar satellite to depend on it.

    1. Re:FTP and TCP/IP???? by sploxx · · Score: 5, Informative

      There'is actually a proposal for a "space internet" where long ping times, high data loss etc. occur.

      It is called "Interplanetary Internet SIG":
      http://www.ipnsig.org/home.htm

      So... they do not use the common TCP/IP things, but their networking principle is closely related to IP.

  9. Got r00t? by RAMMS+EIN · · Score: 5, Funny

    What? No security through obscurity? I can hear the 5kr1p7 k1dd13z rejoicing...

    J. |_337 H4x0r: D00d$$$ I took control of da satelite man! See hoe |337 I am!!!
    J. |_3373r H4x0r: L00se, sux0r! I can make her spin round! Wheee! Wheeee!
    J. |_337 H4x0r: What are you doing idiot you're taking her down!!!
    J. |_3373r H4x0r: No way man. I'm much to |337 for that!! DAMMIT Windows crashed again! sux0rzzz!!!###

    [Sattelite falls down to Earth]

    --
    Please correct me if I got my facts wrong.
  10. PING by del_ctrl_alt · · Score: 5, Interesting

    Hope it has an IP address, It would be cool to ping something not on earth.

    1. Re:PING by Lumpy · · Score: 5, Informative

      amateur radio operatros can do this daily.

      I have "pinged" the dove sattelite at least 20 times in my life, Pinged and sent email to MIR, had a kind-of IRC chat with 2 different Space shuttle missions and have listened to my ping come back from the moon.

      ham radio, you get to do things that other only wish they could do.

      all of this was done at 144-148mhz with standard radio equipment and radio modem called a TNC. MIR was the easiest to contact.... moonbounce requires a friend with no wife and lots of money.

      --
      Do not look at laser with remaining good eye.
  11. Engineering Issues with Space Design by Effugas · · Score: 5, Interesting

    Serious kudos to these guys for the work they're doing! From what it sounds like, they're using FTP inside of either a IPSec or custom layer 2 encrypted tunnel -- once you've been wrapped by that, you're mostly OK (though FTP servers in general have had some pretty nasty growing pains).

    Some may be wondering why the use of FTP, instead of HTTP. Indeed, HTTP is a unified protocol capable of elegantly handling both (moderately) interactive command exchange and bulk data transfer. The problem is latency -- if this beast is going anywhere, there's going to be some significant (5-10 second, minimum) lag between issuing commands and receiving responses. In such an environment, you don't *want* interactive access; you want an elegant way of providing a series of commands and receiving a series of responses. FTP provides that -- among other things, while HTTP's capacity for downloading files is quite mature, anything more is asking a bit more of HTTP than it was designed.

    FTP has specific commands for machine interaction w/ the file server -- NLST provides a standard formatted directory of files, independent of the underlying implementation. By contrast, Apache dumps some HTML.

    WebDAV ("Web Folders) was meant to address complex file system operations under the rubrick of HTTP. Thus far, it hasn't been much of a success. It most likely never will be. Thus, FTP is used.

    But FTP is built on TCP, and this introduces a problem: The affects of latency upon the underlying TCP error handling protocol. TCP implementations are notoriously untuned for the case of high bandwidth, high latency. They're built to assume the lack of a response implies either congestion on the line or packets being dropped; either way, implementations tend to scale back. Significant work has been done to address this case, mostly on the behalf of Satellite systems (the ultimate in high latency, high bandwidth access). Mostly, the idea is to expand window size (the amount of data that each side is allowed to send before it must receive an acknowledgement) to match the amount of data that's literally hanging amidst space and time on its way to its receiver. But this is a very hard problem, one of the few that the architecture of TCP has quite a bit of trouble scaling to handle.

    NASA went to a bulk transfer protocol, partially because interactive performance across large distances is problematic. But the bulk transfer protocol itself is based upon an interactive error management protocol. It'd be interesting to repurpose an established protocol for error-handled bulk transfers for just this use...I'm certain one of the "reliable multicast" architectures out there would be an astonishingly elegant solution.

    That's not to say they made the wrong choice with FTP -- particularly if they tuned their stacks well, and encapsulated themselves amidst lower layer security, great job! Just that there's lots of work in this arena left to do.

    If I remember right, Vint Cerf and a couple of his colleagues were working on IP protocols suited for communication between Earth and Mars. We're talking *minutes* of latency! Now that'll be a hell of a hack :-)

    Yours Truly,

    Dan Kaminsky
    DoxPara Research
    http://www.doxpara.com

  12. Simplification for the general public by Goonie · · Score: 5, Interesting
    I think the point is that they're going to use TCP/IP as the basic communication protocol between the satellite and the ground. I think FTP was basically a "for-instance" they were using to describethe type of thing they would use - but, then again, there's no reason why they couldn't run an FTP server on the satellite for retrieving data (though I'd run SCP methinks...)

    Conceivably, you could even control the satellite by ssh'ing into it and running various command-line apps. If you wanted to be really cute, run a web server on the satellite and make it controllable with web forms... but that strikes me as just a little over-elaborate :)

    For security purposes, they mention using "standard commercial applications" to encrypt the link. Presumably that means they're running a VPN of some description. As an additional security measure, you'd presumably want to hide the thing behind a firewall and give it a non-global IP address (somewhere in the 192.168.*.*'s, presumably) so that it simply can't be reached from the wider internet, and then (if it was *really* necessary) set the firewall up so that the appropriate people can tunnel through.

    Actually, it would be interesting if we could get a /. interview with one of the people behind this satellite (and grill them about their security measures). Roblimo, are you listening?

    --

    Any sufficiently advanced technology is indistinguishable from a rigged demo
    --Andy Finkel (J. Klass?)
  13. Protocol choice by tigress · · Score: 5, Interesting

    Personally, I find it very intriguing that they've chosen FTP as the protocol, though it does make a lot of sense. Most of what the sattelite is intended to do will be done in a pre-determined manner. Very little will be done in real-time. As a result, most instructions will be able to be scripted, and FTP is an excellent way of uploading scripted instructions to the sattelite. TFTP would've been even better, had it not been for the lack of access controls.

    Now, that much said, when do you think we'll see the first DDoS of zombie spaceprobes? =)

  14. The International Space Station Already Has This by cybrpnk2 · · Score: 5, Interesting

    The Ground Systems Department at NASA Marshall Space Flight Center has a "new" system called Telescience Resource Kit (TReK) that allows experimenters to hook personal computers in their home labs up to experiments they are running aboard the International Space Station. The main entrance page is here, but most of the links are password protected...