Skip to content

Commit

Permalink
Fix: only redirect external wlan/eth devices
Browse files Browse the repository at this point in the history
This avoids redirect outgoing traffic from LXC or Docker containers
for example.
  • Loading branch information
ysbaddaden committed Oct 13, 2016
1 parent 8a04b25 commit 3ece05d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libexec/prax-iptables
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e

HTTP_PORT=20559
HTTPS_PORT=20558
DEVICES=$(ls /sys/class/net)
DEVICES=$(ls /sys/class/net | egrep '^(wlan|eth)[0-9]+')

case "$1" in
start)
Expand Down

0 comments on commit 3ece05d

Please sign in to comment.