I have an Arduino DUE+ Wiznet ioshield A, to provide Ethernet.
I want to make Arduino work as a TCP client, so I wanted to test Telnet client Example.
I use wiznet libraries.
The steps I follow are these:
Laptop:
Set the IP to 10.1.3.1, mask 255.255.255.0
Telnet server: in
Follow this instructions, not creating an account, to make telnet server run in windows.
Arduino DUE:
Modify Telnet Client Example sketch:
Modify Server IP to : laptop IP (10.1.3.1)
Modify IP to 10.1.3.200
Modify MAC address to the one that appear in the ioshield
Modify client.connect to port 23, telnet port
if (client.connect(server, 23)) {
Are you connecting via an Ethernet switch or directly using a crossover cable?
Does the telnet server work if you try to connect to it from another PC on the network?
Thanks for the replies,
I conect directly to my PC thanks to a crossover cable.
Libraries I donwloaded from wiznet github.
I have seen that there is a problem with Telnet, I'm not being able to run it in my PC I followed the guide to have it running, but when in cmd I write "telnet" it claims that it is not recognized as a command .
I test with AX1, and I was able to connect, but I have problems when trying to send data from client to server. From server (AX1), to client it seems to work.
I need some help, wich server can I use in my Windows laptop, simple and free one, that allows me to test my Arduino code? Seeing data received from the arduino client, etc.