Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

configure tftpd server on debian sarge stable

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
cc
Posts: 820
Joined: 2005-06-08 19:14

configure tftpd server on debian sarge stable

#1 Post by cc »

hi

howto configure tftpd server on debian sarge stable to transfer config files from the routers via tftp to this server ?

tftpd server is already installed:

# dpkg -l | grep tftpd
ii tftpd 0.17-12 Trivial file transfer protocol server

greetings
cc

cc
Posts: 820
Joined: 2005-06-08 19:14

#2 Post by cc »

I found out:

1.) # apt-get install tftpd-hpa

2.) create a file tftp in /etc/xinetd.d:

Code: Select all

service tftp
{
   socket_type   = dgram
   protocol   = udp
   wait      = yes
   user      = root
   server      = /usr/sbin/in.tftpd
   server_args   = -c -s /tftpboot
   disable      = no
   per_source   = 11
   cps      = 100 2
}
and it works well now !

Post Reply