diff --git a/modules/cnv-creating-bridge-nad-cli.adoc b/modules/cnv-creating-bridge-nad-cli.adoc
index 4b8f310f26c9..01a4b50af909 100644
--- a/modules/cnv-creating-bridge-nad-cli.adoc
+++ b/modules/cnv-creating-bridge-nad-cli.adoc
@@ -6,7 +6,7 @@
= Creating a Linux bridge NetworkAttachmentDefinition in the CLI
As a network administrator, you can configure a NetworkAttachmentDefinition
-of type `cnv-bridge` to provide Layer-2 networking to Pods and virtual machines.
+of type `bridge` to provide Layer-2 networking to Pods and virtual machines.
.Procedure
@@ -28,7 +28,7 @@ spec:
"name": "cnv-bridge-conf", <2>
"plugins": [
{
- "type": "cnv-bridge", <3>
+ "type": "bridge", <3>
"bridge": "br0" <4>
},
{
diff --git a/modules/cnv-pxe-booting-with-mac-address.adoc b/modules/cnv-pxe-booting-with-mac-address.adoc
index 5073a5f6900b..3a0c4c296895 100644
--- a/modules/cnv-pxe-booting-with-mac-address.adoc
+++ b/modules/cnv-pxe-booting-with-mac-address.adoc
@@ -35,16 +35,16 @@ spec:
"name": "pxe-net-conf",
"plugins": [
{
- "type": "cnv-bridge",
+ "type": "bridge",
"bridge": "br1"
},
{
- "type": "cnv-tuning" <1>
+ "type": "tuning" <1>
}
]
}'
----
-<1> The `cnv-tuning` plug-in provides support for custom MAC addresses.
+<1> The `tuning` plug-in provides support for custom MAC addresses.
+
[NOTE]
====