I'd like to set privacy extensions enabled on ALL interfaces, including rmnet01 and others that connect to the carrier. I have tried setting /etc/sysctl.conf with
net.ipv6.conf.all.use_tempaddr = 2
Unfortunately, no dice. Something else specifically disabled it for all except wlan.
This is what it does to me:
So what else can I do to force this on? I looked in the boot.img and nothing there seems to disable it. Searching for tempaddr in the rom returns nothing too. My next attempt will be using sysctl commands in a startup script.
BTW I am on android 7, alpha rom for LG V20.
net.ipv6.conf.all.use_tempaddr = 2
Unfortunately, no dice. Something else specifically disabled it for all except wlan.
This is what it does to me:
Code:
net.ipv6.conf.all.use_tempaddr = 0
net.ipv6.conf.default.use_tempaddr = 0
net.ipv6.conf.dummy0.use_tempaddr = 0
net.ipv6.conf.lo.use_tempaddr = -1
net.ipv6.conf.rmnet_data0.use_tempaddr = 0
net.ipv6.conf.rmnet_data1.use_tempaddr = 0
net.ipv6.conf.rmnet_data2.use_tempaddr = 0
net.ipv6.conf.rmnet_data3.use_tempaddr = 0
net.ipv6.conf.rmnet_data4.use_tempaddr = 0
net.ipv6.conf.rmnet_data5.use_tempaddr = 0
net.ipv6.conf.rmnet_data6.use_tempaddr = 0
net.ipv6.conf.rmnet_data7.use_tempaddr = 0
net.ipv6.conf.rmnet_ipa0.use_tempaddr = 0
net.ipv6.conf.sit0.use_tempaddr = -1
net.ipv6.conf.teql0.use_tempaddr = 0
net.ipv6.conf.wlan0.use_tempaddr = 2
So what else can I do to force this on? I looked in the boot.img and nothing there seems to disable it. Searching for tempaddr in the rom returns nothing too. My next attempt will be using sysctl commands in a startup script.
BTW I am on android 7, alpha rom for LG V20.