blob: 744263e57f3c5bdf8c02c03e836ae7f10b7ec645 [file] [log] [blame]
Scott Keeler70f28fc2018-10-23 15:16:46 -04001.. _interface:
2
3.. toctree::
4
5Set Interface Commands
6=======================
7This section covers those commands that are related to setting an interface:
8
9* `Set Interface`_
10* `Set Interface IP Address`_
11* `Set Interface L2 Bridge`_
12* `Set Interface Mtu`_
13* `Set Interface Promiscuous`_
14* `Set Interface State`_
15
16.. note:: For a complete list of CLI Debug commands refer to the Debug CLI section of the `Source Code Documents <https://docs.fd.io/vpp/18.07/clicmd.html>`_ .
17
18Set Interface
19++++++++++++++++
20
21Summary/Usage
22-------------
23
24Interface commands.
25
26Declaration and Implementation
27-------------------------------
28
29**Declaration:** vnet_cli_set_interface_command (src/vnet/interface_cli.c line 484)
30
31Set Interface IP Address
32+++++++++++++++++++++++++
33
34Summary/Usage
35-------------
36
37set interface ip address [del] <*interface*> <*ip-addr*>/<*mask*> | [all]
38
39Description
40-------------
41
42Add an IP Address to an interface or remove and IP Address from an interface. The IP Address can be an IPv4 or an IPv6 address. Interfaces may have multiple IPv4 and IPv6 addresses. There is no concept of primary vs. secondary interface addresses; they're just addresses.
43
44To display the addresses associated with a given interface, use the command **show interface address** <*interface*>.
45
46.. note::
47 The debug CLI does not enforce classful mask-width / addressing constraints.
48
49Example Usage
50--------------
51
52An example of how to add an IPv4 address to an interface:
53
54.. code-block:: console
55
56 vpp# set interface ip address GigabitEthernet2/0/0 172.16.2.12/24
57
58An example of how to add an IPv6 address to an interface:
59
60.. code-block:: console
61
62 vpp# set interface ip address GigabitEthernet2/0/0 ::a:1:1:0:7/126
63
64To delete a specific interface ip address:
65
66.. code-block:: console
67
68 vpp# set interface ip address GigabitEthernet2/0/0 172.16.2.12/24 del
69
70To delete all interfaces addresses (IPv4 and IPv6):
71
72.. code-block:: console
73
74 vpp# set interface ip address GigabitEthernet2/0/0 del all
75
76Declaration and Implementation
77-------------------------------
78
79**Declaration:** set_interface_ip_address_command (src/vnet/ip/ip46_cli.c line 216)
80
81**Implementation:** add_del_ip_address
82
83
84Set Interface L2 Bridge
85+++++++++++++++++++++++++
86
87Summary/Usage
88-------------
89
90set interface l2 bridge <*interface*> <*bridge-domain-id*> [bvi|uu-fwd] [shg]
91
92Description
93-------------
94
95Use this command put an interface into Layer 2 bridge domain. If a bridge-domain with the provided bridge-domain-id does not exist, it will be created. Interfaces in a bridge-domain forward packets to other interfaces in the same bridge-domain based on destination mac address. To remove an interface from a the Layer 2 bridge domain, put the interface in a different mode, for example Layer 3 mode.
96
97Optionally, an interface can be added to a Layer 2 bridge-domain as a Bridged Virtual Interface (bvi). Only one interface in a Layer 2 bridge-domain can be a bvi.
98
99Optionally, a split-horizon group can also be specified. This defaults to 0 if not specified.
100
101Example Usage
102--------------
103Example of how to configure a Layer 2 bridge-domain with three interfaces (where 200 is the bridge-domain-id):
104
105.. code-block:: console
106
107 vpp# set interface l2 bridge GigabitEthernet0/8/0.200 200
108
109This interface is added a BVI interface:
110
111.. code-block:: console
112
113 vpp# set interface l2 bridge GigabitEthernet0/9/0.200 200 bvi
114
115This interface also has a split-horizon group of 1 specified:
116
117.. code-block:: console
118
119 vpp# set interface l2 bridge GigabitEthernet0/a/0.200 200 1
120
121Example of how to remove an interface from a Layer2 bridge-domain:
122
123.. code-block:: console
124
125 vpp# set interface l3 GigabitEthernet0/a/0.200
126
127Declaration and Implementation
128-------------------------------
129
130**Declaration:** int_l2_bridge_cli (src/vnet/l2/l2_input.c line 949)
131
132**Implementation:** int_l2_bridge
133
134Set Interface Mtu
135++++++++++++++++++
136
137Summary/Usage
138-------------
139
140.. code-block:: shell
141
142 set interface mtu [packet|ip4|ip6|mpls] <value> <interface>
143
144Set Interface Promiscuous
145++++++++++++++++++++++++++
146
147Summary/Usage
148-------------
149
150.. code-block:: shell
151
152 set interface promiscuous [on|off] <interface>.
153
154.. _setintstate:
155
156Set Interface State
157++++++++++++++++++++
158This command is used to change the admin state (up/down) of an
159interface.
160
161If an interface is down, the optional *punt* flag can also be set. The
162*punt* flag implies the interface is disabled for forwarding but punt
163all traffic to slow-path. Use the *enable* flag to clear *punt* flag
164(interface is still down).
165
166Summary/Usage
167-------------
168
169.. code-block:: shell
170
171 set interface state <interface> [up|down|punt|enable].
172
173Example Usage
174----------------
175
176Example of how to configure the admin state of an interface to **up**:
177
178.. code-block:: console
179
180 vpp# set interface state GigabitEthernet2/0/0 up
181
182Example of how to configure the admin state of an interface to **down**:
183
184.. code-block:: console
185
186 vpp# set interface state GigabitEthernet2/0/0 down
187