Привет, коллеги!
В /etc/networking/interfaces завел такую запись:
auto tun1
iface tun1 inet static
address 192.168.10.1
netmask 255.255.255.0
broadcast 192.168.10.255
up ifconfig tun1 multicast
pre-up modprobe ip_gre
pre-up iptunnel add tun1 mode gre local 212.47.x.x remote 212.12.x.x ttl 255
pointopoint 192.168.10.2
post-down iptunnel del tun1
После загрузки системы в списке интерфейсов нет tun1. Но если руками выполнить что-то вроде
ip tunnel add tun1 mode gre remote 212.12.x.x local 212.47.x.x ttl 255
ip link set tun1 up
ip addr add 192.168.10.1/24 dev tun1
то соединение появляется. Как сделать так, чтобы поднималось само при старте системы?