I've searched for information about this topic, but it seems to be a strange thing that almost nobody cares about.
I have found some old information, but either it is outdated or it is unanswered questions in forums.
I have tried asking to chatbots, but as expected, their answers are not correct/well documented.
I want to have one samba server for home use with different shares and read and/or write permissions on each one. And another one for read-only, non sensitive data (Like software, Windows ISOs, music, films, etc.), access from internet (opening a port 445 from outside to my internal read-only samba server 445 port), so I can access it from everywhere, without the need for SSH tunnels or whatever. In this second instance of samba server, I would only expose non-personal, non-sensitive data, and read-only access in all shares. That way, even if someone hacks my samba password (please correct me if I'm wrong) I would not loose anything.
I'd like to know:
- Is it possible in a single Ubuntu server to deploy two samba server services?
- How would I duplicate my ethernet port? I've already tried configuring my netplan file as this:
#This is the network config written by 'subiquity'
network:
version: 2
renderer: networkd
ethernets:
enp2s0:
dhcp4: false
dhcp6: false
bridges:
br0:
interfaces: [enp2s0]
addresses:
- 192.168.1.2/24:
label: "br0:0"
- 192.168.1.4/24:
label: "br0:1"
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
search: []
routes:
- to: default
via: 192.168.1.3
metric: 100
on-link: true
mtu: 1500
parameters:
stp: true
forward-delay: 4
dhcp4: no
dhcp6: no
and I think I could use br0:0 to one service and br0:1 to the other service.
- How should I configure the smbd.service file (original), and the new smbd2.service file (new one)?
- Do you have any other advice / notes regarding my question?