Borrar filtros
Borrar filtros

Establishing a Telnet Connection with a Password

51 visualizaciones (últimos 30 días)
Javier Garcia
Javier Garcia el 21 de Feb. de 2022
Respondida: Sachin Lodhi el 11 de En. de 2024
Purpose: Establish a telnet connection to an external machine. The external machine usually uses windows command prompt to establish the telnet connection using the IP address and the port number. After establishing the connection the prompt asks for a password (password123). The password cannot be removed from the machine for the telnet connection. The machine commands are all text based (strings).
Objective: Run text based commands on the machine thru a telnet connection, using Matlab.
Currently: When the program is run, nothing happens. I dont think the password goes thru. The command does not run ('executeMacro F22').
Current Code:
%% Instrument Control Toolbox
% Interface-based communication
% tcpclient connection
clear all
clc
%enter the address to connect to and the port number
t = tcpclient("122.261.3.60", 3122, "ConnectTimeout",30);
read(t) %supposed to read all available data from the client t
response = writeread(t, 'Password123'); % write and read the respose.
write(t, 'executeMacro F22');

Respuestas (1)

Sachin Lodhi
Sachin Lodhi el 11 de En. de 2024

Productos


Versión

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by