필터 지우기
필터 지우기

Establishing a Telnet Connection with a Password

조회 수: 52 (최근 30일)
Javier Garcia
Javier Garcia 2022년 2월 21일
답변: Sachin Lodhi 2024년 1월 11일
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');

답변 (1개)

Sachin Lodhi
Sachin Lodhi 2024년 1월 11일

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by