]> git.proxmox.com Git - pve-container.git/blob - src/test/test-debian-012/etc/network/interfaces.exp
use BEGIN/END markers for gateway scripts
[pve-container.git] / src / test / test-debian-012 / etc / network / interfaces.exp
1 auto lo
2 iface lo inet loopback
3
4 auto eth0
5 iface eth0 inet static
6 address 10.0.0.100
7 netmask 255.255.255.255
8 # --- BEGIN PVE ---
9 post-up ip route add 11.0.0.1 dev eth0
10 post-up ip route add default via 11.0.0.1 dev eth0
11 pre-down ip route del default via 11.0.0.1 dev eth0
12 pre-down ip route del 11.0.0.1 dev eth0
13 # --- END PVE ---
14
15 auto eth1
16 iface eth1 inet6 static
17 address fc00::1
18 netmask 64
19 # --- BEGIN PVE ---
20 post-up ip route add fc00:1::ff dev eth1
21 post-up ip route add default via fc00:1::ff dev eth1
22 pre-down ip route del default via fc00:1::ff dev eth1
23 pre-down ip route del fc00:1::ff dev eth1
24 # --- END PVE ---
25
26 auto eth2
27 iface eth2 inet6 static
28 address fc02::1
29 netmask 64
30 gateway fe80::1
31