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
@@ -407,7 +407,7 @@ The parameters **destinationFilters** and **inboundDestinationFilters** use the
407
407
|-|-|
408
408
| Capability name | NetworkIsolation-1.0 |
409
409
| Target type | Microsoft-Agent |
410
-
| Supported OS types | Windows, Linux (outbound traffic only) |
410
+
| Supported OS types | Windows, Linux (outbound only) |
411
411
| Description | Fully isolate the virtual machine from network connections by dropping all IP-based inbound (on Windows) and outbound (on Windows and Linux) packets for the specified duration. At the end of the duration, network connections will be re-enabled. Because the agent depends on network traffic, this action cannot be cancelled and will run to the specified duration. |
412
412
| Prerequisites |**Windows:** The agent must run as administrator, which happens by default if installed as a VM extension. |
413
413
||**Linux:** The `tc` (Traffic Control) package is used for network faults. If it isn't already installed, the agent automatically attempts to install it from the default package manager. |
@@ -436,10 +436,8 @@ The parameters **destinationFilters** and **inboundDestinationFilters** use the
436
436
#### Limitations
437
437
438
438
* Because the agent depends on network traffic, **this action cannot be cancelled** and will run to the specified duration. Use with caution.
439
-
* The agent-based network faults currently only support IPv4 addresses.
440
-
* When running on Windows, the network packet loss fault currently only works with TCP or UDP packets.
441
-
* When running on Linux, this fault only affects **outbound** traffic, not inbound traffic. The fault affects **both inbound and outbound** traffic on Windows environments.
442
439
* This fault currently only affects new connections. Existing active connections are unaffected. You can restart the service or process to force connections to break.
440
+
* When running on Linux, this fault can only affect **outbound** traffic, not inbound traffic. The fault can affect **both inbound and outbound** traffic on Windows environments.
Copy file name to clipboardExpand all lines: articles/chaos-studio/chaos-studio-samples-rest-api.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,8 @@ az rest --method get --url "https://management.azure.com/{experimentId}?api-vers
112
112
az rest --method put --url "https://management.azure.com/{experimentId}?api-version={apiVersion}" --body @{experimentName.json}
113
113
```
114
114
115
+
Note: if you receive an `UnsupportedMediaType` error, make sure your referenced JSON file is valid, and try other ways to reference the `.json` file. Different command-line interpreters may require different methods of file referencing. Another common syntax is `--body "@experimentName.json"`.
0 commit comments