Open lgrn opened 10 months ago
Bastille rdr does not work on secondary interfaces. What I've been doing for a few years is what you are suggesting here. An example I manually add rdr rules to pf.conf passing on my mesh vpn interface.
rdr pass on $zt_if inet proto tcp from any to $zt_if port 445 -> 10.10.10.11 port 445
Assuming this is a cloud VM or something, I would suggest leaving the default ext_if alone and manually setting all the RDRs in pf.conf for your vpn interface, which is what I do. If this server is on a lan, you can use bastille rdr as normal for lan access but manually do RDRs for your VPN. Having an interface option to rdr would be a nice feature though.
I'm trying out Bastille, and I have a setup where I'm using two different interfaces: one regular ethernet (
em0
) for regular outgoing traffic, and one "vpn-interface" (let's call itvpn0
) for things like monitoring to my BSD host.As I understand it, setting
ext_if
inpf.conf
is not only for convenience in rules using that variable, but is also assumed by Bastille to be the interface that traffic will be hitting when doing redirects (rdr). The problem for me is that I don't want to create a redirect for myext_if
, but forvpn0
. So instead of:I would actually want it to say something like this (
vpn0
):I can't find any way to set an interface when using
bastille rdr
, so I'm assuming this functionality doesn't exist and always assumesext_if
-- but is it possible in any sane way? Should I not usebastille rdr
at all, and instead and just set something up inpf.conf
, and if so any suggestions on what?I don't think simply changing
ext_if
is a good idea, because thisvpn0
interface does not have regular Internet access.