[freenet-support] Can't receive any Freenet data

2003-11-14 Thread kreuzritter2000
Hello,

today i wanted to take a look at freenet but when i started it,
it didn't get any data from the freenet network.

My freenet computer is behind a router that has a firewall.
I configured it like the FAQ said, but still no sucess.

Here is my network configuration:
router local IP = 192.168.100.10
router network device to the internet = ppp0
router network device to the local net = eth0
freenet computer IP in my local net = 192.168.100.8
freenet port number = 23030
Normally i get a dynmic ip address, but i solved that
by manually giving the current internet ip of my router to the freenet 
programm at start time.


Those are the iptables firewall rules i used for accesing freenet:
iptables -A FORWARD -j ACCEPT -o ppp0 -p tcp \
-s 192.168.100.8 --sport 1024: --dport 23030 -m state --state 
NEW,ESTABLISHED,RELATED

iptables -A FORWARD  -j ACCEPT -i ppp0 -p tcp \
--sport 23030 -d 192.168.100.8 -m state --state 
ESTABLISHED,RELATED

iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 23020 -j DNAT --to-dest 
192.168.100.8


Everything else is closed (typicall services like http, smp etc. is allowed of 
course). Because the FAQ speaks only about TCP the UDP protocoll is 
not alloed on this port number 23030.



I also tried it by adding the following rules to the ones above:
iptables -A FORWARD  -j ACCEPT -i ppp0 -p tcp \
--dport 23030 -m state --state NEW,ESTABLISHED,RELATED
iptables -A FORWARD -j ACCEPT -o ppp0 -p tcp \
--sport 23030 -m state --state ESTABLISHED,RELATED



Can someone tell me what is wrong with that?
Where is the mistake in the firewall rules?

Best Regards,
 Oliver C.



___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support


[freenet-support] how to connect if the port 8888 is closed

2003-11-14 Thread carpe.noctem001
ok, perhaps it's a stupid question, but I couldn't find an answer in the archive, so I 
have 
to ask it:
I got in a network with some closed ports, the only ports left open are

tcp 20, 21  
tcp 22  
tcp 23  
tcp 25  
tcp 53  
udp 53  
tcp 79  
tcp 80  
tcp 110 
tcp 113 
tcp 119 
udp 123 
tcp 443 
tcp 465 
tcp 487 
tcp 750-752 
tcp 993 
tcp 995 
tcp 6000-6063   
tcp -6668   
udp 4000
tcp 8080

is there any chance, that I can use Freenet with this ports, or am I dammed to life 
the next 2 years without it?

If you have an idea how it could work or even a solution, please let me know:
[EMAIL PROTECTED]
__
WEB.DE FreeMail wird 5 Jahre jung! Feiern Sie mit uns und
nutzen Sie die neuen Funktionen http://f.web.de/features/?mc=021130

___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support


Re: [freenet-support] how to connect if the port 8888 is closed

2003-11-14 Thread Toad
Freenet can be configured to run on any port. Just set listenPort=20 (or
whatever) in your freenet.ini (or freenet.conf in unix) file. There will
already be a line saying listenPort= (X is some randomly generated
port number), overwrite it. Then restart Freenet. If you haven't set up
a node yet, the installer may ask you which port to run it on.

The user interface is by default on port , you probably don't want
to change that. The listenPort is the port it uses to talk to other
Freenet nodes. Good luck.

On Fri, Nov 14, 2003 at 12:50:33PM +0100, [EMAIL PROTECTED] wrote:
 ok, perhaps it's a stupid question, but I couldn't find an answer in the archive, so 
 I have 
 to ask it:
 I got in a network with some closed ports, the only ports left open are
 
 tcp 20, 21
 tcp 22
 tcp 23
 tcp 25
 tcp 53
 udp 53
 tcp 79
 tcp 80
 tcp 110   
 tcp 113   
 tcp 119   
 udp 123   
 tcp 443   
 tcp 465   
 tcp 487   
 tcp 750-752   
 tcp 993   
 tcp 995   
 tcp 6000-6063 
 tcp -6668 
 udp 4000  
 tcp 8080  
 
 is there any chance, that I can use Freenet with this ports, or am I dammed to life 
 the next 2 years without it?
 
 If you have an idea how it could work or even a solution, please let me know:
 [EMAIL PROTECTED]
 __
 WEB.DE FreeMail wird 5 Jahre jung! Feiern Sie mit uns und
 nutzen Sie die neuen Funktionen http://f.web.de/features/?mc=021130
 
 ___
 Support mailing list
 [EMAIL PROTECTED]
 http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support

