ssh-erro.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <!--
  3. Autor : Herley Ramos
  4. Data : 22/12/2017
  5. Projeto: Dicas
  6. Meta : Organizar as dicas do Sudo e SSH do Linux (agora neste html, antes em OOo)
  7. Defaults:ALL timestamp_timeout=-1 siempre
  8. Defaults:ALL timestamp_timeout=30 minutos
  9. -->
  10. <?php
  11. include("cabecalho.php");
  12. ?>
  13. <section>
  14. <h1>Erro no SSH, Linux Debian Stretch 9.3</h1>
  15. <h2>SSH, Erro broken pipe</h2>
  16. <h3>Para concertar temos que alterar um arquivo</h3>
  17. <h4>Código</h4>
  18. <div class="box sombra">
  19. $ sudo vim /etc/ssh/sshd_config<br/>
  20. </div>
  21. <h4>Código dentro do arquivo</h4>
  22. <div class="box sombra">
  23. #-------------------------------------------------<br/>
  24. # INCLUIR A PRÓXIMA LINHA:<br/>
  25. ServerAliveInterval 30<br/>
  26. <br/>
  27. #-------------------------------------------------<br/>
  28. </div>
  29. <h4>Código</h4>
  30. <div class="box sombra">
  31. $ sudo /etc/init.d/ssh restart<br/>
  32. </div>
  33. </section>
  34. <?php
  35. for($i=0; $i<23; $i++) {echo'<br/>';}
  36. include("rodape.php");
  37. ?>