This documentation is for a release that is no longer maintained
See documentation for the latest supported version 3 or the latest supported version 4.Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 13. Configuring interface-level network sysctls
In Linux, sysctl allows an administrator to modify kernel parameters at runtime. You can modify interface-level network sysctls using the tuning Container Network Interface (CNI) meta plugin. The tuning CNI meta plugin operates in a chain with a main CNI plugin as illustrated.
			The main CNI plugin assigns the interface and passes this to the tuning CNI meta plugin at runtime. You can change some sysctls and several interface attributes (promiscuous mode, all-multicast mode, MTU, and MAC address) in the network namespace by using the tuning CNI meta plugin. In the tuning CNI meta plugin configuration, the interface name is represented by the IFNAME token, and is replaced with the actual name of the interface at runtime.
		
In OpenShift Container Platform, the tuning CNI meta plugin only supports changing interface-level network sysctls.
13.1. Configuring the tuning CNI
				The following procedure configures the tuning CNI to change the interface-level network net.ipv4.conf.IFNAME.accept_redirects sysctl. This example enables accepting and sending ICMP-redirected packets.
			
Procedure
- Create a network attachment definition, such as - tuning-example.yaml, with the following content:- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow - 1
- Specifies the name for the additional network attachment to create. The name must be unique within the specified namespace.
- 2
- Specifies the namespace that the object is associated with.
- 3
- Specifies the CNI specification version.
- 4
- Specifies the name for the configuration. It is recommended to match the configuration name to the name value of the network attachment definition.
- 5
- Specifies the name of the main CNI plugin to configure.
- 6
- Specifies the name of the CNI meta plugin.
- 7
- Specifies the sysctl to set.
 - An example yaml file is shown here: - Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Apply the yaml by running the following command: - oc apply -f tuning-example.yaml - $ oc apply -f tuning-example.yaml- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow - Example output - networkattachmentdefinition.k8.cni.cncf.io/tuningnad created - networkattachmentdefinition.k8.cni.cncf.io/tuningnad created- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Create a pod such as - examplepod.yamlwith the network attachment definition similar to the following:- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow - 1
- Specify the name of the configuredNetworkAttachmentDefinition.
- 2
- runAsUsercontrols which user ID the container is run with.
- 3
- runAsGroupcontrols which primary group ID the containers is run with.
- 4
- allowPrivilegeEscalationdetermines if a pod can request to allow privilege escalation. If unspecified, it defaults to true. This boolean directly controls whether the- no_new_privsflag gets set on the container process.
- 5
- capabilitiespermit privileged actions without giving full root access. This policy ensures all capabilities are dropped from the pod.
- 6
- runAsNonRoot: truerequires that the container will run with a user with any UID other than 0.
- 7
- RuntimeDefaultenables the default seccomp profile for a pod or container workload.
 
- Apply the yaml by running the following command: - oc apply -f examplepod.yaml - $ oc apply -f examplepod.yaml- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Verify that the pod is created by running the following command: - oc get pod - $ oc get pod- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow - Example output - NAME READY STATUS RESTARTS AGE tunepod 1/1 Running 0 47s - NAME READY STATUS RESTARTS AGE tunepod 1/1 Running 0 47s- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Log in to the pod by running the following command: - oc rsh tunepod - $ oc rsh tunepod- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Verify the values of the configured sysctl flags. For example, find the value - net.ipv4.conf.net1.accept_redirectsby running the following command:- sysctl net.ipv4.conf.net1.accept_redirects - sh-4.4# sysctl net.ipv4.conf.net1.accept_redirects- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow - Expected output - net.ipv4.conf.net1.accept_redirects = 1 - net.ipv4.conf.net1.accept_redirects = 1- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
