Project

General

Profile

Managing OpenWRT » History » Revision 2

Revision 1 (Nico Schottelius, 07/03/2020 11:04 AM) → Revision 2/31 (ll nu, 07/03/2020 11:49 AM)

h1. Managing OpenWRT 

 h2. Installing and configuring Jool 

 <pre> 
 opkg install kmod-jool 
 opkg install jool-tools 

 # Load the kernel module 
 modprobe jool_siit 

 # The range which will be the target for the 2nd NAT (if needed to reach a v4 ip) 
 jool_siit -6 2a0a:e5c0:2:10::/96 

 # Pick a v6 range to translate TO and a v4 range to translate from 
 jool_siit -e -a 2a0a:e5c0:17:1::/96 192.168.61.0/24 

 # Accept Router Advertisements to keep the default address 
 sysctl -w net.ipv6.conf.all.accept_ra=2 
 sysctl -w net.ipv6.conf.default.accept_ra=2 
 sysctl -w net.ipv6.conf.eth0.accept_ra=2 

 </pre>