15 lines
738 B
Bash
Executable File
15 lines
738 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#cleaning, may throw errors at first launch
|
|
#iptables -t nat -D POSTROUTING -o ens18 -j ipbis
|
|
#iptables -t nat -F ipbis
|
|
#iptables -t nat -X ipbis
|
|
|
|
iptables -t nat -N ipbis
|
|
iptables -t nat -F ipbis
|
|
iptables -t nat -I ipbis -o ens18 -p tcp --source `docker inspect -f '{{.NetworkSettings.Networks.sympaNet.IPAddress}}' sympaServ` -j SNAT --to `ifconfig ens18:0 | grep "inet" | awk '{print $2}'`
|
|
iptables -t nat -I ipbis -o ens18 -p tcp --source `docker inspect -f '{{.NetworkSettings.Networks.jirafeauNet.IPAddress}}' sympaServ` -j SNAT --to `ifconfig ens18:0 | grep "inet" | awk '{print $2}'`
|
|
iptables -t nat -A ipbis -j RETURN
|
|
iptables -t nat -D POSTROUTING -o ens18 -j ipbis
|
|
iptables -t nat -I POSTROUTING -o ens18 -j ipbis
|