-- 
Matthew J Toseland - [EMAIL PROTECTED]
Freenet Project Official Codemonkey - http://freenetproject.org/
ICTHUS - Nothing is impossible. Our Boss says so.


signature.asc
Description: Digital signature
___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support

[freenet-support] Errors and stange cache behavior...

2003-11-14 Thread James S. White
I'm not sure what the error reporting procedure is, but...

Waited more than 200ms to dequeue, 17 in queue, 2077 millis since enqueued last item, 
58031 maximum waits so far - could indicate serious JVM bug. Please report to [EMAIL 
PROTECTED] along with JVM and OS/kernel.

JVM: Sun j2re1.4.2_01
 Kernel: Linux version 2.6.0-test8
Freenet: Unstable build 6335

I'm on a T1 with an 75GB store running at 98%-100% capacity
If there is more informatio I can provide, Let me know what and how.
If this error is normal, I'd like to know that too.

Also I've notice some freenet pages are not retrieveable after I have
alresdy loaded them. My store is only at 4% capacity, should freenet
be forgetting the pages it has loaded when the cache is not even close
to full?

Keep in mind I'm not a expert on how the freenet store is used, so I
apologize in advance if any of my questions are 'stupid'.

TIA.

--
James S. White  GAPS Incorporated
[EMAIL PROTECTED]Electrical Engineer - Etc.
http://www.jameswhite.org   Caffeine is my anti-drug.
--
If you think education is expensive, try ignorance - Derek Bok


___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support


Re: [freenet-support] Can't receive any Freenet data

2003-11-14 Thread Toad
On Fri, Nov 14, 2003 at 09:39:18AM +, [EMAIL PROTECTED] wrote:
 Hello,
 
 today i wanted to take a look at freenet but when i started it,
 it didn't get any data from the freenet network.

This is sadly a common first user situation.
Exactly what happened? Did you try to fetch the links on the Web
Interface page? Even under ideal conditions a node takes a while to
become fully functional (current estimates are around 24 hours for a
node to be reasonably useful).
 
 My freenet computer is behind a router that has a firewall.
 I configured it like the FAQ said, but still no sucess.
 
 Here is my network configuration:
 router local IP = 192.168.100.10
 router network device to the internet = ppp0
 router network device to the local net = eth0
 freenet computer IP in my local net = 192.168.100.8
 freenet port number = 23030
 Normally i get a dynmic ip address, but i solved that
 by manually giving the current internet ip of my router to the freenet 
 programm at start time.

I note that you haven't showed the external internet address of the
router. Did you add it to the freenet.conf file?:
ipAddress=82.65.12.3
or
ipAddress=amphibian.dyndns.org
[ using dyndns is a common solution for such setups, they are a free
dynamic DNS provider, www.dyndns.org ]

Also, did you remove the % at the beginning of the line?
 
 
 Those are the iptables firewall rules i used for accesing freenet:
 iptables -A FORWARD -j ACCEPT -o ppp0 -p tcp \
 -s 192.168.100.8 --sport 1024: --dport 23030 -m state --state 
 NEW,ESTABLISHED,RELATED
 
 iptables -A FORWARD  -j ACCEPT -i ppp0 -p tcp \
 --sport 23030 -d 192.168.100.8 -m state --state 
 ESTABLISHED,RELATED
 
 iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 23020 -j DNAT --to-dest 
 192.168.100.8

Ok. Tell me your IP address and I will check connectivity. Or come to
#freenet on irc.freenode.net, we will see if we can help you.
 
 
 Everything else is closed (typicall services like http, smp etc. is allowed of 
 course). Because the FAQ speaks only about TCP the UDP protocoll is 
 not alloed on this port number 23030.

That's correct.
 
 
 
 I also tried it by adding the following rules to the ones above:
 iptables -A FORWARD  -j ACCEPT -i ppp0 -p tcp \
 --dport 23030 -m state --state NEW,ESTABLISHED,RELATED
 iptables -A FORWARD -j ACCEPT -o ppp0 -p tcp \
 --sport 23030 -m state --state ESTABLISHED,RELATED
 
 
 
 Can someone tell me what is wrong with that?
 Where is the mistake in the firewall rules?

I do not know if it is a firewall rules problem. Check the Open
Connections page, do you have incoming connections?
 
 Best Regards,
  Oliver C.
-- 
Matthew J Toseland - [EMAIL PROTECTED]
Freenet Project Official Codemonkey - http://freenetproject.org/
ICTHUS - Nothing is impossible. Our Boss says so.


signature.asc
Description: Digital signature
___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support

Re: [freenet-support] Errors and stange cache behavior...

