bogQ Posted April 8, 2013 Posted April 8, 2013 (edited) Start by posting your code for server and client (and explain ip addresses that you use on server script, are you sure it's your network adapter?), then check what do http://www.yougetsignal.com/tools/open-ports/ display for your port and IP address and add the results on this post. Edited April 8, 2013 by bogQ TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
MrKris7100 Posted April 8, 2013 Author Posted April 8, 2013 (edited) Ok, This is my codes :Server:TCPStartup() $Socket = TCPListen("46.113.196.20", 1227) While 1 Local $ConnectedSocket = TCPAccept($Socket) If $ConnectedSocket >= 0 Then $recv = TCPRecv($ConnectedSocket, 2048) MsgBox(0,"Message",$recv) TCPCloseSocket($ConnectedSocket) EndIf WEndClient:TCPStartup() $ConnectedSocket = TCPConnect("46.113.196.20",1227) TCPSend($ConnectedSocket,"Test") Port 1227 is closed on 46.113.196.20.What's the problem? How to open port 1227?@According to this website, I have blocked every port...... Edited April 8, 2013 by MrKris7100
bogQ Posted April 8, 2013 Posted April 8, 2013 (edited) did you do ipconfig in cmd to check is that your network card IP address?! on "How to open port 1227", ask your ISP don't ask us, you're the one who told us that you're not behind any router and that your firewall is off. So reditect that question to your ISP (Internet Service Provider). Edited April 8, 2013 by bogQ TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
MrKris7100 Posted April 8, 2013 Author Posted April 8, 2013 (edited) I don't have network card... I'am using mobile internet... Why this website: http://www.yougetsignal.com/tools/open-ports/ says that I have closed all the ports?@I have this: Edited April 8, 2013 by MrKris7100
trancexx Posted April 8, 2013 Posted April 8, 2013 (edited) ^^ So once again, you need to do port forwarding. Open default gateway address in your browser and see if you can do port forwarding. If for example the page won't load then port forwarding won't be possible - obviously. If you would now ask what's default gateway then maybe you shouldn't be doing what you are trying at all. Edited April 8, 2013 by trancexx ♡♡♡ . eMyvnE
MrKris7100 Posted April 8, 2013 Author Posted April 8, 2013 Unfortunately, the default gateway does not open in a browser window ... :/
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now