We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow rattan-cli to access the internet.
rattan-cli
The text was updated successfully, but these errors were encountered:
A temporary walk-around on Ubuntu 22.04 :
# Allow ip forwarding echo 1 | sudo tee /proc/sys/net/ipv4/ip_forward #setup NAT sudo iptables -t nat -A POSTROUTING -s 10.0.0.0/8 -o <Your network interface> -j MASQUERADE #setup FORWARD sudo iptables -A FORWARD -s 10.0.0.0/8 -j ACCEPT sudo iptables -A FORWARD -d 10.0.0.0/8 -j ACCEPT
Run the script above before starting rattan. No lasting change after reboot.
Sorry, something went wrong.
No branches or pull requests
Allow
rattan-cli
to access the internet.The text was updated successfully, but these errors were encountered: