Laman

install tftp sever di cenos

cara install tftp sever di cenos

check tftp-server installed
 # dnf list installed | grep tftp-server

install:
dnf install tftp-server

setting selinux
vi /etc/selinux/config
change SELINUX=permissive
save



check permissions tftp
getsebool -a | grep tftp

if ; tftp_anon_write and tftp_home_dir = off change to on
# setseboot -P tftp_anon_write 1
# setseboot -P tftp_home_dir 1

enable and start tftp
# systemctl enable tftp
# systemctl start tftp


check tftp port
# netstat -lu

ok finish