summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorchrone <1284195+chrone81@users.noreply.github.com>2018-11-15 14:54:39 +0700
committerBen Pfaff <blp@ovn.org>2018-11-15 06:33:22 -0800
commit842ffc861bfd3ff880103dcb0ce7929b4b4446b3 (patch)
tree8c9afac03eb19d2156e6015ddcf2a4b45753f8c1 /Documentation
parent6e367a2095f1f61d46d55921aae17dced44d78d0 (diff)
downloadopenvswitch-842ffc861bfd3ff880103dcb0ce7929b4b4446b3.tar.gz
faq: Fix typo in VLAN 9 configuration examples.
Fixed typo on the VLAN 9 configuration example where the device name should be vlan9 instead of vlan0. Signed-off-by: Charles Alva <charlesalva@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/faq/vlan.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/faq/vlan.rst b/Documentation/faq/vlan.rst
index 13d3cde45..80e6660f5 100644
--- a/Documentation/faq/vlan.rst
+++ b/Documentation/faq/vlan.rst
@@ -191,7 +191,7 @@ Q: Can I configure an IP address on a VLAN?
$ ovs-vsctl add-port br0 vlan9 tag=9 \
-- set interface vlan9 type=internal
$ ip addr add 192.168.0.7/24 dev vlan9
- $ ip link set vlan0 up
+ $ ip link set vlan9 up
See also the following question.
@@ -203,7 +203,7 @@ Q: I configured one IP address on VLAN 0 and another on VLAN 9, like this::
$ ip link set br0 up
$ ovs-vsctl add-port br0 vlan9 tag=9 -- set interface vlan9 type=internal
$ ip addr add 192.168.0.9/24 dev vlan9
- $ ip link set vlan0 up
+ $ ip link set vlan9 up
but other hosts that are only on VLAN 0 can reach the IP address configured on
VLAN 9. What's going on?