Results 11 to 20 of 33
Originally Posted by atreyu
okay, then try this:
Code:
sudo /usr/sbin/atftpd --daemon --user nobody --group nobody /tftpboot
if it does not output any errors, see if it is running using ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-26-2012 #11Just Joined!
- Join Date
- Oct 2012
- Posts
- 26
- 10-27-2012 #12Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,657
is there anything in /var/log/messages related to atftpd not starting? try:
just to and get it to spit out the version, to make sure it can run at all:Code:sudo grep atftpd /var/log/messages
if not, you may have to run a strace, but I hope it doesn't come to that...Code:/usr/sbin/atftpd -V
- 10-27-2012 #13Just Joined!
- Join Date
- Oct 2012
- Posts
- 26
- 10-27-2012 #14Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,657
- 10-28-2012 #15Just Joined!
- Join Date
- Oct 2012
- Posts
- 26
the output is :
Oct 28 08:18:58 ubuntu atftpd[967]: Advanced Trivial FTP server started (0.7)
Oct 28 08:18:58 ubuntu atftpd[970]: atftpd: invalid IP address
Oct 28 09:04:45 ubuntu atftpd[958]: Advanced Trivial FTP server started (0.7)
Oct 28 09:04:45 ubuntu atftpd[963]: atftpd: invalid IP address
- 10-29-2012 #16Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,657
try supplying a valid ip address used by your server. if you do not know, check the output of this ip command
say your ip address is 192.168.1.2, try this atftpd command:Code:ip -o addr show |awk '$2 !~ /lo/ && $3 ~ /inet$/{print $2,$4}'
then check the output of ps again to see if running. if not, grep the syslog file again.Code:sudo /usr/sbin/atftpd --daemon --bind-address 192.168.1.2 --user nobody --group nobody /tftpboot
- 10-29-2012 #17Just Joined!
- Join Date
- Oct 2012
- Posts
- 26
- 10-29-2012 #18Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,657
- 10-29-2012 #19Just Joined!
- Join Date
- Oct 2012
- Posts
- 26
- 10-29-2012 #20Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,657


1Likes

