jails How to set more then one vnet interface

Hello. I created and run one jail&vnet.
I have such settings on HOST/etc/jail.conf
Code:
shumbely {
    path = "/usr/home/jails/shumbely";         # Path to the jail
    host.hostname = _shumbely_;                  # Hostname
    exec.consolelog = "/var/log/jail_shumbely_console.log";
    exec.system_user = "root";
    exec.jail_user = "root";
    exec.clean;

    vnet;
    vnet.interface = "e0b_shumbely";               
    exec.prestart += "jib addm shumbely re0";
    exec.poststop += "jib destroy shumbely";
 
    mount.devfs;                               # Mount devfs inside the jail
    allow.raw_sockets;                            #allow ping-pong
    devfs_ruleset="5";                            #devfs ruleset for this jail
    allow.set_hostname = 1;
}
If I want to have another one interface for another jail, what must I point?
 
Back
Top