Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F32065190
lxc-container-mailserver-start
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
973 B
Referenced Files
None
Subscribers
None
lxc-container-mailserver-start
View Options
#!/bin/sh
#Let systemd launch a lxc mail container through /usr/lib/systemd/system/lxc-containers.service
#Start a lxc container, and create iptable rules
IPTABLES
=
"/usr/sbin/iptables"
LXC_START
=
"/usr/bin/lxc-start"
CONTAINER_NAME
=
"mailserver"
HOST_INTERFACE
=
"ens192"
DOCKER_INTERFACE
=
"docker0"
HOST_IP
=
"212.129.32.223"
CONTAINER_IP
=
"10.0.3.8"
PORTS
=
"25 110 143 465 587"
DOCKER_PORTS
=
"25 143 465 587"
NGINX_PORT
=
"21080"
$LXC_START
-n
$CONTAINER_NAME
-d
#Web rules
for
PORT in
$PORTS
do
$IPTABLES
-t nat -I PREROUTING -i
$HOST_INTERFACE
-p TCP -d
$HOST_IP
/32 --dport
$PORT
-j DNAT --to-destination
$CONTAINER_IP
:
$PORT
done
#Need 80 port for main nginx
$IPTABLES
-t nat -I PREROUTING -i
$HOST_INTERFACE
-p TCP -d
$HOST_IP
/32 --dport
$NGINX_PORT
-j DNAT --to-destination
$CONTAINER_IP
:80
#Docker rules
for
PORT in
$DOCKER_PORTS
do
$IPTABLES
-t nat -I PREROUTING -i
$DOCKER_INTERFACE
-p TCP -d
$HOST_IP
/32 --dport
$PORT
-j DNAT --to-destination
$CONTAINER_IP
:
$PORT
done
File Metadata
Details
Attached
Mime Type
text/x-shellscript
Expires
Mon, Jun 8, 09:14 (18 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3719222
Default Alt Text
lxc-container-mailserver-start (973 B)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment