Dobra, więc standardowo coś nie "bangla" 
root@Gargoyle:~# cat /etc/iproute2/rt_tables
#
# reserved values
#
255 local
254 main
253 default
0 unspec
#
# local
#
#1 inr.ruhep
200 ftptab
root@Gargoyle:~# cat /etc/rc.local
# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.
ip rule add fwmark 1000 table ftptab
ip route flush cache
iptables -t mangle -A PREROUTING -i eth1 -p tcp --sport 20 -j MARK --set-mark 10
iptables -t mangle -A PREROUTING -i eth1 -p tcp --dport 20 -j MARK --set-mark 10
iptables -t mangle -A PREROUTING -i eth1 -p tcp --sport 21 -j MARK --set-mark 10
iptables -t mangle -A PREROUTING -i eth1 -p tcp --dport 21 -j MARK --set-mark 10
iptables -t mangle -A PREROUTING -m helper --helper ftp -j MARK --set-mark 1000
root@Gargoyle:~# ip route show table ftptab
default via 10.100.201.254 dev pptp-vpnpptp
root@Gargoyle:~# ip route show
default via 192.168.8.1 dev eth1 proto static
10.100.201.254 dev pptp-vpnpptp proto kernel scope link src 10.100.200.204
185.25.148.103 via 192.168.8.1 dev eth1 proto static
192.168.1.0/24 dev br-lan proto kernel scope link src 192.168.1.1
192.168.8.0/24 dev eth1 proto kernel scope link src 192.168.8.100
Zauważyłem, że po restarcie, znika zapis w ip route show table ftptab. Jak go dodać na stałe?