blob: fa3744a21c99770bea1d99c11ea3161a5239bc52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## _epl_network begin
exec.prestart += "ifconfig epair{{ jail.num }}000 create || echo 'Failed to create epair{{ jail.num }}000'";
exec.prestart += "ifconfig epair{{ jail.num }}000a name epl{{ jail.num }}a";
exec.prestart += "ifconfig epair{{ jail.num }}000b name epl{{ jail.num }}b";
exec.prestart += "ifconfig epl{{ jail.num }}b ether random";
exec.prestart += "ifconfig brlan0 addm epl{{ jail.num }}a";
exec.poststart += "ifconfig epl{{ jail.num }}b vnet ${name}";
exec.poststart += "jexec ${name} ifconfig epl{{ jail.num }}b up";
exec.poststart += "ifconfig epl{{ jail.num }}a up";
exec.poststart += "jexec ${name} ifconfig epl{{ jail.num }}b {{ jail_lan_prefix }}.{{ jail.num + jail_ip_offset }}/{{ jail_lan_prefixlen }}";
exec.poststart += "jexec ${name} route delete default || echo 'No default route to delete'";
{% if not is_test_vm %}
exec.poststart += "jexec ${name} route add 10.6.210.0/24 {{ lan_ipv4_gateway }} || echo 'Failed to add Wireguard return route'";
{% endif %}
exec.poststop += "ifconfig epl{{ jail.num }}a destroy";
## _epl_network end
|