Jim,

Here are the contents of /tftpboot/lts

vmlinuz-2.4.9-ltsp-5
vmlinuz-2.4.9-ltsp-lpp-5

Jonathan

>Ok,  So we know that tftpd is listening on port 69.
>And we know that tftpd is going to prepend whatever
>requested files with '/tftpboot'.
>
>But, i still don't know what is in the /tftpboot/lts
>directory.  I'm guessing that the kernel isn't there.
>
>Jim.
>
>
>On Wed, 27 Mar 2002, Jonathan Terbio wrote:
>
> > Hi jim,
> >
> > Jim, please take a lot at the details
> >
> > after netstat -anp | grep ":69"
> >
> > result
> > udp        0      0 0.0.0.0:69              0.0.0.0:*
> > 960/xinetd
> >
> > after issuing service xinetd restart
> > result at /var/log/messages
> > Mar 27 13:35:08 infosys xinetd[960]: Exiting...
> > Mar 27 13:35:08 infosys xinetd: xinetd shutdown succeeded
> > Mar 27 13:35:08 infosys xinetd[1365]: chargen disabled, removing
> > Mar 27 13:35:08 infosys xinetd[1365]: daytime disabled, removing
> > Mar 27 13:35:08 infosys xinetd[1365]: daytime disabled, removing
> > Mar 27 13:35:08 infosys xinetd[1365]: echo disabled, removing
> > Mar 27 13:35:08 infosys xinetd[1365]: echo disabled, removing
> > Mar 27 13:35:08 infosys xinetd[1365]: rsync disabled, removing
> > Mar 27 13:35:08 infosys xinetd[1365]: time disabled, removing
> > Mar 27 13:35:08 infosys xinetd[1365]: time disabled, removing
> > Mar 27 13:35:09 infosys xinetd[1365]: xinetd Version 2.3.3 started with 
> libwrap
> > options compiled in.
> > Mar 27 13:35:09 infosys xinetd[1365]: Started working: 4 available services
> > Mar 27 13:35:11 infosys xinetd: xinetd startup succeeded
> >
> > ======
> > 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
> > {
> >          disable = no
> >          socket_type             = dgram
> >          protocol                = udp
> >          wait                    = yes
> >          user                    = root
> >          server                  = /usr/sbin/in.tftpd
> >          server_args             = -s /tftpboot
> > }
> >
> >
> > regards,
> >
> > Jonathan
> >
> > >Jonathan,
> > >
> > >So, tftp is enabled, but when you did the netstat -anp | grep ":69 "
> > >you didn't see anything listening on port 69 ?
> > >
> > >take a look in /var/log/messages and see if there are any errors.
> > >
> > >Also, try restarting xinetd by doing this:
> > >
> > >    service xinetd restart
> > >
> > >Then look in /var/log/messages again and see what it says.
> > >
> > >Jim.
> > >
> > >
> > >On Wed, 27 Mar 2002, Jonathan Terbio wrote:
> > >
> > > > Hi Jim,
> > > >
> > > > I had enabled the tftpd using setup tool on red hat then service 
> and check
> > > > the /etc/xinetd.d/tftp and it was set to "no",
> > > >
> > > > When i installed my redhat i choose gui login is there any impact 
> on ltsp
> > > > for console login?
> > > >
> > > > below are the details of my config files;
> > > >
> > > > dhcpd.conf
> > > > ========
> > > >
> > > > # Sample configuration file for ISCD dhcpd
> > > > #
> > > > # Make changes to this file and copy it to /etc/dhcpd.conf
> > > > #
> > > >
> > > > default-lease-time            21600;
> > > > max-lease-time                21600;
> > > >
> > > > option subnet-mask            255.255.255.0;
> > > > option broadcast-address      192.168.0.255;
> > > > option routers                192.168.0.254;
> > > > option domain-name-servers    192.168.0.254;
> > > > option domain-name            "ingasco.com";
> > > > option root-path              "192.168.0.254:/opt/ltsp/i386";
> > > >
> > > > shared-network WORKSTATIONS {
> > > >      subnet 192.168.0.0 netmask 255.255.255.0 {
> > > >      }
> > > >
> > > >
> > > >
> > > >       host ws001 {
> > > >          hardware ethernet     00:04:5A:49:23:68;
> > > >          fixed-address         192.168.0.1;
> > > >          filename              "/lts/vmlinuz-2.4.9-ltsp-5";
> > > >       }
> > > > }
> > > >
> > > >
> > > > hosts
> > > > =======
> > > >
> > > > # Do not remove the following line, or various programs
> > > > # that require network functionality will fail.
> > > >
> > > > 192.168.0.254   infosys infosys.ingasco.com     infosys
> > > > 127.0.0.1       infosys localhost.localdomain   localhost
> > > > 192.168.0.1     ws001
> > > >
> > > >
> > > > lts.conf
> > > > =======
> > > >
> > > > #
> > > > # Config file for the Linux Terminal Server Project (www.ltsp.org)
> > > > #
> > > >
> > > > [Default]
> > > >          SERVER             = 192.168.0.254
> > > >          XSERVER            = auto
> > > >          X_MOUSE_PROTOCOL   = "PS/2"
> > > >          X_MOUSE_DEVICE     = "/dev/psaux"
> > > >          X_MOUSE_RESOLUTION = 400
> > > >          X_MOUSE_BUTTONS    = 3
> > > >          USE_XFS            = N
> > > >          LOCAL_APPS         = N
> > > >          RUNLEVEL           = 5
> > > >
> > > >
> > > 
> #------------------------------------------------------------------------------
> > > > #
> > > > # Example of specifying X settings for a workstation
> > > > #
> > > > [ws001]
> > > >          RUNLEVEL           = 4
> > > >          TELNET_SESSIONS    = 6
> > > >
> > > 
> #------------------------------------------------------------------------------
> > > > #
> > > > # Example of a serial printer attached to /dev/ttyS1 on workstation 
> ws001
> > > > #
> > > > #[ws001]
> > > > #    PRINTER_0_DEVICE   = /dev/ttyS1
> > > > #    PRINTER_0_TYPE     = S             # P-Parallel, S-Serial
> > > > #    PRINTER_0_PORT     = 9100          # tcp/ip port: defaults to 9100
> > > > #    PRINTER_0_SPEED    = 9600          # baud rate: defaults to 9600
> > > > #    PRINTER_0_FLOWCTRL = S             # Flow control: S-Software
> > > (XON/XOFF),
> > > > #                                       # H-Hardware (CTS/RTS)
> > > > #    PRINTER_0_PARITY   = N             # Parity: N-None, E-Even, O-Odd
> > > > #                                       # (defaults to 'N')
> > > > #    PRINTER_0_DATABITS = 8             # Databits: 5,6,7,8 
> (defaults to 8)
> > > >
> > > >
> > > >
> > > > ltps.conf
> > > > ========
> > > > :
> > > > #
> > > > # Configuration variables for LTSP
> > > > #
> > > >
> > > > LTSP_DIR=/opt/ltsp
> > > >
> > > >
> > > >
> > > > hosts.allow
> > > > =========
> > > >
> > > > #
> > > > # hosts.allow   This file describes the names of the hosts which are
> > > > #               allowed to use the local INET services, as decided
> > > > #               by the '/usr/sbin/tcpd' server.
> > > > #
> > > >
> > > > ## LTS-begin ##
> > > >
> > > > #
> > > > # The lines between the 'LTS-begin' and the 'LTS-end' were added
> > > > # on: Fri Mar 22 16:35:11 PHT 2002 by the ltsp installation script.
> > > > # For more information, visit the ltsp homepage
> > > > # at http://www.ltsp.org
> > > > #
> > > >
> > > > bootpd:    0.0.0.0
> > > > in.tftpd:  192.168.0.
> > > > portmap:   192.168.0.
> > > >
> > > > ## LTS-end ##
> > > >
> > > >
> > > >
> > > > Regards,
> > > >
> > > > Jonathan
> > > >
> > > > >Jonathan,
> > > > >
> > > > >Ah, I see you tried the netstat. I missed that in the last
> > > > >email.
> > > > >
> > > > >based on the output (or lack of output), I'd say that
> > > > >tftpd isn't enabled.
> > > > >
> > > > >Take a look in /etc/xinetd.d/tftp, there is probably a
> > > > >line that says:   disabled = yes.
> > > > >
> > > > >You need to change that to 'disabled = no'
> > > > >
> > > > >Then, you need to restart xinetd
> > > > >
> > > > >    service xinetd restart
> > > > >
> > > > >Then try the netstat command again.
> > > > >
> > > > >Jim.
> > > > >
> > > > >On Tue, 26 Mar 2002, Jonathan Terbio wrote:
> > > > >
> > > > > > Jim,
> > > > > >
> > > > > > >Jonathan,
> > > > > > >
> > > > > > >Do you have tftpd installed and running on the server ?
> > > > > > >
> > > > > > >Try this:
> > > > > > >
> > > > > > >   netstat -an | grep ":69 "
> > > > > >
> > > > > > None. It does'nt display anything. I dont know how to setup the 
> tftpd.
> > > > > >
> > > > > >
> > > > > > >That should show that something is listening on port 69.
> > > > > > >
> > > > > > >I'm guessing that it is not running, otherwise, you
> > > > > > >should be seeing some tftp messages in the /var/log/messages
> > > > > > >file.
> > > > > > >
> > > > > > >Also, it could be iptables getting in the way.  Try this:
> > > > > > >
> > > > > > >    iptables -L -v
> > > > > >
> > > > > > it display the version "iptables v1.2.3
> > > > > >
> > > > > >
> > > > > > >and make sure there are no rules forbidding tftp.
> > > > > > >
> > > > > > >Also, have you looked at the troubleshooting section
> > > > > > >in the ltsp-3.0 documentation ?
> > > > > > >
> > > > > > >Jim McQuillan
> > > > > > >[EMAIL PROTECTED]
> > > > > > >
> > > > > > >
> > > > > > >On Mon, 25 Mar 2002, Jonathan Terbio wrote:
> > > > > > >
> > > > > > > > Hi guys,
> > > > > > > >
> > > > > > > > I am trying to configure an ltsp setup on my rh 7.2 . When i
> > > > > installed my
> > > > > > > > rh7.2 i choose but here are the history of what i did.
> > > > > > > >
> > > > > > > > 1. I installed core-3.0.0 and kernel 3.0.3 at first and 
> forgot to
> > > > > install
> > > > > > > > telnetd and dhcpd.
> > > > > > > > 2. download the telnetd tar and installed and enabled it at 
> boot.
> > > > > > > > 3. download the dhcp and install it and run using dhcpd -d -f (
> > > > > dont know
> > > > > > > > how to run at boot)
> > > > > > > > 4. create dhcpd.conf under /etc because it was not created. 
> (the
> > > > > dhcpd is
> > > > > > > > not listed as one of the services.)
> > > > > > > > 5. remove the /opt/ltsp
> > > > > > > > 6. remove the /tftpboot
> > > > > > > > 7. install core_3.0.0
> > > > > > > > 8. install kernel 3.0.1
> > > > > > > > 9. change dhcpd.conf, lts.conf, exports, hosts.allow, hosts
> > > > > > > > 10. change the nic before i have 3com905b not using linksys
> > > > > > > >
> > > > > > > > but still i got the same problem below are the logs.
> > > > > > > >
> > > > > > > > ws001 workstation side
> > > > > > > > ..Me: 192.168.0.1, Server: 192.168.0.254, Gateway 192.168.0.254
> > > > > > > > Loading 192.168.0.254:/lts/vmlinuz-2.4.9-ltsp-5....
> > > > > > > >
> > > > > > > >
> > > > > > > > server side
> > > > > > > > tail -f /var/log/messages
> > > > > > > >
> > > > > > > > DHCPDISCOVER from 00:04:5a:49:23:68 via eth0
> > > > > > > > DHCPOFFER on 192.168.0.1 from 00:04:5a:49:23:68 via eth0
> > > > > > > > DHCPREQUEST on 192.168.0.1 from 00:04:5a:49:23:68 via eth0
> > > > > > > > DHCPACK on 192.168.0.1 from 00:04:5a:49:23:68 via eth0
> > > > > > > >
> > > > > > > > dhcpd -d -f
> > > > > > > >
> > > > > > > > DHCPDISCOVER from 00:04:5a:49:23:68 via eth0
> > > > > > > > DHCPOFFER on 192.168.0.1 from 00:04:5a:49:23:68 via eth0
> > > > > > > > DHCPREQUEST on 192.168.0.1 from 00:04:5a:49:23:68 via eth0
> > > > > > > > DHCPACK on 192.168.0.1 from 00:04:5a:49:23:68 via eth0
> > > > > > > >
> > > > > > > > regards,
> > > > > > > >
> > > > > > > > Jonathan
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > _____________________________________________________________________
> > > > > > > > Ltsp-discuss mailing list.   To un-subscribe, or change prefs,
> > > goto:
> > > > > > > >       https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
> > > > > > > > For additional LTSP help,   try #ltsp channel on
> > > irc.openprojects.net
> > > > > > > >
> > > > > > >
> > > > > > >--
> > > > > >
> > > > >
> > > > >--
> > > >
> > > >
> > > > _____________________________________________________________________
> > > > Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
> > > >       https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
> > > > For additional LTSP help,   try #ltsp channel on irc.openprojects.net
> > > >
> > >
> > >--
> >
>
>--


_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.openprojects.net

Reply via email to