Hello,
just bought a Slate Plus and try to install Jool on it, but it seems that a package is not available.
"jool-tools" is available, but "kmod-jool" is not..
is there a way to add it ?
thanks,
ffred
Hello,
just bought a Slate Plus and try to install Jool on it, but it seems that a package is not available.
"jool-tools" is available, but "kmod-jool" is not..
is there a way to add it ?
thanks,
ffred
I'm searching a way to be able to reach an old NAS with only ipv4 support from outside.
It was fine when i was with a fixed ipv4 address but now i'm on ipv6 and a shared ipv4. So can't reach anymore from outside on ipv4.
It seems that with nat64 on jool i could try to solve my problem.
Hello,
Could you please try to install this plugin socat
? Probably it can meet your need.
Sample:
socat
socat TCP6-LISTEN:10000,reuseaddr,fork TCP4:192.168.2.100:8000 &
Command parsing:
TCP6-LISTEN:10000
means TCP IPv6 forwarding. The forwarding port 10000 can also be replaced with TCP4, UDP4, UDP6, etc., and the port can also be changed depend on your need.
TCP4:192.168.2.100:8000
means forwarding the TCP IPv6 to TCP IPv4, 192.168.2.100 is the client address, and 8000 is the service port.
WAN IPv6:10000 -> LAN IPv4:8000
uci add firewall rule # =cfg1e92bd
uci set firewall.@rule[-1].dest_port='10000'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].name='socat-1'
uci set firewall.@rule[-1].target='ACCEPT'
uci add_list firewall.@rule[-1].proto='tcp'
uci commit
/etc/init.d/firewall restart
Hi Bruce,
thanks a lot for your detailed answer. looks great..!
hope to be able to test that this weekend. will let you know.
hello Bruce,
seems to be working but I got another problem with my box config and don't have much time today for that (family at home..).
thanks a lot !
ffred