Re: TFTPD-HPA permissions

2020-11-18 Thread AW
A vague memory but does the file not need to already exist on the server with some older cisco kit? Try touching the file on the server first. Mike. -- Michael Howard Your memory served you well, that sorted it, thanks Mike. Regards Andrew

Re: TFTPD-HPA permissions

2020-11-18 Thread Michael Howard
On 18/11/2020 22:42, AW wrote: Im having a strange problem with tftpd-hpa. Ive not changed anything in its config other than added -vv to get it to log whats going on. Im trying to copy from a Cisco router to the tftp server The log on the server log shows WRQ from the routers ip with the

TFTPD-HPA permissions

2020-11-18 Thread AW
Im having a strange problem with tftpd-hpa. Ive not changed anything in its config other than added -vv to get it to log whats going on. Im trying to copy from a Cisco router to the tftp server The log on the server log shows WRQ from the routers ip with the filename then 'sending N

Re: tftpd-hpa fails to start.

2009-04-18 Thread Nuno Magalhães
> '-lp' is a short for '-l -p' Right, i had tested it with a regular user (where -p won't work)... i stand corrected. Nuno -- () ascii ribbon campaign - against html e-mail /\ ascii-rubanda kampajno - kontraŭ html-a retpoŝto -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org wit

Re: tftpd-hpa fails to start.

2009-04-18 Thread Tzafrir Cohen
On Sat, Apr 18, 2009 at 12:24:23PM +0100, Nuno Magalhães wrote: > On Sat, Apr 18, 2009 at 12:04, Tzafrir Cohen wrote: > >  netstat -lp | grep tftp > > I think you mean: > > netstat -l -p | grep tftp '-lp' is a short for '-l -p' > > Otherwise you won't get the ports part. An alternative (tha

Re: tftpd-hpa fails to start.

2009-04-18 Thread Nuno Magalhães
On Sat, Apr 18, 2009 at 12:04, Tzafrir Cohen wrote: > On Fri, Apr 17, 2009 at 07:59:22PM +0100, Nuno Magalhăes wrote: > >> # netstat -l | grep ftp >> udp        0      0 *:tftp                  *:* > > For future reference: at this point you should have run: > >  netstat -lp | grep tftp I think y

Re: tftpd-hpa fails to start.

2009-04-18 Thread Tzafrir Cohen
On Fri, Apr 17, 2009 at 07:59:22PM +0100, Nuno Magalhães wrote: > # netstat -l | grep ftp > udp0 0 *:tftp *:* For future reference: at this point you should have run: netstat -lp | grep tftp which would have exposed the guilty process -- Tzafrir Cohen |

Re: tftpd-hpa fails to start.

2009-04-17 Thread Nuno Magalhães
>  I only found it by doing "netstat" -- because it's inetd > triggered, the "bad" tftp doesn't show up in the process list. Yup, i was wondering why was the socket misteriously spoken for and yet netstat -l |grep ftp showed nothing... Solved it already, thanks. Nuno -- () ascii ribbon campaig

Re: tftpd-hpa fails to start.

2009-04-17 Thread Andrew Reid
On Friday 17 April 2009 12:14:52 Nuno Magalhães wrote: > Hi, i'm having a slight issue following this article [1]. My client > will boot through PXE and find the host, then it won't find an image > and keeps on showing TFTP timeouts. I ran into this recently -- it turned out that the non-hpa TFT

Re: tftpd-hpa fails to start. [solved]

2009-04-17 Thread Nuno Magalhães
Turns out it was mostly user-error. 1) i was having issues starting tftpd-hpa through /etc/init.d - the tftp daemon was already being run by inetd, i was unaware of that, got it to run stand-alone since it's a one-time job anyway and i'm goofing around. 2) dhcp3-server gave the cli

Re: tftpd-hpa fails to start.

