Changes between Version 25 and Version 26 of gettingstarted


Ignore:
Timestamp:
09/16/2024 05:03:47 PM (2 months ago)
Author:
Ron Eisworth
Comment:

Added section on how to enable SSH

Legend:

Unmodified
Added
Removed
Modified
  • gettingstarted

    v25 v26  
    8787 6. Now that functionality has been verified, follow our [wiki:/jtag_instructions jtag instructions] to update to the latest boot and GSC firmware.  ** Without the latest firmware some features of the board may not function properly.
    8888
     89=== SSH Enabling
     90The default Ubuntu BSP has SSH disabled. If access over the management port is desired the user must enable SSH using the serial console. See instructions below. 
     91
     92The {{{openssh-server}}} package provides an ssh daemon suitable for secure shell (ssh) and secure copy (scp):
     93{{{
     94#!bash
     95apt-get install openssh-server
     96}}}
     97
     98To enable root ssh capability, which is disabled by default, do the following:
     99
     100 Edit /etc/ssh/sshd_config, and make sure the following line is commented out:
     101{{{
     102#!bash
     103PermitRootLogin prohibit-password
     104}}}
     105 Just below it, add the following line:
     106{{{
     107#!bash
     108PermitRootLogin yes
     109}}}
     110 Then reload SSH config:
     111{{{
     112#!bash
     113service ssh reload
     114}}}
     115
    89116
    90117= Next Steps =