ssh-porta.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <!--
  3. Autor : Herley Ramos
  4. Data : 22/12/2017
  5. Projeto: Dicas
  6. Meta : Organizar as dicas de configuração da Porta SSH do Linux (agora neste html, antes em OOo)
  7. -->
  8. <?php
  9. include("cabecalho.php");
  10. ?>
  11. <section>
  12. <h1>Porta SSH, Linux Debian Stretch 9.3</h1>
  13. <h2>Mudando a porta SSH</h2>
  14. <h3>Mudar a porta de acesso do SSH</h3>
  15. <h4>Código</h4>
  16. <div class="box sombra">
  17. $ sudo vim /etc/ssh/sshd_config<br/>
  18. </div>
  19. <h4>Código dentro do arquivo</h4>
  20. <div class="box sombra">
  21. #-------------------------------------------------<br/>
  22. # MUDAR A PORTA NA PRÓXIMA LINHA:<br/>
  23. Port 22<br/>
  24. <br/>
  25. #-------------------------------------------------<br/>
  26. </div>
  27. <h4>Código</h4>
  28. <div class="box sombra">
  29. $ sudo /etc/init.d/ssh restart<br/>
  30. </div>
  31. </section>
  32. <?php
  33. for($i=0; $i<23; $i++) {echo'<br/>';}
  34. include("rodape.php");
  35. ?>