Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion module.prop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id=tether_unblock
name=Tether Unblock
version=v2.1
version=v2.1-add-ifs
versionCode=3
author=Denis Efremov (@evdenis)
description=Allows bypassing tethering blocking by mobile operators.
Expand Down
2 changes: 1 addition & 1 deletion service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ HAS_IP6TABLES=false
[ -x "$(command -v iptables)" ] && HAS_IPTABLES=true
[ -x "$(command -v ip6tables)" ] && HAS_IP6TABLES=true

for IFACE in rndis0 wlan0 wlan1 ap0 bt-pan; do
for IFACE in rndis0 wlan0 wlan1 wlan2 wlan3 ncm0 ncm1 ncm2 ncm3 ap0 bt-pan; do
if $HAS_IPTABLES; then
iptables -t mangle -A PREROUTING -i "$IFACE" -j TTL --ttl-inc 1
iptables -t mangle -I POSTROUTING -o "$IFACE" -j TTL --ttl-inc 1
Expand Down