To bind IPs to your FreeBSD server:
Open /etc/rc.conf with your editor
# edit /etc/rc.conf
You should see a line which looks like this:
ifconfig_em0="inet 67.15.18.500 netmask 255.255.254.0"
Directly under it add this
ifconfig_em0_alias0="inet 67.15.18.501 netmask 0xffffffff"
Change 67.15.18.501 to whatever your additional IP is.
If you have more then one additional IPs increase the number after alias for each ip
example:
ifconfig_em0_alias0="inet 67.15.18.501 netmask 0xffffffff"
ifconfig_em0_alias1="inet 67.15.18.502 netmask 0xffffffff"
ifconfig_em0_alias2="inet 67.15.18.503 netmask 0xffffffff"
etc...
Save the file and run /etc/netstart
