Configuring networking¶
Configure a static network for your automotive operating system (OS) image.
Prerequisites
- A custom OS image manifest
Procedure
-
Add SSH packages to your manifest:
-
Configure the
static_ip
variable overrides:Example static network configuration# Configure a static network use_static_ip: true # NetworkManager is not used. Hard-coded network configurations apply. static_ip: "169.254.6.21" static_ip_prefixlen: 24 static_gw: "169.254.6.2" static_dns: "169.254.6.3" static_ip_iface: eth0 static_ip_module: "virtio_net"
-
Enable SSH
root
access: -
Enable the SSH service through
systemd
:
Next steps¶
- Configure the firewall for your OS image.
- Configure interprocess communications (IPCs) between your ASIL and QM containers and across partitions.
- Encrypt your filesystem.
- Enable BlueChi orchestration.
- Build your automotive OS image with
kernel-automotive
or your custom kernel.