mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-07 12:06:27 +00:00
8 lines
230 B
Bash
Executable file
8 lines
230 B
Bash
Executable file
#!/bin/bash
|
|
|
|
local_if=eth0
|
|
container_ip=172.17.0.2
|
|
|
|
sudo iptables -t mangle -I PREROUTING 1 -i ${local_if} -j TEE --gateway ${container_ip}
|
|
sudo iptables -t mangle -I POSTROUTING 1 -o ${local_if} -j TEE --gateway ${container_ip}
|
|
|