summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
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?