Advertisement
vvccs

Telnet & FTP

May 31st, 2023 (edited)
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. FTP
  2.  
  3. sudo apt update
  4. sudo apt install vsftpd
  5. sudo ufw alllow 23
  6. sudo ufw status
  7. sudo systemctl start vsftpd.service
  8. sudo systemctl status vsftpd.service
  9. ifconfig
  10. ftp <insert ip>
  11.  
  12. ftp <ip>
  13.  
  14. TELNET
  15.  
  16. sudo apt update
  17. sudo apt install telnet
  18. sudo ufw allow 23
  19. ifconfig (to get ip)
  20. telnet <insert ip>
  21. login with username and password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement