r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[All] except covered in other channels

Gabriele
7-Jan-2005
[435x3]
sunanda: you will have a key, that is a value inside a ring. your 
key (which could be the result of checksum/secure applied on your 
url, such as udp://my-ip:my-port, for example) is your location in 
the network.
if i know your key, i can find you.
if you key is the result of checksum/secure "Sunanda" i can easily 
get your key, and then find you.
Sunanda
7-Jan-2005
[438]
Gotcha, thanks -- I need a static URL....So basically it's a http-mediated 
communication?
Gabriele
7-Jan-2005
[439x3]
(this can't be done actually because it gives nodes the freedom to 
choose their key, which we don't want to do)
the URL is just an example. you just need a way to generate a key 
from who you are (could even be your public RSA key)
so that any other node can generate the same key when they look for 
you.
Pekr
7-Jan-2005
[442]
can Chord loook-up be tunneled across other protocols? :-) (although 
I am not sure if the question does make sense :-)
Gabriele
7-Jan-2005
[443x2]
what happens in practice is that node keys are handled internally 
(even assigned randomly) and then you implement a DHT over Chord 
to allow for "user friendly" look up
so i look up "Sunanda" in the DHT and get the node key (or the node 
ip address or whatever) as a result.
Sunanda
7-Jan-2005
[445]
I'm still confused then.

Suppose you create a new Altme -type world. I join it. We're both 
on dial-up. We both log off for the night.

I go to an Internet cafe (ie a different machine) and want to logon 
to the Altmt-type world as me.
How do I find you? How do you know its me?
Gabriele
7-Jan-2005
[446]
Petr: if you worry about filrewalls and NAT - that can be solved.
Pekr
7-Jan-2005
[447]
exactly ...
Gabriele
7-Jan-2005
[448x5]
i know it's you by your authorization. this could be your RSA signature.
petr: i'm going to implement nat traversal after Chord, using relays 
when needed (relay nodes get lookep up via Chord)
that's why messaging.r supports HTTP too, so that you can use it 
to bypass firewalls etc.
Sunanda: to explain correctly how it can be made to work requires 
quite a lot of writing :)
Sunanda: I can provide you the relevant papers about all this stuff.
Pekr
7-Jan-2005
[453]
well, it still does not solve transport ... Let's suppose you have 
kind of IOS, you want to connect between various servers, to various 
networks, as IRC, Jabber, etc., so you could use Chord to find something, 
but then you still need those protocols etc.
Gabriele
7-Jan-2005
[454]
is transport a problem? :-)
Pekr
7-Jan-2005
[455x3]
well, I understand how rigid things as Uniserve works - multiplexing 
engine, various protocols/services and handlers installed .. so you 
can run http server, irc client, messenger client etc., dynamically. 
 I don't understand, how Chord would be usefull in such case for 
e.g.
... as another side has to support it too ...
so if I understand it correctly, it is good for new products, but 
not for connecting to existing infrastructures ...
Gabriele
7-Jan-2005
[458]
if you think about a client-server architecture, of course Chord 
is not useful :-)
Pekr
7-Jan-2005
[459]
can you imagine IOS as non client-server = P2P architecture?
Gabriele
7-Jan-2005
[460x2]
Yes, it is possible. I can actually imagine a distributed operating 
system, where the whole Internet is seen as one single computer.
dinner time, later!
Pekr
7-Jan-2005
[462x3]
... interesting - bittorent site Suprnova.org was killed, although 
I think that RIAA and other monopol orgs are crossing law here - 
IMO Suprnova did nothing illegal. I am glad it leads to anarchy ;-) 
Now Suprnova is back with Exeem, kind of P2P system for distribution 
of Torrent links and RIAA guys are finished here :-)
wonder what Exeem uses, maybe Chord too :-)
do you know XOR based Kademlia? http://citeseer.ist.psu.edu/529075.html
eFishAnt
7-Jan-2005
[465]
yes, every computer is a resource in the internet operating system...
Graham
7-Jan-2005
[466]
Is there a one paragraph summary of what the above discussion is 
all about?
eFishAnt
7-Jan-2005
[467]
its all about 3k
Gabriele
7-Jan-2005
[468]
Graham, I just asked for comments on http://www.colellachiara.com/soft/Libs/messaging.r
Graham
7-Jan-2005
[469x2]
It's a messaging framework?
How does Chord relate to it?
Gabriele
7-Jan-2005
[471x3]
My implementation to Chord is going to use it.
to = of
the discussion switched to chord because I also asked if anyone was 
interested in a function i wrote for chord, IN-INTERVAL?
Graham
7-Jan-2005
[474]
do you have demonstration of how this works?
Gabriele
7-Jan-2005
[475x2]
you mean messaging.r ?
actually i hope the documentation is enough; if it is not, i'll be 
happy to improve it.
Graham
7-Jan-2005
[477]
some of need simple examples to get us started :(
Gabriele
7-Jan-2005
[478x4]
hmm, on one computer:
handlers/insert-func 
    func [message] [
        if parse message ['ping set message date!] [
            reduce ['pong message]
        ]
    ]

listen-messages udp://:10000
on another:
send-message udp://otherhost:10000 reduce ['ping now/precise]
Graham
7-Jan-2005
[482]
are you going or do you have encryption?
Gabriele
7-Jan-2005
[483x2]
will be there, i've been struggling on a couple design decisions 
about it.
encryption and authentication/authorization.