You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the `containerlab tools netem reset` command users can remove (reset) all network impairments on a specified interface of a containerlab node. This command deletes the netem qdisc associated with the interface, restoring it to its default state. If no impairments are present, the command will complete successfully without error.
4
+
5
+
## Usage
6
+
7
+
```bash
8
+
containerlab tools netem reset [local-flags]
9
+
```
10
+
11
+
## Flags
12
+
13
+
### node
14
+
15
+
The mandatory `--node | -n` flag specifies the name of the containerlab node on which to reset link impairments.
16
+
17
+
### interface
18
+
19
+
The mandatory `--interface | -i` flag specifies the interface on which the netem impairments should be reset.
20
+
21
+
## Examples
22
+
23
+
### Resetting impairments on an interface
24
+
25
+
This example resets the impairments on the interface `eth1` of node `clab-netem-r1`:
These commands allow users to set link impairments (delay, jitter, packet loss) on any link that belongs to a container node and create labs simulating real-world network conditions.
13
+
These commands allow users to set, show and reset link impairments (delay, jitter, packet loss) on any link that belongs to a container node and create labs simulating real-world network conditions.
13
14
14
15
```bash title="setting packet loss at 10% rate on eth1 interface of clab-netem-r1 node"
15
16
containerlab tools netem set -n clab-netem-r1 -i eth1 --loss 10
0 commit comments