From: Enrico M. <enr...@te...> - 2008-01-11 09:37:53
|
naveen t wrote: > I successfully installed libsipdht library. After > compiling sipdht-tools, i tried starting instances of > sipdht peer nodes which form the overlay network > according to these instructions in the SIP DHT > webpage. > > deploy some nodes participating in the DHT: > $ sipdht -p 6070 -s 10 > $ sipdht -p 6080 -s 10 sip:localhost:6070 > $ sipdht -p 6090 -s 10 sip:localhost:6080 It seems that you are using quite an outdated version; during the last year the efforts have focused on version2 (which btw should have been the only one available for download on sf page). However, if I recall correctly, at some point there where problems using the "localhost" name in URIs. I suggest to try with something like: $ sipdht -a 127.0.0.1 -p 6070 -s 10 $ sipdht -a 127.0.0.1 -p 6080 -s 10 sip:127.0.0.1:6070 $ sipdht -a 127.0.0.1 -p 6090 -s 10 sip:127.0.0.1:6080 I also suggest - even more warmly - to give a try to the new version available from http://sipdht.sourceforge.net/sipdht2/index.html -- Ciao, Enrico |