Skip to content
New issue

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

IPv6 Adress Issue #27

Open
crackerjacques opened this issue Jan 12, 2025 · 6 comments
Open

IPv6 Adress Issue #27

crackerjacques opened this issue Jan 12, 2025 · 6 comments
Labels
enhancement New feature or request

Comments

@crackerjacques
Copy link

It may be better to create such a configuration file in some cases(e.g. SDR++, ), as the PlutoSDR plug-in for some SDR software does not support the handling of IPv6 addresses or may cause crashes.

# tezuka_fw/board/pluto/overlay_maia/etc/sysctl.d/40-ipv6.conf

net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

And then turn it on and off with a shell script.

#!/bin/sh

enable_ipv6()
{
    echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6
}

disable_ipv6()
{
    echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
}

if [ "$1" = "1" ] ; then
    disable_ipv6
elif [ "$1" = "0" ] ; then
    enable_ipv6
fi
@F5OEO
Copy link
Owner

F5OEO commented Jan 12, 2025

OK to disable ipv6 for some cases. Can you elaborate which software is crashing with ipv6 ?

@F5OEO F5OEO added the enhancement New feature or request label Jan 12, 2025
@crackerjacques
Copy link
Author

PlutoSDR Plugin for SDR++.

@VasylSamoilov
Copy link

disabling ipv6 for whole platform due to plugin for a single client may be not the best way to do it.

@F5OEO
Copy link
Owner

F5OEO commented Jan 12, 2025

Please use the sdrpp fork wich is not buggy and extended feauturs (CS8 and rx1/rx2 selection) : https://github.com/F5OEO/SDRPlusPlus

@crackerjacques
Copy link
Author

disabling ipv6 for whole platform due to plugin for a single client may be not the best way to do it.
plutosdr_source.tar.gz

I was thinking about that myself and ended up Tinkering with the PlutoSDR Plugin.

@povnz
Copy link

povnz commented Jan 18, 2025

I'm on a mac I also can confirm SDR++ (Fork version or non Fork) Crashes when running Tezuka (LibreSDR) if I open the app before connecting the SDR, then connect ethernet, I can tap reresh and the LibreSDR appears. This issue is not present on hz12opensource/libresdr Firmware based on v0.38

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants