Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. ps -aux | grep tftp
  2. root 7804 0.0 0.0 15128 160 ? Ss 10:48 0:00 /usr/sbin/in.tftpd --listen --user tftp --address 0.0.0.0:69 --secure -c -vv -i /var/lib/tftpboot
  3.  
  4. jarrod@Dangerfield:~$ ps -aux | grep tftp
  5. root 7804 0.0 0.0 15128 160 ? Ss 10:48 0:00 /usr/sbin/in.tftpd --listen --user tftp --address 0.0.0.0:69 --secure -c -vv -i /var/lib/tftpboot
  6. tftp 8819 0.0 0.0 15132 632 ? S 11:04 0:00 /usr/sbin/in.tftpd --listen --user tftp --address 0.0.0.0:69 --secure -c -vv -i /var/lib/tftpboot
  7.  
  8. :/etc/default$ more tftpd-hpa
  9. # /etc/default/tftpd-hpa
  10.  
  11. #RUN_DAEMON="yes"
  12. TFTP_USERNAME="tftp"
  13. TFTP_DIRECTORY="/var/lib/tftpboot"
  14. TFTP_ADDRESS="0.0.0.0:69"
  15. TFTP_OPTIONS="--secure -c -vv -i"
  16.  
  17. /etc/default$ sudo service ufw status
  18. ufw stop/waiting
  19.  
  20. in.tftpd[8897]: WRQ from 192.168.0.6 filename AcousticList.txt
  21.  
  22. sudo apt-get install xinetd tftpd tftp
  23.  
  24. service tftp
  25. {
  26. protocol        = udp
  27. port            = 69
  28. socket_type     = dgram
  29. wait            = yes
  30. user            = nobody
  31. server          = /usr/sbin/in.tftpd
  32. server_args     = /tftpboot
  33. disable         = no
  34. }
  35.  
  36. sudo mkdir /tftpboot
  37. sudo chmod -R 777 /tftpboot
  38. sudo chown -R nobody /tftpboot
  39.  
  40. sudo /etc/init.d/xinetd restart
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement