- Machine connected to internet via `enp14s0` interface
- SoftEther virtual hub (SecureNAT disabled) bridged to `tap_softether` interface created in VPN Server Manager, and further configured by systemd-networkd:
Code: Select all
[Match] Name=tap_softether [Network] Address=192.168.100.1
- dnsmasq running with the following configuration:
Code: Select all
bind-interfaces interface=tap_softether listen-address=::,0.0.0.0 dhcp-range=192.168.100.11,192.168.100.250,255.255.255.0,12h dhcp-option=3,192.168.100.254
My goal is to host other services (web server, etc.) on the same machine where SoftEther VPN server is running, and have them listen on the `tap_softether` interface like dnsmasq seems to do.
This does not work, and when connected to the VPN I cannot even telnet anything on the server (via 192.168.100.1).
Moreover, I cannot figure out how dnsmasq is listening to the connections. I have tried stopping it and using netcat and socat to listen on port 53 (both tcp and udp), but I never get anything.
Please advise!