blob: 347b31bf609edd70e79a2e3e64a0018581c97f90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# jumphost:/etc/network/interfaces
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# Port P6 - access vlan 93
iface ens255f0 inet manual
auto brExt
iface brExt inet static
bridge_ports ens255f0
address 10.21.19.100
gateway 10.21.19.97
network 10.21.19.96
broadcast 10.21.19.127
netmask 255.255.255.224
dns-nameservers 8.8.8.8
# Port P5 - access vlan 92
iface ens255f1 inet manual
auto brAdmin
iface brAdmin inet static
bridge_ports ens255f1
address 192.168.50.5
netmask 255.255.255.0
# Port P4 - access vlan 1704
iface ens4f0 inet manual
auto brData
iface brData inet static
bridge_ports ens4f0
address 192.168.40.5
netmask 255.255.255.0
# Port P3 - access vlan 1703
iface ens4f1 inet manual
auto brStorage
iface brStorage inet static
bridge_ports ens4f1
address 192.168.30.5
netmask 255.255.255.0
|