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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
container-tools: Host Setup
===========================
1. Debian Packages
-------------------
apt install bridge-utils ifenslave vlan
2. Boot Parameters
------------------
2.1 CGroup Memory Controller
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In order to enable the memory controller the following boot parameter needs to be used:
cgroup_enable=memory
2.2 CGroup Swap Controller
~~~~~~~~~~~~~~~~~~~~~~~~~~
In order to enable the swap controller the following boot parameter needs to be used:
swapaccount=1
3. Networking
~~~~~~~~~~~~~
3.1 Enable IPv4 Forwarding
~~~~~~~~~~~~~~~~~~~~~~~~~~
apt install procps
echo "net.ipv4.ip_forward = 1" > /etc/sysctl.d/ip_foward.conf
sysctl -p
3.2 Configure Network Bridge
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3.2.1 Bridge: 1 Interface, standalone, DHCP
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
cat > /etc/network/interfaces << EOF
# /etc/network/interfaces
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface eno1 inet manual
allow-hotplug bridge0
iface bridge0 inet dhcp
bridge_ports eno1
bridge_fd 0
bridge_maxwait 0
bridge_stp 0
EOF
3.2.2 Bridge: 1 Interface, standalone, static
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
cat > /etc/network/interfaces << EOF
# /etc/network/interfaces
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface eno1 inet manual
allow-hotplug bridge0
iface bridge0 inet static
address 10.0.0.2
gateway 10.0.0.1
netmask 255.255.255.0
pre-up ip link set eno1 down
pre-up ip link set eno1 up
bridge_ports eno1
bridge_fd 0
bridge_maxwait 0
bridge_stp 0
EOF
3.2.3 Bridge: 2 logical Interfaces, subnet, static
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
cat > /etc/network/interfaces << EOF
# /etc/network/interfaces
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
allow-hotplug eno1
iface eno1 inet dhcp
allow-hotplug bridge0
iface bridge0 inet static
address 10.0.0.1
netmask 255.255.255.0
pre-up brctl addbr bridge0
post-down brctl delbr bridge0
bridge_fd 0
bridge_maxwait 0
bridge_stp 0
EOF
3.2.4 Bridge: 3 physical Interfaces, vlan, bonding, static
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
cat > /etc/network/interfaces << EOF
# /etc/network/interfaces
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
allow-hotplug eno1
iface eno1 inet dhcp
iface eno2 inet manual
iface eno3 inet manual
allow-hotplug bond0
iface bond0 inet manual
up ip link set bond0 0.0.0.0 up
down ip link set bond0 down
slaves eno2 eno3
bond-mode 4
bond-miimon 100
bond-downdelay 200
bond-updelay 200
bond-lacp-rate 1
bond-xmit-hash-policy layer2+3
iface bond0.100 inet manual
vlan-raw-device bond0
allow-hotplug br100
iface br100 inet static
address 10.100.0.2
#gateway 10.100.0.1
netmask 255.255.255.0
post-up ip route add 10.100.0.0/24 via 10.100.0.1 dev br100
post-down ip route del 10.100.0.0/24 dev br100
bridge_ports bond0.100
bridge_fd 0
bridge_maxwait 0
bridge_stp 0
EOF
4. Enabling container-shell
---------------------------
Managing containers requires root privileges. In order to allow unprivileged
users to manage containers without granting them privileges or accounts,
the container-shell can be used together with sudo and a container user.
sudo adduser --gecos "container-tools,,," \
--home /var/lib/machines/container-tools \
--shell /usr/bin/container-shell \
--no-create-home container
|