|
|
|
|
|
by anxman
3650 days ago
|
|
Internal IPv6 addresses are publicly addressable on Webpass but you may have to enable it on your router. If you have terminal access to your router and it supports iptables, you can manually enable forwarding for a specific port like this: ip6tables -I INPUT -p tcp --dport 5005 -j ACCEPT
ip6tables -I INPUT -p tcp --dport 5005 -j ACCEPT
ip6tables -I FORWARD -p tcp --dport 5005 -j ACCEPT
ip6tables -I FORWARD -p tcp --dport 5005 -j ACCEPT
ip6tables -I FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT Note that if you're using this for Api callbacks like AWS Lamda, they do not support IPv6 and then your best bet is a VPN tunneled to your local device. Good luck! |
|