Jerry Geis wrote:
> The netstat show 0.0.0.0
>
> netstat -anp | grep :69
> udp        0      0 0.0.0.0:69                  
> 0.0.0.0:*                               4007/xinetd    
>
> ----------------------
>  cat /etc/xinetd.d/tftp
> # default: off
> # description: The tftp server serves files using the trivial file 
> transfer \
> #       protocol.  The tftp protocol is often used to boot diskless \
> #       workstations, download configuration files to network-aware 
> printers, \
> #       and to start the installation process for some operating systems.
> service tftp
> {
>         socket_type             = dgram
>         protocol                = udp
>         wait                    = yes
>         user                    = root
>         server                  = /usr/sbin/in.tftpd
>         server_args             = -v -v -v -v -s /tftpboot
>         disable                 = no
>         per_source              = 11
>         cps                     = 100 2
>         flags                   = IPv4
> }
>
>
>
> I dont see any specific binding.
>
> I have not been able to find a way to get tftp to work on both eth0 and 
> eth1.
> Thanks,
>
> Jerry
Check your /etc/xinetd.conf file and see if the bind= line is blank or 
contains only one interface by some chance.  Blank should cause xinetd 
to bind to all interfaces.  Also, do you bring up eth1 at startup or do 
you bring it up manually after boot?  If it's brought up after boot, 
then you may need to restart xinetd (and any other process than needs to 
bind both nics) before it will see both interfaces.

-Brent

_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to