Registered User No edit summary |
Registered User (Merge articles) |
||
Line 1: | Line 1: | ||
{{ApplicableFor | <noinclude>{{ApplicableFor | ||
|MPUs list=STM32MP13x, STM32MP15x, STM32MP25x | |MPUs list=STM32MP13x, STM32MP15x, STM32MP25x | ||
|MPUs checklist=STM32MP13x, STM32MP15x, STM32MP25x | |MPUs checklist=STM32MP13x,STM32MP15x, STM32MP25x | ||
}} | }}</noinclude> | ||
== Purpose == | == Purpose == | ||
This article describes how to perform remote connection using the '''ssh'''<ref>[https://linux.die.net/man/8/ifconfig] ifconfig</ref> tool. | This article describes how to perform remote connection using the '''ssh'''<ref>[https://linux.die.net/man/8/ifconfig] ifconfig</ref> tool. | ||
=== Perform ssh connection === | === Perform ssh connection === | ||
::On host PC, one can type: | ::On host PC, one can type ({{highlight|xx.xx.xx.xx}} is the board IP address): | ||
If it is a first connection: | If it is a first connection: | ||
{{PC$}} ssh root@ | {{PC$}} ssh root@ {{highlight|xx.xx.xx.xx}} | ||
The authenticity of host ' | The authenticity of host '{{highlight|xx.xx.xx.xx}} ({{highlight|xx.xx.xx.xx}})' can't be established. | ||
ECDSA key fingerprint is | ECDSA key fingerprint is ...... | ||
Are you sure you want to continue connecting (yes/no)? yes | Are you sure you want to continue connecting (yes/no)? yes | ||
Warning: Permanently added ' | Warning: Permanently added '{{highlight|xx.xx.xx.xx}}' (ECDSA) to the list of known hosts. | ||
root@(none):~# | root@(none):~# | ||
Otherwise: | Otherwise: | ||
{{PC$}}ssh root@ | {{PC$}}ssh root@{{highlight|xx.xx.xx.xx}} | ||
root@(none):~# | root@(none):~# | ||
Latest revision as of 16:29, 24 May 2024
1. Purpose[edit | edit source]
This article describes how to perform remote connection using the ssh[1] tool.
1.1. Perform ssh connection[edit | edit source]
- On host PC, one can type (xx.xx.xx.xx is the board IP address):
If it is a first connection:
xx.xx.xx.xx The authenticity of host 'xx.xx.xx.xx (xx.xx.xx.xx)' can't be established. ECDSA key fingerprint is ...... Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'xx.xx.xx.xx' (ECDSA) to the list of known hosts. root@(none):~#ssh root@
Otherwise:
xx.xx.xx.xx root@(none):~#ssh root@
2. References[edit | edit source]