2009-04-17 Thread Nuno Magalhães
2009/4/17 Nuno Magalhães : >>  Very odd.  Could be that it is listed in /etc/inetd.conf and >>  is just not running at the instance that you look ..? Well, yes, it was being controlled by inetd and some rtfm-ing later i thought it better to be stand-alone. So, it's running: i get the prompt back a

Re: tftpd-hpa fails to start.

2009-04-17 Thread Nuno Magalhães
-s /var/lib/tftpboot I've tried adding a user but it kept asking me for a password so ended up killing that. Had to remove /home/tftpd, there's no tftp in /etc/passwd, i guess the user is gone. Other than that i followed the article and was expecting DHCP or the client's PXE to be a

Re: tftpd-hpa fails to start.

2009-04-17 Thread Steve Kemp
On Fri Apr 17, 2009 at 19:59:22 +0100, Nuno Magalh??es wrote: > Still no results... why wouldn't a process list itself? The socket is > there but there's no process listening on it? Very odd. Could be that it is listed in /etc/inetd.conf and is just not running at the instance that you look .

Re: tftpd-hpa fails to start.

2009-04-17 Thread Nuno Magalhães
On Fri, Apr 17, 2009 at 19:42, Steve Kemp wrote: >  (ie. There is another tftpd deamon already running.) I assumed that, but i find none. >  No.  The message is talking about a network socket.  Kill the existing >  process and all will be well. There is a network socket: # netstat

Re: tftpd-hpa fails to start.

2009-04-17 Thread Steve Kemp
issue: > > Apr 17 19:12:57 box in.tftpd[15899]: cannot bind to local IPv4 socket: > Address already in use "Address already in use" -> Means there is something listening on the tcp socket. (ie. There is another tftpd deamon already running.) > There's nothing &

Re: tftpd-hpa fails to start.

2009-04-17 Thread Nuno Magalhães
> Usually I'd say look at /var/log/daemon.log - if that doesn't > work I'd add "set -x" to the init script and see how far it > gets. Ah, daemon.log it's a socket issue: Apr 17 19:12:57 box in.tftpd[15899]: cannot bind to local IPv4 socket: Address already in use There's nothing "pending" o

Re: tftpd-hpa fails to start.

2009-04-17 Thread Mirco Piccin
e the articles example, instead of: > r...@itchy:~# /etc/init.d/tftpd-hpa start > Starting HPA's tftpd: in.tftpd. > r...@itchy:~# > > i get: > r...@itchy:~# /etc/init.d/tftpd-hpa start > Starting HPA's tftpd: in.tftpdr...@itchy:~# > > There's an echo &qu

Re: tftpd-hpa fails to start.

2009-04-17 Thread Steve Kemp
On Fri Apr 17, 2009 at 17:14:52 +0100, Nuno Magalh??es wrote: > The thing is, to use the articles example, instead of: > r...@itchy:~# /etc/init.d/tftpd-hpa start > Starting HPA's tftpd: in.tftpd. > r...@itchy:~# itchy! I remember that machine .. > I'm using uns

tftpd-hpa fails to start.

2009-04-17 Thread Nuno Magalhães
Hi, i'm having a slight issue following this article [1]. My client will boot through PXE and find the host, then it won't find an image and keeps on showing TFTP timeouts. The thing is, to use the articles example, instead of: r...@itchy:~# /etc/init.d/tftpd-hpa start Starting H

Problems with TFTPd - Debian Etch

2007-11-28 Thread marcellobm
Hello everybody, I'm getting a strange trouble with TFTPd's Debian Etch, where it stops without apparent reason. I have to use the TFTPd for a Cable Modems network take it own CM file to get online. I installed the TFTPd by the usual way, "apt-get in

Re: Broken Package: tftpd-hpa

2007-03-09 Thread Matt Miller
> > During my latest "apt-get update" on etch the package tftpd-hpa > > became messed up. ... in.tftpdinvoke-rc.d: initscript tftpd-hpa, > > action "stop" failed. > > you've got to figure out why this initscript is failing. When I tried to manually

Re: Broken Package: tftpd-hpa

