Whole document tree
    

Whole document tree

The Procedure

2. The Procedure

This section details the procedures for setting up X-Terminal using XDMCP.

2.1. Before you begin, some backgrounds

Before you begin, it is better to have a basic understanding of how this works. (More details are at the Resources below and LDP HOWTO page)

The X server is usually started from the X Display Manager program (xdm, kdm and gdm. This document will use gdm as an example). It provides a nice and consistent interfaces for general users (X-based login, starting up a window manager, clock, etc.). X Display Manager manages a collection of X displays, which may be on the local host or remote servers.

When xdm runs, it is usually run as a local copy of X, also xdm can listen for requests from remote hosts over a network. For kdm (which comes with the KDE desktop), it is a replacement of xdm and configures the same way, except its files are in /etc/X11/kdm. The gdm ( Gnome Display Manager) is a re-implementation of the xdm program. gdm has similar functions to xdm and kdm, but was written from scratch and does not contain any original XDM / X Consortium code.

In the case of xdm, it offers display management in two different ways. It can manage X servers running on the local machine and specified in X-servers, and it can manage remote X-servers (typically X-terminals) using XDMCP (the XDM Control Protocol) as specified in the Xaccess file. (Courtesy of xdm man page).

Other good references for the similar setup can be found in the following documents:

2.5. Server Preparation

