Skip to content

Commit

Permalink
ioc_start.py: allow setting IP address on lo0
Browse files Browse the repository at this point in the history
Currently, iocage ignores IP addresses given for the loopback interface
lo0 that exists by default in a VNET jail. Adding addresses to that
interface can be useful, for instance to implement rfc7404 addressing
where link-local addresses are used for interconnections, and routable
addresses are set on loopback interfaces.

This commit enables setting additional addresses on the lo0 interface
using the usual ip4_addr or ip6_addr settings.
For instance: ip4_addr='lo0|192.168.2.10'

Closes freebsd#46
  • Loading branch information
Defenso-QTH committed Nov 19, 2024
1 parent d48f123 commit 5016ebf
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
4 changes: 2 additions & 2 deletions iocage_lib/ioc_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ def start_network_interface_vnet(

dhcp = self.get('dhcp')

ifaces = []
ifaces = ['lo0']

for addrs, gw, ipv6 in net_configs:
if (
Expand All @@ -1193,7 +1193,7 @@ def start_network_interface_vnet(
# They didn't supply an interface, assuming default
iface, ip = "vnet0", addr

if iface not in nics:
if iface not in nics and iface != 'lo0':
continue

if iface not in ifaces:
Expand Down
28 changes: 27 additions & 1 deletion tests/functional_tests/0004_start_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ def test_02_start_rc_jail(invoke_cli, resource_selector):
for jail in resource_selector.rcjails:
assert jail.running is True, f'{jail.name} not running'

# TODO: Let's also start jails in a single command to test that out

# Network-related tests belong here because the code is only executed at jail
# start time.
@require_root
@require_zpool
def test_03_create_and_start_nobridge_vnet_jail(release, jail, invoke_cli):
Expand Down Expand Up @@ -109,3 +110,28 @@ def test_03_create_and_start_nobridge_vnet_jail(release, jail, invoke_cli):

finally:
os.remove(path)


@require_root
@require_zpool
def test_04_vnet_jail_with_loopback_alias(release, jail, invoke_cli):
jail = jail('loopback_alias_jail')

invoke_cli([
'create', '-r', release, '-n', jail.name,
'boot=on', 'vnet=on', 'defaultrouter=none',
f'ip4_addr=lo0|192.168.2.10'
])

assert jail.exists is True
assert jail.running is True

stdout, stderr = jail.run_command(['ifconfig', 'lo0'])
assert bool(stderr) is False, f'Ifconfig returned an error: {stderr}'
assert '192.168.2.10' in stdout, (
'Could not set address on loopback interface.'
)

invoke_cli([
'destroy', jail.name, '-f'
])

0 comments on commit 5016ebf

Please sign in to comment.