<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/5239" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2003-08-16T15:31:38-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/5239</id>

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-08-16T15:31:38-04:00</updated>

		<published>2003-08-16T15:31:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25090#p25090</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25090#p25090"/>
		<title type="html"><![CDATA[Yes it works]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25090#p25090"><![CDATA[
good idea ! I would have never tought to do that.<br>It's works well, when I am home. But at school, I am behind a NAT too, and it will not work... anyway, great job <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"> and thx you a lot.<p>Statistics: Posted by Guest — Sat Aug 16, 2003 3:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rolandguy]]></name></author>
		<updated>2003-08-16T13:32:38-04:00</updated>

		<published>2003-08-16T13:32:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25084#p25084</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25084#p25084"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25084#p25084"><![CDATA[
ahh, damn, sorry about that...I've been basing making requests on a script I wrote that hooks up an eggdrop to a Services DCC connection...and eggy is listenening on the port :/  <br><br>ok, try 2 <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">  <br>disconnect from the chat server. in mIRC, go to:<br>options-&gt;Conenct-&gt;Local Info<br><br>set localhost and IP address to your *internal* IP.  UNCHECK the boxes for "On connect, always get:"<br><br>only problem with doing it this way is that you will be unable to DCC anyone else untill you log off, re-check the boxes, but will atleast get you a DCC connection...<br><br>what NAT software are you using?  there might be an easier way, but really depends on what options are available on the NAT...<br><br>roland<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3658">rolandguy</a> — Sat Aug 16, 2003 1:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-08-16T11:03:19-04:00</updated>

		<published>2003-08-16T11:03:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25066#p25066</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25066#p25066"/>
		<title type="html"><![CDATA[it s getting hard]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25066#p25066"><![CDATA[
Well, it try what you said. But &lt;IP&gt; is not a dotted ip address format, but a long ip address. So I write a small program to convert my internal ip address in long format (it's the inverse dotted ip address ie with 214.135.212.65 you need to convert 65.212.135.214...).<br>I can see in logs that dns resolve well the long ip address in the correct dotted ip one. But it doesn't work anymore...<br><br>I am getting crazy...<p>Statistics: Posted by Guest — Sat Aug 16, 2003 11:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rolandguy]]></name></author>
		<updated>2003-08-16T09:29:32-04:00</updated>

		<published>2003-08-16T09:29:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25061#p25061</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25061#p25061"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25061#p25061"><![CDATA[
syntax for DCC chat request:<br><div class="codebox"><p>Code: </p><pre><code>PRIVMSG &lt;target nick&gt; :\1DCC CHAT chat &lt;IP&gt; &lt;port&gt;\1</code></pre></div>where:<br>&lt;IP&gt; is the IP address you request that the target connect to<br>&lt;port&gt; is the port that they should connect to.<br><br>DCC requests are set up for the security of the user who is being asked to connect.  the actuall connection is opened by the target, not the person requesting.  the protocol requires that the target open a connection with that designated port at that designated IP, if the request is accepted.  because of the way NAT firewalls work, when the bot tries to open a connection to your external IP from inside, it fails.<br><br>basicly, DCC chat requests are just CTCP requests...and CTCP messages are just PRIVMSG (/msg)...mIRC and other clients just use the \1 character to signal a special meaning.<br><br>one good way to lear about how to form a DCC request (and be able to copy and paste it with the internal IP) is by using a debug window in mIRC.<br><br>/debug -np @moo<br><br>this gives you a raw view of all input and output for mIRC.<br><br>hope this helps make some sense of it all <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>roland<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3658">rolandguy</a> — Sat Aug 16, 2003 9:29 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-08-16T06:11:08-04:00</updated>

		<published>2003-08-16T06:11:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25054#p25054</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25054#p25054"/>
		<title type="html"><![CDATA[How do i do ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25054#p25054"><![CDATA[
I don't understand exactly why it doesn't work. I forward a range of ports to my PC (where mirc is running). So when a DCC Chat is requested, the request if forwarded to mirc (it works when the bot is on a remote computer not in the same NAT). And it doesn't work... But when I send a DCC Chat request, i send the IP i used to connect IRC Server, don't I ? So it's should be my external IP (when i whois me, i see my external IP).<br><br>Whatever, I would like to send my internal IP in DCC Chat but i didn't find how to do it.<p>Statistics: Posted by Guest — Sat Aug 16, 2003 6:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rolandguy]]></name></author>
		<updated>2003-08-16T04:12:41-04:00</updated>

		<published>2003-08-16T04:12:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25048#p25048</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25048#p25048"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25048#p25048"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>ahh, k, I follow then...try this from behind your NAT:<br><br>/quote PRIVMSG botnick :\1DCC CHAT chat 192.xx.xx.xx 6661\1<br><br>where 192.xx.xx.xx is your *internal* NAT IP ( the \1 is ascii character 0x001...^A I think in mIRC?)<br><br>let me know it it works...have a few other tricks lol<br><br>roland</div></blockquote>No, nice try but it doesn't work. mirc send my external address IP for the dcc chat. no way to put my internal IP on the fly...<br><br>But I think (I hope...) the solution is in eggdrop side, not mirc.</div></blockquote>that's what I'm saying, mIRC is sending your external IP.  you will *have* to send the dcc request manually using your internal IP - mIRC has no way of knowing that the bot is on the same side of the NAT as you, and neither does the bot, because the message you are sending it is coming from outside the NAT (the chat server).<br><br>did you even try it?<br><br>roland<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3658">rolandguy</a> — Sat Aug 16, 2003 4:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dedan]]></name></author>
		<updated>2003-08-15T22:05:58-04:00</updated>

		<published>2003-08-15T22:05:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25038#p25038</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25038#p25038"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25038#p25038"><![CDATA[
Maybe you need to do some port forwarding<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3472">Dedan</a> — Fri Aug 15, 2003 10:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-08-15T20:54:33-04:00</updated>

		<published>2003-08-15T20:54:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25035#p25035</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25035#p25035"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25035#p25035"><![CDATA[
<blockquote class="uncited"><div>ahh, k, I follow then...try this from behind your NAT:<br><br>/quote PRIVMSG botnick :\1DCC CHAT chat 192.xx.xx.xx 6661\1<br><br>where 192.xx.xx.xx is your *internal* NAT IP ( the \1 is ascii character 0x001...^A I think in mIRC?)<br><br>let me know it it works...have a few other tricks lol<br><br>roland</div></blockquote>No, nice try but it doesn't work. mirc send my external address IP for the dcc chat. no way to put my internal IP on the fly...<br><br>But I think (I hope...) the solution is in eggdrop side, not mirc.<p>Statistics: Posted by Guest — Fri Aug 15, 2003 8:54 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rolandguy]]></name></author>
		<updated>2003-08-14T20:01:06-04:00</updated>

		<published>2003-08-14T20:01:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24972#p24972</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24972#p24972"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24972#p24972"><![CDATA[
ahh, k, I follow then...try this from behind your NAT:<br><br>/quote PRIVMSG botnick :\1DCC CHAT chat 192.xx.xx.xx 6661\1<br><br>where 192.xx.xx.xx is your *internal* NAT IP ( the \1 is ascii character 0x001...^A I think in mIRC?)<br><br>let me know it it works...have a few other tricks lol<br><br>roland<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3658">rolandguy</a> — Thu Aug 14, 2003 8:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-08-14T19:16:38-04:00</updated>

		<published>2003-08-14T19:16:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24969#p24969</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24969#p24969"/>
		<title type="html"><![CDATA[I explain better]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24969#p24969"><![CDATA[
|IRC server| <br>| <br>|________|NAT BOX|---|EggDrop on Nat Box|<br> \ <br>  \ <br>   |Me with mIRC|<br><br>It s the exact archi that I use. A eggdrop (1.6.15) is running on my NAT box (Debian).<br>And when I am behind my NAT Box or behind another NAT (at my office for example), it's the same problem: <div class="codebox"><p>Code: </p><pre><code>In logs: [01:14] DCC connection: CHAT (Me!~me@myip.com)[01:14] net: connect! sock 9[01:14] net: eof!(read) socket 9[01:14] Lost dcc connection to Me (~eppo@myip.com/4026)</code></pre></div>But when I am on a remote computer (a NAT box for example), it works, i access to the party line<p>Statistics: Posted by Guest — Thu Aug 14, 2003 7:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rolandguy]]></name></author>
		<updated>2003-08-14T16:51:26-04:00</updated>

		<published>2003-08-14T16:51:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24958#p24958</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24958#p24958"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24958#p24958"><![CDATA[
<blockquote class="uncited"><div> <br>yes but there's a connection track module in linux kernel which let use ftp and irc connection through NAT box. Doesn't work ?</div></blockquote>let me make sure we're on the same page here :/  I get confused easy <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>|IRC server|<br>      |                                 <br>      |________|NAT BOX|<br>                           /\<br>                         /    \<br>         |mIRC|__/       \__|Egg|<br><br><br>mIRC client machine and Egg are both behind NAT, seperate machines?  Then would beed to send a modified DCC Chat request, using the internal IP of the mIRC client machine.  that way, the egg knows not to try to connect to the NAT itself, which is the only computer in of the network that actually has that external IP.<br><br>*scratches head....*  I think that's what you're question was lol <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>roland<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3658">rolandguy</a> — Thu Aug 14, 2003 4:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[]Kami[]]></name></author>
		<updated>2003-08-14T16:21:23-04:00</updated>

		<published>2003-08-14T16:21:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24954#p24954</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24954#p24954"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24954#p24954"><![CDATA[
I haid nearly same problem.. I alway chat with egg, so i click icon in script for DCCchat and then i put nick in and the chan, now my bot arent responding (This is about 2 weeks), and im useing command <strong class="text-strong">/ctcp botnick chat</strong>.<br><br>Greetings  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3559">]Kami[</a> — Thu Aug 14, 2003 4:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-08-14T16:10:51-04:00</updated>

		<published>2003-08-14T16:10:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24951#p24951</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24951#p24951"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24951#p24951"><![CDATA[
<blockquote class="uncited"><div>if both you and your bot are behind the same NAT, you would use the internal IP to dcc chat.  what's happening is you are connecting to an external IRC server, so sending your external IP in the dcc request.  but you are not external to the bot...<br><br>roland</div></blockquote>yes but there's a connection track module in linux kernel which let use ftp and irc connection through NAT box. Doesn't work ?<p>Statistics: Posted by Guest — Thu Aug 14, 2003 4:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rolandguy]]></name></author>
		<updated>2003-08-14T12:56:15-04:00</updated>

		<published>2003-08-14T12:56:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24927#p24927</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24927#p24927"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24927#p24927"><![CDATA[
if both you and your bot are behind the same NAT, you would use the internal IP to dcc chat.  what's happening is you are connecting to an external IRC server, so sending your external IP in the dcc request.  but you are not external to the bot...<br><br>roland<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3658">rolandguy</a> — Thu Aug 14, 2003 12:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-08-14T08:43:41-04:00</updated>

		<published>2003-08-14T08:43:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=24906#p24906</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=24906#p24906"/>
		<title type="html"><![CDATA[DCC Chat not working]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=24906#p24906"><![CDATA[
<blockquote class="uncited"><div>well if you are on NAT.. and trying to dcc chat it from the same box the bot runs on..  Then telnet is your best friend....</div></blockquote>That's mean that if you are behind your NAT box and the egg on that NAT box, you can't DCC Chat ??<br>That's annoying...<br>is there a solution except dawn telnet ?<p>Statistics: Posted by Guest — Thu Aug 14, 2003 8:43 am</p><hr />
]]></content>
	</entry>
	</feed>