2003-11-14 Thread Toad
On Fri, Nov 14, 2003 at 04:54:41PM -0600, James S. White wrote:
 I'm not sure what the error reporting procedure is, but...
 
 Waited more than 200ms to dequeue, 17 in queue, 2077 millis since enqueued last 
 item, 58031 maximum waits so far - could indicate serious JVM bug. Please report to 
 [EMAIL PROTECTED] along with JVM and OS/kernel.

Another one. :(
 
 JVM: Sun j2re1.4.2_01
  Kernel: Linux version 2.6.0-test8
 Freenet: Unstable build 6335
 
 I'm on a T1 with an 75GB store running at 98%-100% capacity

Cool!

 If there is more informatio I can provide, Let me know what and how.
 If this error is normal, I'd like to know that too.

Sadly it is. We don't know why. But maybe something to do with
threading.
 
 Also I've notice some freenet pages are not retrieveable after I have
 alresdy loaded them. My store is only at 4% capacity, should freenet
 be forgetting the pages it has loaded when the cache is not even close
 to full?

If the cache is less than 90% full, it should not forget stuff. However,
were these requests for freesites? Were they around 0:00 GMT? A lot of
freesites are 'date based redirect', which means they get forgotten at
midnight - a new edition must be published each day.
 
 Keep in mind I'm not a expert on how the freenet store is used, so I
 apologize in advance if any of my questions are 'stupid'.
 
 TIA.
 
 --
 James S. White  GAPS Incorporated
 [EMAIL PROTECTED]Electrical Engineer - Etc.
 http://www.jameswhite.org   Caffeine is my anti-drug.
 --
 If you think education is expensive, try ignorance - Derek Bok
-- 
Matthew J Toseland - [EMAIL PROTECTED]
Freenet Project Official Codemonkey - http://freenetproject.org/
ICTHUS - Nothing is impossible. Our Boss says so.


signature.asc
Description: Digital signature
___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support

Re: [freenet-support] Errors and stange cache behavior...

2003-11-14 Thread James S. White
 Sadly it is. We don't know why. But maybe something to do with
 threading.

Ok, good to know.

 If the cache is less than 90% full, it should not forget stuff. However,
 were these requests for freesites? Were they around 0:00 GMT? A lot of
 freesites are 'date based redirect', which means they get forgotten at
 midnight - a new edition must be published each day.

Now that I think about it, they could be. Thanks for the sanity check.

--
James S. White  GAPS Incorporated
[EMAIL PROTECTED]Electrical Engineer - Etc.
http://www.jameswhite.org   Caffeine is my anti-drug.
--
If you think education is expensive, try ignorance - Derek Bok

On Fri, 14 Nov 2003, Toad wrote:


___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support


[freenet-support] Newbie: can't start Freenet (Could not initialize network I/O system)

2003-11-14 Thread Shen Ming Xuan
Hello,

I have just downloaded  installed Freenet 0.5.2.7, started it and got this
error on freenet startup:
-
Could not initialize network I/O system! Exiting
java.io.IOException: Unable to establish loopback connection
   at sun.nio.ch.PipeImpl$Initializer.run(Unknown Source)
   at java.security.AccessController.doPrivileged(Native Method)
   at sun.nio.ch.PipeImpl.init(Unknown Source)
   at sun.nio.ch.SelectorProviderImpl.openPipe(Unknown Source)
   at java.nio.channels.Pipe.open(Unknown Source)
   at sun.nio.ch.WindowsSelectorImpl.init(Unknown Source)
   at sun.nio.ch.WindowsSelectorProvider.openSelector(Unknown Source)
   at java.nio.channels.Selector.open(Unknown Source)
   at 
freenet.transport.AbstractSelectorLoop.init(AbstractSelectorLoop.java:111)
   at 
freenet.transport.ThrottledSelectorLoop.init(ThrottledSelectorLoop.java:72)
   at freenet.transport.ReadSelectorLoop.init(ReadSelectorLoop.java:73)
   at 
freenet.transport.tcpConnection.startSelectorLoops(tcpConnection.java:83)
   at freenet.node.Main.startNode(Main.java:1374)
   at freenet.node.Main.main(Main.java:1004)
Caused by: java.net.ConnectException: Connection refused: connect
   at sun.nio.ch.Net.connect(Native Method)
   at sun.nio.ch.SocketChannelImpl.connect(Unknown Source)
   at java.nio.channels.SocketChannel.open(Unknown Source)
---

I have Windows 2000 SP4 and Java 1.4.2, I found other messages
in the support mailinglist archives but none had the solution...
my hosts file is OK, I have an ADSL network modem.
One more question, how do I share my files? In which (sub)dir
do I put my share stuff?...
___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support


Re: [freenet-support] Can't receive any Freenet data

2003-11-14 Thread kreuzritter2000
 This is sadly a common first user situation.
 Exactly what happened? Did you try to fetch the links on the Web
 Interface page? Even under ideal conditions a node takes a while to
 become fully functional (current estimates are around 24 hours for a
 node to be reasonably useful).

24 hours are a long time for just a single connection.
I allways get the following error:

Couldn't Retrieve Key  
Couldn't connect to the network. Are you sure you have configured Freenet 
correctly? Also make sure that you are connected to the internet.

when trying to connect to a freenet link like: 
http://127.0.0.1:/[EMAIL PROTECTED]/TFE//?htl=15try=3



 I note that you haven't showed the external internet address of the
 router. Did you add it to the freenet.conf file?:
 ipAddress=82.65.12.3
 or
 ipAddress=amphibian.dyndns.org
 [ using dyndns is a common solution for such setups, they are a free
 dynamic DNS provider, www.dyndns.org ]


I didn't showed it because the external ip changes allways automatically
after the login to my ISP.
I just started the router and then i used the IP the router get from the ISP 
after the login in the freenet.conf file, after editing the freenet.conf file 
with the new ip i started freenet.



 Also, did you remove the % at the beginning of the line?

No sorry i forgot it.
But i removed it a few minutes ago and tried it again but still no success.
I still get the above mentioned error message.
Do i really have to wait 24 hours for the first connection success message?



  Those are the iptables firewall rules i used for accesing freenet:
  iptables -A FORWARD -j ACCEPT -o ppp0 -p tcp \
  -s 192.168.100.8 --sport 1024: --dport 23030 -m state
  --state NEW,ESTABLISHED,RELATED
 
  iptables -A FORWARD  -j ACCEPT -i ppp0 -p tcp \
  --sport 23030 -d 192.168.100.8 -m state --state
  ESTABLISHED,RELATED
 
  iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 23020 -j DNAT
  --to-dest 192.168.100.8

 Ok. Tell me your IP address and I will check connectivity. Or come to
 #freenet on irc.freenode.net, we will see if we can help you.

Ok i just tested on the Shield UP website (a port scanner - http://grc.com/ ) 
if the port 23030 is open. 
The results where:

Port: 23030 
Status: Open
Protocol and Application: Unknown Protocol for this port
Unknown Application for this port

Seems to me that this is working.




 I do not know if it is a firewall rules problem. Check the Open
 Connections page, do you have incoming connections?

No, the Open Connection page shows the following:

Connections open (Inbound/Outbound/Limit) 0 (0/0/512)
Connections transferring (Receiving/Transmitting) 0 (0/0)
Bytes waiting to be sent None

Best Regards,
  Oliver C.

___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support


[freenet-support] Beginner... all I get is Waiting for 127.0.0.1...

2003-11-14 Thread Art Charbonneau



Hi,

I've managed to get as far as the 'Freenet Help Index', and I'm 
experiencing lots of node activity, but when I attempt to get into, say, 
'Freenet Movies' (or a dozen other links) all I get is an interminable "waiting 
for 127.0.0.1..." message.

Well, I've also received a "Key not found" message when I tried "Enter here 
at your own risk" link at the bottom of "The Freedom Engine" intro page.

Also, how does one increase the bandwidth in Netscape 7.1? (The node 
information page comlplains of low bandwidth.)

Thanks, in advance, for helping me get started.

Art

___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support

[freenet-support] Stable 5033

2003-11-14 Thread Toad
Freenet stable build 5033 is now available. Upgrade from the snapshots:
http://freenetproject.org/snapshots/freenet-latest.jar , or use
update.sh or freenet-webinstall.exe. The only change in this build is to
be compatible with (i.e. not choke on) the new seednodes format, which
includes an extra field (estimator information) so that nodes which
understand the format (5033 doesn't understand it, it ignores it, but
the unstable builds understand it, and 5034 will understand it), can get
started successfully routing as soon as possible, using the routing
information captured by the seednode sources. This technology will be
merged to the stable branch soon and is currently available from the
unstable branch, along with a range of related improvements that we have
not yet adequately tested, which will be merged when we believe they are
ready for wider consumption.
-- 
Matthew J Toseland - [EMAIL PROTECTED]
Freenet Project Official Codemonkey - http://freenetproject.org/
ICTHUS - Nothing is impossible. Our Boss says so.


signature.asc
Description: Digital signature
___
Support mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support