Hi (again) Daniel:
Since you are using simple substitutions, you can easily convert your needs to Perl:
# perl -pe 's/start=//g;s/stop=//g;s/BalancerEnable//g' file
Notice that all I did is use a semicolon to repeat each substitution instead of separate 'sed -e' programs.
If you want to update inplace, making a backup copy of your file do:
# perl -pi.old -e 's/start=//g;s/stop=//g;s/BalancerEnable//g' file
...the original file wikll be preserved as "file.old".
Regards!
...JRF...