From 3a79ef67e6ece4aaf7d3f4dac1bba396ca93099a Mon Sep 17 00:00:00 2001 From: wangyu- Date: Thu, 14 Dec 2017 08:42:06 -0800 Subject: [PATCH] Updated run udp2raw with non root account (markdown) --- run-udp2raw-with-non-root-account.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-udp2raw-with-non-root-account.md b/run-udp2raw-with-non-root-account.md index 3b04f11..849f671 100644 --- a/run-udp2raw-with-non-root-account.md +++ b/run-udp2raw-with-non-root-account.md @@ -7,7 +7,7 @@ You must have `setcap` as a prerequisite. `setcap` is shipped with most desktop sudo setcap cap_net_raw+ep udp2raw_amd64 ``` -2. run udp2raw with -g option instead of -a, then udp2raw will generate a iptables rule for you +2. run udp2raw with `-g` option instead of `-a`, then udp2raw will generate a iptables rule for you ``` ./udp2raw_amd64 -s -l0.0.0.0:4096 -r 127.0.0.1:7777 -k "passwd" --raw-mode faketcp -g ``` @@ -16,7 +16,7 @@ sudo setcap cap_net_raw+ep udp2raw_amd64 sudo iptables -I INPUT -p tcp -m tcp --dport 4096 -j DROP ``` -4. then run udp2raw without -g option +4. then run udp2raw without `-g` option ``` ./udp2raw_amd64 -s -l0.0.0.0:4096 -r 127.0.0.1:7777 -k "passwd" --raw-mode faketcp ```