Skip to content

Commit cf4b96f

Browse files
jjlinjoaofnfernandes
authored andcommitted
Fix typos (8021.q -> 802.1q)
1 parent 9f6359d commit cf4b96f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

network/macvlan.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ trunk bridge mode.
3333

3434
- In bridge mode,Macvlan traffic goes through a physical device on the host.
3535

36-
- In 8021.q trunk bridge mode, traffic goes through an 8021.q sub-interface
36+
- In 802.1q trunk bridge mode, traffic goes through an 802.1q sub-interface
3737
which Docker creates on the fly. This allows you to control routing and
3838
filtering at a more granular level.
3939

@@ -62,7 +62,7 @@ $ docker network create -d macvlan \
6262
-o parent=eth0 macnet32
6363
```
6464

65-
### 8021.q trunk bridge mode
65+
### 802.1q trunk bridge mode
6666

6767
If you specify a `parent` interface name with a dot included, such as `eth0.50`,
6868
Docker interprets that as a sub-interface of `eth0` and creates the sub-interface

network/network-tutorial-macvlan.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Networking using a macvlan network
3-
description: Tutorials for networking using a macvlan bridge network and 8021.q trunk bridge network
4-
keywords: networking, macvlan, 8021.q, standalone
3+
description: Tutorials for networking using a macvlan bridge network and 802.1q trunk bridge network
4+
keywords: networking, macvlan, 802.1q, standalone
55
---
66

77
This series of tutorials deals with networking standalone containers which
@@ -13,7 +13,7 @@ to the appropriate container. For other networking topics, see the
1313
## Goal
1414

1515
The goal of these tutorials is to set up a bridged `macvlan` network and attach
16-
a container to it, then set up an 8021.q trunked `macvlan` network and attach a
16+
a container to it, then set up an 802.1q trunked `macvlan` network and attach a
1717
container to it.
1818

1919
## Prerequisites
@@ -119,9 +119,9 @@ on your network, your container appears to be physically attached to the network
119119
$ docker network rm my-macvlan-net
120120
```
121121

122-
## 8021.q trunked bridge example
122+
## 802.1q trunked bridge example
123123

124-
In the 8021.q trunked bridge example, your traffic flows through a sub-interface
124+
In the 802.1q trunked bridge example, your traffic flows through a sub-interface
125125
of `eth0` (called `eth0.10`) and Docker routes traffic to your container using
126126
its MAC address. To network devices on your network, your container appears to
127127
be physically attached to the network.

0 commit comments

Comments
 (0)