rameshg Posted April 4, 2015 Share Posted April 4, 2015 The client server model using tcp ip is working fine in local network. Need help to transfer data over internet. Server address: Local $sIPAddress = "116.202.126.252" Local $iPort = 65432 Local $m = MyTCP_Server($sIPAddress, $iPort) Client address: Local $sIPAddress = "116.202.126.252" ; Local $iPort = 65432 ; MyTCP_Client($sIPAddress, $iPort) How can I configure ? Thanks Ramesh G Link to comment Share on other sites More sharing options...
JohnOne Posted April 4, 2015 Share Posted April 4, 2015 Forward your ports. rameshg 1 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
spudw2k Posted April 6, 2015 Share Posted April 6, 2015 (edited) Agreed, your WAN facing router will need to be configured to do port forwarding. That will allow an external address/port to properly connect to the NAT'd device on your internal network. You can even declare that particular ports forward to alternative ports on the internal LAN. For example, a port forward can be setup to allow an incoming connection on external_ip:2424 to redirect to internal_ip:65432 Edited April 6, 2015 by spudw2k rameshg 1 Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
rameshg Posted January 19, 2016 Author Share Posted January 19, 2016 Thank you guys ....now its working for me by forwarding ports Link to comment Share on other sites More sharing options...
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