On Mon, Jan 07, 2002 at 10:30:08PM -0500, Cory Harasym wrote: >--- Patrick Dughi <dughi@imaxx.net> wrote: >> > > Enterting Game Loop. >> > > No connectiosn going to sleep. >> > that means that it is running. >> > >> > try 'telnet localhost 4000' >> > >> > from a _DIFFERENT_ window. (= >> > >> Also, if you're trying to connect via IP >> address, you may have to >> insure that your ISP allows inbound connections on >> that port. After the >> recent problems with windows IIS virii and the sort, >> many ISPs are >> blocking many ports. >> >> PjD >> >Can you guys please help me this is pissing me >off...what would u do if you found that nothing was >working?! where would u go..what would u check pleasE! "telnet 127.0.0.1 4000" config.c: DFLT_IP="127.0.0.1" turn mud off, then: nc -v -l -p 4000 & telnet [your ip] 4000 telnet 127.0.0.1 4000 ask friend on internet to try telnet [your ip] 4000 ask friend on internet on a different node, subnet to telnet [your ip] 4000 disable your firewall (or at least rip a hole for tcp connections allowed to port 4k) iptables -A INPUT -p tcp --dport 4000 -j ACCEPT for example. make sure your router is forwarding them to the appropriate machine. make sure NAT/Masq is set up correctly. ...and whatever other very basic network connectivity checks you want to run. -- +---------------------------------------------------------------+ | FAQ: http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html | | Archives: http://post.queensu.ca/listserv/wwwarch/circle.html | | Newbie List: http://groups.yahoo.com/group/circle-newbies/ | +---------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 06/25/03 PDT