problem automation process using telnet
조회 수: 3 (최근 30일)
이전 댓글 표시
i have a uclinux board which only support telnet. i can connect to board using below command:
[a,b] = system('d:\plink -telnet someIp)
after this command, board prompt me for username which isn't desirable. i have tried above command in two other formats. like:
[a,b] = system('d:\plink -telnet username@someIp)
and
[a,b] = system('d:\plink -telnet someIp -l username)
but it's no use and uclinux still ask for username. so i thought "maybe i can feed username into telnet session using m-file" as mentioned in this post.
https://www.mathworks.com/matlabcentral/answers/37025-matlab-to-telnet
but there is another problem. after telnet session got opend, i can't run any matlab script, it got blocked.
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!