Skip to content
Snippets Groups Projects
Commit 7197f99c authored by Erisa A's avatar Erisa A Committed by Konrad Zemek
Browse files

Add IPv6 routes to example service

This is necessary for the example since it says `-6 "[::1]:1000"`
parent 763af020
No related branches found
No related tags found
No related merge requests found
......@@ -7,9 +7,13 @@ Type=simple
LimitNOFILE=65535
ExecStartPost=/sbin/ip rule add from 127.0.0.1/8 iif lo table 123
ExecStartPost=/sbin/ip route add local 0.0.0.0/0 dev lo table 123
ExecStartPost=/sbin/ip -6 rule add from ::1/128 iif lo table 123
ExecStartPost=/sbin/ip -6 route add local ::/0 dev lo table 123
ExecStart=/usr/bin/go-mmproxy -4 127.0.0.1:1000 -6 "[::1]:1000" -allowed-subnets /usr/share/path-prefixes.txt -l 0.0.0.0:1234
ExecStopPost=/sbin/ip rule del from 127.0.0.1/8 iif lo table 123
ExecStopPost=/sbin/ip route del local 0.0.0.0/0 dev lo table 123
ExecStopPost=/sbin/ip -6 rule del from ::1/128 iif lo table 123
ExecStopPost=/sbin/ip -6 route del local ::/0 dev lo table 123
Restart=on-failure
RestartSec=10s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment