I am very sure that 192.168.2.100 is not assinged to elsewhere in our
network.

Ok Lets me use different subnet 192.168.200.255.

[root@everest /]# ping 192.168.200.100
PING 192.168.200.100 (192.168.200.100) from 192.168.105.140 : 56(84) bytes
of data.
>From 65.103.173.30 icmp_seq=1 Destination Host Unreachable
>From 65.103.173.30 icmp_seq=2 Destination Host Unreachable

which means 192.168.200.100 is not assined. Then I have changed on these
files.
--------------------------------------------------------------------
[root@everest /]# vi /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE='eth1'
ONBOOT='yes'
BOOTPROTO='none'
BROADCAST='255.255.255.255'
NETWORK='192.168.0.0'
USERCTL='no'
TYPE='Ethernet'
IPADDR='192.168.200.100'
GATEWAY='192.168.105.140'
NETMASK='192.168.200.255'

--------------------------------------------------------------------
[root@everest /]# vi /etc/dhcpd.conf

default-lease-time            21600;
max-lease-time                21600;

option subnet-mask            255.255.255.0;
option broadcast-address      192.168.200.255;
option routers                192.168.200.100;
option domain-name-servers    192.168.200.100;
option root-path              "192.168.200.100:/opt/ltsp/i386";

shared-network WORKSTATIONS {
    subnet 192.168.200.0 netmask 255.255.255.0 {
    }
}

group   {
    use-host-decl-names       on;
    option log-servers        192.168.200.100;

    host ws001 {
        hardware ethernet     00:01:03:C0:0C:EB;
        fixed-address         192.168.200.1;
        filename              "/tftpboot/lts/vmlinuz-2.4.19-ltsp-1";
    }
}

--------------------------------------------------------------------
Then I started
[root@everest /]# /etc/init.d/network restart
Shutting down interface eth0:                              [  OK  ]
Shutting down interface eth1:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Disabling IPv4 packet forwarding:                          [  OK  ]
Setting network parameters:                                [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth0:                                [  OK  ]
Bringing up interface eth1:                                [  OK  ]
--------------------------------------------------------------------
[root@everest /]# /etc/rc.d/init.d/portmap restart
Stopping portmapper:                                       [  OK  ]
Starting portmapper:                                       [  OK  ]

--------------------------------------------------------------------
[root@everest /]# /etc/rc.d/init.d/named restart
Stopping named:                                            [  OK  ]
Starting named:                                            [  OK  ]
--------------------------------------------------------------------
[root@everest /]# /etc/rc.d/init.d/xinetd restart
Stopping xinetd:                                           [  OK  ]
Starting xinetd:                                           [  OK  ]

--------------------------------------------------------------------
[root@everest /]# /etc/rc.d/init.d/dhcpd restart

Can't bind to dhcp address: Address already in use exiting.
[FAILED]

I don't know guys WHY?. Please help me

Thanks
Bimal




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_____________________________________________________________________
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