Ubuntu Pastebin

Paste from babbageclunk at Thu, 9 Jun 2016 09:56:35 +0000

Download as text
 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
44
45
46
47
48
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto ens3
iface ens3 inet static
	address 192.168.150.2
	netmask 255.255.255.0
	network 192.168.150.0
	broadcast 192.168.150.255
	gateway 192.168.150.1
	# dns-* options are implemented by the resolvconf package, if installed
	dns-nameservers 192.168.150.1
	dns-search maas

# guest-private VLAN
auto eth1.10
iface eth1.10 inet static
	address 10.10.0.1
	netmask 255.255.255.0
	dns-nameservers 10.10.0.1
	dns-search maas
	vlan-raw-device ens3


# internal space
auto ens3.10
iface ens3.10 inet static
	address 192.168.10.1
	vlan-raw-device ens3

# public space
auto ens3.11
iface ens3.11 inet static
	address 192.168.11.1
	vlan-raw-device ens3

# db space
auto ens3.12
iface ens3.12 inet static
	address 192.168.12.1
	vlan-raw-device ens3
Download as text