ok I don't know what I am missing here:
my router provides DNS and works properly
router has local ip adreess 192.168.6.1/24
BSD server has dc0 interface set to 192.168.6.3/24
BSD server has vlan1 interface created with no parent device
vlan1 has the following IPs set to it:
192.168.7.1/28
192.168.7.2/28
192.168.7.3/28
192.168.7.4/28
my BSD jail is set to use address 192.168.7.3
my pf.conf is as follows:
ok so here is the issue I can talk to the HTTP server, but whenever I try to talk to anything from the jail it fails to communicate. The default router I set for the jail is 192.168.7.1 which I have set aside on vlan1 for the host system. any ideas?
my router provides DNS and works properly
router has local ip adreess 192.168.6.1/24
BSD server has dc0 interface set to 192.168.6.3/24
BSD server has vlan1 interface created with no parent device
vlan1 has the following IPs set to it:
192.168.7.1/28
192.168.7.2/28
192.168.7.3/28
192.168.7.4/28
my BSD jail is set to use address 192.168.7.3
my pf.conf is as follows:
Code:
ext_if="dc0"
int_if="vlan1"
external_addr="192.168.6.3"
internal_net="192.168.7.0/28"
net on $int_if from $internal_net to any -> ($ext_if)
rdr on $ext_if proto tcp from any to $external_addr/32 port 80 -> 192.168.7.3 port 80
ok so here is the issue I can talk to the HTTP server, but whenever I try to talk to anything from the jail it fails to communicate. The default router I set for the jail is 192.168.7.1 which I have set aside on vlan1 for the host system. any ideas?