i have a stable installation of real thin clients with a single ethernet device eth0 added to the ltspbr0 device <br><br>i have noticed that adding the ethernet interface eth0 to the  ltspbr0 bridge using the command " brctl addif ltspbr0 eth0"  is  temporary as the bridge is reset after every boot so to make the settings permanent i did following please suggest any different and better way of doing the same <br>
<br><br>1 . create a shell script  named "ltsp_bridge" and place it in the /etc/init.d with executable permission ( script is shown below)<br><br>#!/bin/sh<br>brctl ltspbr0 addif eth0 <br><br>2. create a symbolic link named "S98ltsp_bridge" in the folder /etc/rc.d/rc5.d  ( command is given below)<br>
<br>ln -s /etc/init.d/ltsp_bridge /etc/rc.d/rc5.d/S98ltsp_bridge<br><br>3. reboot the server to enjoy permanent settings for the ltspbr0 based server.<br><br>best of luck !!!<br>