In RH 7.x, you need to setup DNS lookup, in order for some networking function to work properly (such as telnet). If you are in a small isolated environment (like home or small office, etc.) that do not have access to a public DNS Server, then add entry of the working DNS Server name(s) (such as your ISP's) in the resolv.conf file or you can add the host name of all workstations in your local host table.

To prepare your X-Server for XDMCP session, you need to make sure the following are properly installed:

  1. Install your Linux OS. In my case, I installed Red Hat 7.2 (Custom Installation). If you plan to use SSH Port Forwarding, you need to compile SSH with your kernel. Also, RH 7.x comes with firewall installed as default. You will encounter problem, if you do not add firewall rules or temporary disable it for setting up XDMCP. I will not cover the firewall rules here in details, since this is not the focus of this document. I will share only how to make it works first and you can fine-tune it yourself.

    To show your firewall rules, use the command ipchains -L to list your default rule sets. To temporary disable it, use this command ipchains -F to flush the rules (Don't worry, it will restore by re-loading or re-boot). One user, Ryan Sheidow, shared with me that by adding this rule, you can do it without disable your firewall and can allow yourself to access the X-Server (you can try for yourself).

    ipchains -A input -p udp -i $extint --dport 177 -j DENY

    For more firewall details, check the IP Masquerade HOWTO page.

    One other easy way is to add rules that only accept certain IP address(es) from your trusted workstations. This is how I use it myself.

    Linux Kernel 2.4x shipped with new firewall app called iptables. Please feel free to experiment it. Again, I will not cover it here.

  2. Setup your Networking. To test it out, ping, ftp and telnet are good commands to use to determine if your network works. RH 7.2 do not have telnet daemon turn on by default. Remember to enable it, if you prefer to use it for your test. One other thing is to remember firewall rules are there. Add your own rules or temporary disable it (as mentioned above) to make these commands work.

  3. Setup X. Do not setup with a resolution higher than what the remote users are able to use for their display. Test the X-Server by typing either startx or telinit 5. Make sure X is running properly.

  4. Creates the necessary user accounts (and associated groups) for user who will access via the X-Terminal.

2.6. Steps to Complete the Procedures

These are steps I used to setup the X-server for accepting XDMCP requests:

  1. For RH 6.2, modify /etc/rc.d/init.d/xfs and make the following changes. Change all (this is where the Font Server port):

    daemon xfs -droppriv -daemon -port -1

    to:

    daemon xfs -droppriv -daemon -port 7100

    In Mandrake 7.2, the port is already set to 7100. Also, in RH 7.x, you do not need to do this, since by default, it is, for security enhancement, not listening to TCP port any longer! If you need to setup default font server to use, do it in /etc/X11/fs/config and add the setting there. Different Linux distribution may put the xfs in different folder under /etc/rc.d. You may search for it if that's the case.

  2. Modify /etc/X11/xdm/xdm-config and make the following change. Be default (in most Linux distributions), this line is set, so that it is not listening to XDMCP connection. This is for security reason. For Caldera using kdm, this file is at /etc/X11/kdm. Find this line:

    DisplayManager.requestPort:     0

    and comment it out as:

    ! DisplayManager.requestPort:     0

    Remember, this does not affects gdm. For gdm setup, it is in the following section.

  3. In /etc/X11/xdm/Xaccess, change this. (this allow all hosts to connect). For Caldera using kdm, this file is at /etc/X11/kdm. Set the security to 644 (chmod 644):

    #*    # any host can get a login window

    to:

    *     # any host can get a login window

    xdm usually run as a local copy of X and can listen for requests from remote hosts over a network. xdm reads its configuration files /etc/X11/xdm/xdm-config for all configuration and log files that xdm uses. For kdm, it is a replacement of xdm and configures the same way, except its files are in /etc/X11/kdm for Caldera. It is worth noting that the Xsession file is what runs your environment.

    The gdm (Gnome Display Manager) is a re-implementation of the well known xdm. gdm has similar functions to xdm and kdm, gdm is the Gnome Display Manager, and its configuration files are found in /etc/X11/gdm/gdm.conf. The gdm.conf file contains sets of variables and many options for gdm, and the Sessions directory contains a script for each session option; each script calls /etc/X11/xdm/Xsession with the appropriate option.

    The above setup is in a Broadcast mode, which will list all the X-Server that are listening and willing to manage your X connection. If you only want to allow certain connections, use the CHOOSER section in this same file. An example can be found in the Resources.

  4. I use the gdm as default and use gdm login window to switch between KDE and GNOME. For gdm, edit /etc/X11/gdm/gdm.conf. This activates XDMCP, causing it to listen to the request. (For kdm, if you are using KDE2, edit /usr/share/config/kdm/kdmrc or /opt/kde2/share/config/kdm/kdmrc for Slackware version). Change this:

    [xdmcp]
    Enable=0

    to:

    Enable=1

    Make sure "Port=177" is at the end of this block. For Caldera using kdm, modify this file /usr/share/config/kdm/kdmrc.

  5. Now edit /etc/inittab and change the following line:

    id:3:initdefault:

    to:

    id:5:initdefault:

    Before changing this line, you can use the telinit command (or preferably ssh command) to test prior to modifying the line. Use either telinit 3 to set to level 3, or telinit 5 to set to level 5, graphics mode (you can issue this command on the second machine that telnets into this server).

  6. Make sure the proper security of the file /etc/X11/xdm/Xservers is set to 444 (chmod 444).

  7. Locate /etc/X11/xdm/Xsetup_0 and chmod 755 this file.

  8. Edit the XF86Config file (if you are using XFree86 4.x, the file is XF86Config-4) at /etc/X11 and change the line, if you are using RH Linux:

    FontPath    "unix:-1"

    to:

    FontPath    "unix:7100"
  9. (You do not have to make this change. You can keep the default setting, but this is what I use. If you are not sure, leave this alone.) Add this line to the end of /etc/inittab:

    x:5:respawn:/usr/bin/gdm

You are now ready to run a test.

One other thing to know (that some users have asked) is how to display with Willing to manage message with load info As I know this is available in xdm by adding the following to the /etc/X11/xdm/xdm-config.
DisplayManager.willing:  su noboby -c /etc/X11/xdm/XWilling
and the XWilling script must exist. For gdm, add this line to the /etc/X11/gdm/gdm.conf in [security] section:
Willing=/etc/X11/gdm/Xwilling