I don’t know the reason why it’s not configured (but disabled) but, because of compatibility with older versions of “add_install_client” and “setup_install_server”, tftp needs to be listed in /etc/inet/inetd.conf; so that’s where a fresh install should put the command.
Add this to /etc/inetd.conf to configure tftpd:
TFTPD - tftp server
tftp dgram udp6 wait root /usr/sbin/in.tftpd in.tftpd -s /tftpboot
Make your changes active:
root@opensolaris:/# inetconvThe tftp service is now enabled and available.
root@opensolaris:/# svcs | grep tftp
online 16:15:58 svc:/network/tftp/udp6:default
You can enable using inetadm -e svc:/network/tftp/udp6 and disable with inetadm -d svc:/network/tftp/udp6
1 comment:
Thanks a lot... I tried 5 or 6 other solutions I found googeling... But only this worked... Thanks a lot...
Post a Comment