Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Configuration.md with Mirror/Everflow tables #1457

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 42 additions & 1 deletion doc/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Table of Contents
* [Management Interface](#management-interface)
* [Management port](#management-port)
* [Management VRF](#management-vrf)
* [Mirroring](#mirroring)
* [MAP_PFC_PRIORITY_TO_QUEUE](#map_pfc_priority_to_queue)
* [NTP and SYSLOG servers](#ntp-and-syslog-servers)
* [Port](#port)
Expand Down Expand Up @@ -791,6 +792,46 @@ instead of data network.
}
```


### Mirroring

```
{
"MIRROR_SESSION_TABLE:session_1": {
"src_ip": "1.1.1.1",
"dst_ip": "2.2.2.2",
"gre_type": "0x6558",
"dscp": "50",
"ttl": "64",
"queue": "0"
}
}

{
"MIRROR_SESSION_TABLE:session_2": {
"src_ip": "1.1.1.1",
"dst_ip": "2.2.2.2",
"gre_type": "0x6558",
"dscp": "50",
"ttl": "64",
"queue": "0",
"src_port": "Ethernet0,PortChannel001",
"direction": "BOTH",
"type": "ERSPAN"
}
}

{
"MIRROR_SESSION_TABLE:session_3": {
"type": "SPAN"
"dst_port": "Ethernet0"
"src_port": "Ethernet4,PortChannel002"
"direction": "BOTH"
}
}

```

### MAP_PFC_PRIORITY_TO_QUEUE

```
Expand Down Expand Up @@ -1162,4 +1203,4 @@ Incremental Configuration by Subscribing to ConfigDB

Detail instruction to be added. A sample could be found in this
[PR](https://github.com/Azure/sonic-buildimage/pull/861) that
implemented dynamic configuration for BGP.
implemented dynamic configuration for BGP.