The following command at the terminal gives me the networking changes I need:
ip route change default via 10.255.255.1 dev eth0 src 82.82.82.82
To persist this on reboot I add the following to /etc/network/interfaces
post-up ip route change default via 10.255.255.1 dev eth0 src 82.82.82.82
After reboot the change is not applied - or is applied and subsequently overwritten - or something similar. How do I track down / debug why this is not working, as I am certain it should?
Alternatively, is there an other way I can apply the ip route change that will be effective?