Ok, dug back through my notes and found the following:
a) in the images folder on the CDROM there is a file called ks_stub.cfg
b) copy this file to boot floppy
c) rename to ks.cfg (I think, maybe, if it doesn't boot rename back to ks_stub.cfg)
ALternatively, create your own version using the contents of my file listed below (using a Unix editor NOT a Windows editor):
#------------------------------------------------------------
# kickstart file for Mitel Networks SME Server
# Copyright (c) 2002 Mitel Networks Corporation
#------------------------------------------------------------
# install method
cdrom
mouse none
# networking
network --bootproto static --ip 192.168.1.1 --netmask 255.255.255.0 --gateway 192.168.1.2 --nameserver 127.0.0.1
# boot loader
lilo --location mbr
%packages
%post
Another option that should work is to edit the syslinux.cfg file on the boot floppy to change the pointer reference to look for this file on the cdrom; where you see the option ks=floppy change it to ks=cdrom:/images/ks_stub.cfg
HTH