request for help with networking sorcery (a bit long)
let's see if i can explain this in a way that makes sense and doesn't make me sound silly
i want to set up network file access for my home's local network, so i can access files from various devices without having to manually copy them over. every potential client i have is perfectly fine with SMB 3.0... except for one (a playstation 2 with some homebrew software), which only accepts SMB 1.0 for whatever reason. i don't want to enable a deprecated file sharing protocol for the entire network, so i'd like to limit it to as close to the troublesome client as i can.
is it possible to set up some kind of "relay," like in the diagram, that presents a network share or a subset of it to the ps2 via SMB 1.0 while the rest of the network can use newer protocols?
re: request for help with networking sorcery (a bit long)
@typhlosion if you're using samba, you could run a second smbd
instance on a different port that has SMB1 enabled and has very restricted access controls.
otherwise, I have no idea if a transparent SMB relay exists, but you could always just have a different machine mount the PS2 share with e.g. Linux's CIFS support, and then run its own smbd
that exports that as a share :p
re: request for help with networking sorcery (a bit long)
@Skirmisher that would help, thank you!
re: request for help with networking sorcery (a bit long)
@typhlosion here's what I came up with