FreeBSD-12.3p5
This is a theoretical question.
I have a single homed (igb0) host which has a bridge configured so:
I use this with an IOCAGE jail on the host that uses vnet0 as its i/f and has a unique mac address.
What I wish to obtain is a virtual network interface on the host with an address from 192.168.0.0/16. A simple alias on igb0 will not suffice due to the i/f arrangement on the gateway router. The 192.168 address has to have a different mac address.
Is this possible ? If so then how do I do it?
This is a theoretical question.
I have a single homed (igb0) host which has a bridge configured so:
Code:
### Networking
## Setup a bridge to enable vnet
cloned_interfaces="bridge0"
ifconfig_bridge0="addm igb0"
ifconfig_igb0="up"
### Base system - this is bridged on igb0
ifconfig_igb0="inet 216.185.71.41/25"
I use this with an IOCAGE jail on the host that uses vnet0 as its i/f and has a unique mac address.
What I wish to obtain is a virtual network interface on the host with an address from 192.168.0.0/16. A simple alias on igb0 will not suffice due to the i/f arrangement on the gateway router. The 192.168 address has to have a different mac address.
Is this possible ? If so then how do I do it?