Hi all 
I already setup 3 webserver from ezjail in my local network with aliases address as per below :
And I also configure address pool for my PF
The question is, I'm planning to put my server at the Data Center and configure my interface with public IP, is it possible PF will load balancing to my jail web server with private IP ?
Thanks for helping

I already setup 3 webserver from ezjail in my local network with aliases address as per below :
Code:
ifconfig_rl0="inet 192.168.1.106 netmask 255.255.255.0"
ifconfig_rl0_alias0="inet 192.168.1.108 netmask 255.255.255.0" #httpd1
ifconfig_rl0_alias1="inet 192.168.1.109 netmask 255.255.255.0" #httpd2
ifconfig_rl0_alias2="inet 192.168.1.110 netmask 255.255.255.0" #httpd3
ifconfig_rl0_alias3="inet 192.168.1.111 netmask 255.255.255.0" #mysql server
Code:
rl0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 00:60:67:70:d6:f3
inet 192.168.1.106 netmask 0xffffff00 broadcast 192.168.1.255
inet 192.168.1.108 netmask 0xffffff00 broadcast 192.168.1.255
inet 192.168.1.109 netmask 0xffffff00 broadcast 192.168.1.255
inet 192.168.1.110 netmask 0xffffff00 broadcast 192.168.1.255
inet 192.168.1.111 netmask 0xffffff00 broadcast 192.168.1.255
media: Ethernet autoselect (100baseTX <full-duplex>)
status: active
And I also configure address pool for my PF
Code:
webserver="{192.168.1.108, 192.168.1.109, 192.168.1.110}"
rdr on $ext_if proto tcp from any to any port 80 -> $webserver round-robin sticky-address
The question is, I'm planning to put my server at the Data Center and configure my interface with public IP, is it possible PF will load balancing to my jail web server with private IP ?
Thanks for helping
