Ubuntu Pastebin

Paste from tj at Mon, 6 Nov 2017 17:06:41 +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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
=== ls /etc/systemd/network
bond0.netdev
bond0.network
enp3s0f0.network
enp3s0f1.network
enp4s0f0.network
enp4s0f1.network
enp9s0.99.netdev
enp9s0.99.network
enp9s0.network
LAN_Aggregate.network
=== /etc/systemd/network/enp9s0.99.netdev
[NetDev]
Name=enp9s0.99
Kind=vlan

[VLAN]
Id=99
=== /etc/systemd/network/enp9s0.99.network
[Match]
Name=enp9s0.99

[Network]
Address=10.254.0.201/24
=== /etc/systemd/network/enp3s0f0.network
[Match]
Name=enp3s0f0

[Network]
Bond=bond0
=== /etc/systemd/network/enp3s0f1.network
[Match]
Name=enp3s0f1

[Network]
Bond=bond0
=== /etc/systemd/network/enp4s0f0.network
[Match]
Name=enp4s0f0

[Network]
Bond=bond0
=== /etc/systemd/network/enp4s0f1.network
[Match]
Name=enp4s0f1

[Network]
Bond=bond0
=== /etc/systemd/network/bond0.netdev
[NetDev]
Name=bond0
Kind=bond

[Bond]
Mode=802.3ad
LACPTransmitRate=slow
TransmitHashPolicy=layer2
AdSelect=bandwidth
MIIMonitorSec=1s
UpDelaySec=2s
DownDelaySec=8s

=== /etc/systemd/network/bond0.network
[Match]
Name=bond0

[Network]
BindCarrier=enp3s0f0 enp3s0f1 enp4s0f0 enp4s0f1
=== /etc/systemd/network/LAN_Aggregate.network
[Match]
Name=bond0

[Network]
DHCP=no
Address=10.254.1.201/24
Gateway=10.254.1.254
DNS=10.254.1.254
Download as text