Configuring networking¶
Configure a static network for your automotive operating system (OS) image.
Prerequisites
- A custom OS image manifest
Procedure
-
To change the network configuration defined in
defaults.ipp.yml
, add the followingstatic_ip
variable overrides to thempp-vars
section of your manifest:yaml {title="Static network configuration example"} mpp-vars: name: networking use_containers_extra_store: true # Configure a static network. use_static_ip: false # NetworkManager is not used. Hard-coded network configurations apply. static_ip: "169.254.6.1" static_ip_prefixlen: "24" static_gw: "169.254.6.2" static_dns: "169.254.6.3" static_ip_iface: eth1 static_ip_module: "virtio_net" static_ip_uuid: 7eb9g86b-8gef-5017-b62f-b81f67d69843
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.