Wednesday, February 15, 2023

connect to readynas with 4.x firmware which doesn't support TLS 2 or SMB 1.0

 
Readynas older versions
Notes about connecting to older Readynas 4.x isn't available with (or may not be) TLS 2 support.  Windows 10 has killed TLS below that.  admin page won't work even with warning.

The issue is Firefox (maybe other browsers) enforce this.  Not sure when that was also done with the system support, but undoubtedly will be there at some point.

Firefox setting:
bring up about:config, acknowledge warning
security.tls.version.max
security.tls.version.min
Set min to 1, so that will connect to 1.x web pages.  Max doesn't need to be changed in this case.

Windows SMB
 Windows 10 SMB may be set to not support 1.0.  in a home setting this may be used if the network is secured and not visible or available to outside or unauthorized connections.
hit windows button, type in "Turn Windows Features On or Off" or some portion till matching that.
scroll to SMB 1.0/CIFS File Sharing Support and check the box.  Apply.  May take some time but will have progress box.  took 3min on a win10 client on ESXI host.

about:config  security.tls.version.min = 1  leave max = 4 (as of ver 104 firefox)


--30--

Saturday, February 11, 2023

using docker notes

Access page while running
 
how to log into container
 
finding container
docker ps -a

docker system in
docker info
 
run an ubuntu container
docker run -it ubuntu bash

run commands inside container (example, sub container id for -it for below)
docker exec -it 52b3bd362c40 id
 
run a shell (simple) inside a running container
docker exec -u 0 -it 0f629993d2c3 sh

with snap version of docker, containers are in directories such as
/var/snap/docker/common/var-lib-docker/overlay2/0e...6e7/diff/app
 
stop a container instance
docker stop <container>
 
list files
docker exec <container> ls
 
copy files
docker cp  <container>:relative (or abs) path  not wildcards seem to work

WatchYourLAN notes
notes for sqlite
  • install sqlite on host
  • sqlite3 db.sqlite
  • sqlite> .dump [. at start is required]
  • copy and save the resulting SQL file to something.sql for future use
  • use site https://inloop.github.io/sqlite-viewer/# to upload the db.sqlite file
  • need to clone the sqlite-viewer site to local server so it doesn't vanish and update here.
github
 
reddit support / discussion