|
|
@ -1,7 +1,6 @@ |
|
|
|
package network |
|
|
|
|
|
|
|
import ( |
|
|
|
"XProxy/cmd/common" |
|
|
|
log "github.com/sirupsen/logrus" |
|
|
|
"strconv" |
|
|
|
) |
|
|
@ -10,34 +9,34 @@ func loadV4TProxy(v4 Config, v4SysCidr []string) { |
|
|
|
log.Info("Setting up TProxy of IPv4") |
|
|
|
tableNum := strconv.Itoa(v4.RouteTable) |
|
|
|
v4Bypass := append(v4SysCidr, v4.Bypass...) |
|
|
|
common.RunCommand("ip", "-4", "rule", "add", "fwmark", "1", "table", tableNum) |
|
|
|
common.RunCommand("ip", "-4", "route", "add", "local", "0.0.0.0/0", "dev", "lo", "table", tableNum) |
|
|
|
common.RunCommand("iptables", "-t", "mangle", "-N", "XPROXY") |
|
|
|
run("ip", "-4", "rule", "add", "fwmark", "1", "table", tableNum) |
|
|
|
run("ip", "-4", "route", "add", "local", "0.0.0.0/0", "dev", "lo", "table", tableNum) |
|
|
|
run("iptables", "-t", "mangle", "-N", "XPROXY") |
|
|
|
log.Infof("Setting up IPv4 bypass CIDR -> %v", v4Bypass) |
|
|
|
for _, cidr := range v4Bypass { |
|
|
|
common.RunCommand("iptables", "-t", "mangle", "-A", "XPROXY", "-d", cidr, "-j", "RETURN") |
|
|
|
run("iptables", "-t", "mangle", "-A", "XPROXY", "-d", cidr, "-j", "RETURN") |
|
|
|
} |
|
|
|
common.RunCommand("iptables", "-t", "mangle", "-A", "XPROXY", |
|
|
|
run("iptables", "-t", "mangle", "-A", "XPROXY", |
|
|
|
"-p", "tcp", "-j", "TPROXY", "--on-port", strconv.Itoa(v4.TProxyPort), "--tproxy-mark", "1") |
|
|
|
common.RunCommand("iptables", "-t", "mangle", "-A", "XPROXY", |
|
|
|
run("iptables", "-t", "mangle", "-A", "XPROXY", |
|
|
|
"-p", "udp", "-j", "TPROXY", "--on-port", strconv.Itoa(v4.TProxyPort), "--tproxy-mark", "1") |
|
|
|
common.RunCommand("iptables", "-t", "mangle", "-A", "PREROUTING", "-j", "XPROXY") |
|
|
|
run("iptables", "-t", "mangle", "-A", "PREROUTING", "-j", "XPROXY") |
|
|
|
} |
|
|
|
|
|
|
|
func loadV6TProxy(v6 Config, v6SysCidr []string) { |
|
|
|
log.Info("Setting up TProxy of IPv6") |
|
|
|
tableNum := strconv.Itoa(v6.RouteTable) |
|
|
|
v6Bypass := append(v6SysCidr, v6.Bypass...) |
|
|
|
common.RunCommand("ip", "-6", "rule", "add", "fwmark", "1", "table", tableNum) |
|
|
|
common.RunCommand("ip", "-6", "route", "add", "local", "::/0", "dev", "lo", "table", tableNum) |
|
|
|
common.RunCommand("ip6tables", "-t", "mangle", "-N", "XPROXY6") |
|
|
|
run("ip", "-6", "rule", "add", "fwmark", "1", "table", tableNum) |
|
|
|
run("ip", "-6", "route", "add", "local", "::/0", "dev", "lo", "table", tableNum) |
|
|
|
run("ip6tables", "-t", "mangle", "-N", "XPROXY6") |
|
|
|
log.Infof("Setting up IPv6 bypass CIDR -> %v", v6Bypass) |
|
|
|
for _, cidr := range v6Bypass { |
|
|
|
common.RunCommand("ip6tables", "-t", "mangle", "-A", "XPROXY6", "-d", cidr, "-j", "RETURN") |
|
|
|
run("ip6tables", "-t", "mangle", "-A", "XPROXY6", "-d", cidr, "-j", "RETURN") |
|
|
|
} |
|
|
|
common.RunCommand("ip6tables", "-t", "mangle", "-A", "XPROXY6", |
|
|
|
run("ip6tables", "-t", "mangle", "-A", "XPROXY6", |
|
|
|
"-p", "tcp", "-j", "TPROXY", "--on-port", strconv.Itoa(v6.TProxyPort), "--tproxy-mark", "1") |
|
|
|
common.RunCommand("ip6tables", "-t", "mangle", "-A", "XPROXY6", |
|
|
|
run("ip6tables", "-t", "mangle", "-A", "XPROXY6", |
|
|
|
"-p", "udp", "-j", "TPROXY", "--on-port", strconv.Itoa(v6.TProxyPort), "--tproxy-mark", "1") |
|
|
|
common.RunCommand("ip6tables", "-t", "mangle", "-A", "PREROUTING", "-j", "XPROXY6") |
|
|
|
run("ip6tables", "-t", "mangle", "-A", "PREROUTING", "-j", "XPROXY6") |
|
|
|
} |
|
|
|