|
| 1 | +// Module included in the following assemblies: |
| 2 | +// |
| 3 | +// * networking/ptp/configuring-ptp.adoc |
| 4 | + |
| 5 | +:_mod-docs-content-type: PROCEDURE |
| 6 | +[id="configuring-linuxptp-services-oc-dual-port_{context}"] |
| 7 | += Configuring linuxptp services as an ordinary clock with dual-port NIC redundancy |
| 8 | + |
| 9 | +You can configure `linuxptp` services (`ptp4l`, `phc2sys`) as an ordinary clock with dual-port NIC redundancy by creating a `PtpConfig` custom resource (CR) object. |
| 10 | +In a dual-port NIC configuration for an ordinary clock, if one port fails, the standby port takes over, maintaining PTP timing synchronization. |
| 11 | + |
| 12 | +.Prerequisites |
| 13 | + |
| 14 | +* Install the OpenShift CLI (`oc`). |
| 15 | +* Log in as a user with `cluster-admin` privileges. |
| 16 | +* Install the PTP Operator. |
| 17 | +* Check that {product-title} supports your dual-port NIC as an ordinary clock with added redundancy. For further information, see "Using dual-port NICs to improve redundancy for PTP ordinary clocks". |
| 18 | +
|
| 19 | +.Procedure |
| 20 | + |
| 21 | +. Create the following `PtpConfig` CR, and then save the YAML in the `oc-dual-port-ptp-config.yaml` file. |
| 22 | ++ |
| 23 | +.Example PTP ordinary clock dual-port configuration |
| 24 | +[source,yaml] |
| 25 | +---- |
| 26 | +apiVersion: ptp.openshift.io/v1 |
| 27 | +kind: PtpConfig |
| 28 | +metadata: |
| 29 | + name: ordinary-clock-1 |
| 30 | + namespace: openshift-ptp |
| 31 | +spec: |
| 32 | + profile: |
| 33 | + - name: oc-dual-port |
| 34 | + phc2sysOpts: -a -r -n 24 -N 8 -R 16 -u 0 <1> |
| 35 | + ptp4lConf: |- <2> |
| 36 | + [ens3f2] |
| 37 | + masterOnly 0 |
| 38 | + [ens3f3] |
| 39 | + masterOnly 0 |
| 40 | + |
| 41 | + [global] |
| 42 | + # |
| 43 | + # Default Data Set |
| 44 | + # |
| 45 | + slaveOnly 1 <3> |
| 46 | + #... |
| 47 | +---- |
| 48 | +<1> Specify the system config options for the `ptp4l` service. |
| 49 | +<2> Specify the interface configuration for the `ptp4l` service. In this example, setting `masterOnly 0` for the `ens3f2` and `ens3f3` interfaces enables both ports on the `ens3` interface to run as leader or follower clocks. In combination with the `slaveOnly 1` specification, this configuration ensures one port operates as the active ordinary clock, and the other port operates as a standby ordinary clock in the `Listening` port state. |
| 50 | +<3> Configures `ptp4l` to run as an ordinary clock only. |
| 51 | +
|
| 52 | +. Create the `PtpConfig` CR by running the following command: |
| 53 | ++ |
| 54 | +[source,terminal] |
| 55 | +---- |
| 56 | +$ oc create -f oc-dual-port-ptp-config.yaml |
| 57 | +---- |
| 58 | +
|
| 59 | +.Verification |
| 60 | +
|
| 61 | +. Check that the `PtpConfig` profile is applied to the node. |
| 62 | +
|
| 63 | +.. Get the list of pods in the `openshift-ptp` namespace by running the following command: |
| 64 | ++ |
| 65 | +[source,terminal] |
| 66 | +---- |
| 67 | +$ oc get pods -n openshift-ptp -o wide |
| 68 | +---- |
| 69 | ++ |
| 70 | +.Example output |
| 71 | +[source,terminal] |
| 72 | +---- |
| 73 | +NAME READY STATUS RESTARTS AGE IP NODE |
| 74 | +linuxptp-daemon-4xkbb 1/1 Running 0 43m 10.1.196.24 compute-0.example.com |
| 75 | +linuxptp-daemon-tdspf 1/1 Running 0 43m 10.1.196.25 compute-1.example.com |
| 76 | +ptp-operator-657bbb64c8-2f8sj 1/1 Running 0 43m 10.129.0.61 control-plane-1.example.com |
| 77 | +---- |
| 78 | +
|
| 79 | +.. Check that the profile is correct. Examine the logs of the `linuxptp` daemon that corresponds to the node you specified in the `PtpConfig` profile. Run the following command: |
| 80 | ++ |
| 81 | +[source,terminal] |
| 82 | +---- |
| 83 | +$ oc logs linuxptp-daemon-4xkbb -n openshift-ptp -c linuxptp-daemon-container |
| 84 | +---- |
| 85 | ++ |
| 86 | +.Example output |
| 87 | +[source,terminal] |
| 88 | +---- |
| 89 | +I1115 09:41:17.117596 4143292 daemon.go:107] in applyNodePTPProfile |
| 90 | +I1115 09:41:17.117604 4143292 daemon.go:109] updating NodePTPProfile to: |
| 91 | +I1115 09:41:17.117607 4143292 daemon.go:110] ------------------------------------ |
| 92 | +I1115 09:41:17.117612 4143292 daemon.go:102] Profile Name: oc-dual-port |
| 93 | +I1115 09:41:17.117616 4143292 daemon.go:102] Interface: ens787f1 |
| 94 | +I1115 09:41:17.117620 4143292 daemon.go:102] Ptp4lOpts: -2 --summary_interval -4 |
| 95 | +I1115 09:41:17.117623 4143292 daemon.go:102] Phc2sysOpts: -a -r -n 24 -N 8 -R 16 -u 0 |
| 96 | +I1115 09:41:17.117626 4143292 daemon.go:116] ------------------------------------ |
| 97 | +---- |
0 commit comments