2007-03-09 Thread Andrew Sackville-West
On Fri, Mar 09, 2007 at 06:33:59PM +0100, Matt Miller wrote: > During my latest "apt-get update" on etch the package tftpd-hpa became > messed up. Apparently the installation scripts were not able to stop > the old daemon or start the new one. If I now try to remove the pa

Broken Package: tftpd-hpa

2007-03-09 Thread Matt Miller
During my latest "apt-get update" on etch the package tftpd-hpa became messed up. Apparently the installation scripts were not able to stop the old daemon or start the new one. If I now try to remove the package I'm advised that the package is in a "very bad inconsistent stat

Re: Help about tftpd!

2005-12-02 Thread Jon Dowland
On Thu, Dec 01, 2005 at 04:08:16PM +0800, Li Weichen wrote: > Hi all, > > I have encountered a question about tftpd. I use tftpd-hpa to set up > a tftp server in my Debian sarge 3.1. If I start the tftpd use > '/etc/init.d/tftpd-hpa start' command, I will get the &

Re: Help about tftpd!

2005-12-01 Thread Almut Behrens
On Thu, Dec 01, 2005 at 04:08:16PM +0800, Li Weichen wrote: > Hi all, > > I have encountered a question about tftpd. I use tftpd-hpa to set up a tftp > server in my Debian sarge 3.1. If I start the tftpd use > '/etc/init.d/tftpd-hpa start' command, I will get the &

Help about tftpd!

2005-12-01 Thread Li Weichen
Hi all, I have encountered a question about tftpd. I use tftpd-hpa to set up a tftp server in my Debian sarge 3.1. If I start the tftpd use '/etc/init.d/tftpd-hpa start' command, I will get the "file not found" message after I input tftpboot command at client but the file I

Re: tftpd

2003-03-29 Thread Michael
ply issue "reboot" as root and your machine will reboot. If you enter "ps -ef | grep tftp" you will not see it active UNLESS you are actually transfering files. Then and ONLY then will you see the tftp process. Michael On Wed, 12 Mar 2003 18:10:23 +0100 Jianbo Wang <[EMAIL

Re: tftpd

2003-03-16 Thread Robert Rakowicz
Jianbo Wang <[EMAIL PROTECTED]> writes: Hi, > Hi, > > I cannot start tftpd. I try tftpd and atftpd, but they fail. > For tftpd, in syslog it said: > tftpd[701]: recvfrom: Socket operation on non-socket > For aftpd, in syslog it said: > tftpd[777]: atftpd: can't

tftpd

2003-03-12 Thread Jianbo Wang
Hi, I cannot start tftpd. I try tftpd and atftpd, but they fail. For tftpd, in syslog it said: tftpd[701]: recvfrom: Socket operation on non-socket For aftpd, in syslog it said: tftpd[777]: atftpd: can't bind port. My /etc/inetd.conf is like: tftpdgram udp waitnobody

Re: problem with tftpd daemon

2002-10-01 Thread Arash Bijanzadeh
On Tuesday 01 October 2002 14:05, Olivier BARBIEUX wrote: > Hello, > > I m writing to you because I ve problem with tftpd daemon Why not wu-ftpd? That's much more better! > I m still using Debian potato 2.2r6 on this machine. > Package: tftpd.0.10-1.deb (from 2.2r6 cd) >

problem with tftpd daemon

2002-10-01 Thread Olivier BARBIEUX
Hello, I m writing to you because I ve problem with tftpd daemon I m still using Debian potato 2.2r6 on this machine. Package: tftpd.0.10-1.deb (from 2.2r6 cd) description with '-s' argument here is the line in my inetd.conf file: tftpdgram udp wait

bootp / tftpd

2001-03-31 Thread ahall
Hello, I am trying to get a machine to boot via bootp of a a 3c905CTX and not having much luck. Can anyone point me in the direction of documentation that describes the setup of this. I believe that this is enough off topic to warrent my asking to be replyed to off list. Thank you for your tim