Skip to content

Commit

Permalink
Fix(eos_cli_config_gen): WIP fix deleted files
Browse files Browse the repository at this point in the history
  • Loading branch information
chetryan committed Feb 8, 2024
1 parent f8bf99f commit ca3b674
Show file tree
Hide file tree
Showing 3 changed files with 168 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# queue-monitor-length-notifying

## Table of Contents

- [Management](#management)
- [Management Interfaces](#management-interfaces)
- [Queue Monitor](#queue-monitor)
- [Queue Monitor Length](#queue-monitor-length)
- [Queue Monitor Configuration](#queue-monitor-configuration)

## Management

### Management Interfaces

#### Management Interfaces Summary

##### IPv4

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management1 | oob_management | oob | MGMT | 10.73.255.122/24 | 10.73.255.2 |

##### IPv6

| Management Interface | Description | Type | VRF | IPv6 Address | IPv6 Gateway |
| -------------------- | ----------- | ---- | --- | ------------ | ------------ |
| Management1 | oob_management | oob | MGMT | - | - |

#### Management Interfaces Device Configuration

```eos
!
interface Management1
description oob_management
vrf MGMT
ip address 10.73.255.122/24
```

## Queue Monitor

### Queue Monitor Length

| Enabled | Logging Interval | Default Thresholds High | Default Thresholds Low | Notifying | TX Latency | CPU Thresholds High | CPU Thresholds Low |
| ------- | ---------------- | ----------------------- | ---------------------- | --------- | ---------- | ------------------- | ------------------ |
| True | - | 100 | - | disabled | disabled | - | - |

### Queue Monitor Configuration

```eos
!
queue-monitor length
queue-monitor length default threshold 100
no queue-monitor length notifying
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# queue-monitor-length

## Table of Contents

- [Management](#management)
- [Management Interfaces](#management-interfaces)
- [Queue Monitor](#queue-monitor)
- [Queue Monitor Length](#queue-monitor-length)
- [Queue Monitor Configuration](#queue-monitor-configuration)

## Management

### Management Interfaces

#### Management Interfaces Summary

##### IPv4

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management1 | oob_management | oob | MGMT | 10.73.255.122/24 | 10.73.255.2 |

##### IPv6

| Management Interface | Description | Type | VRF | IPv6 Address | IPv6 Gateway |
| -------------------- | ----------- | ---- | --- | ------------ | ------------ |
| Management1 | oob_management | oob | MGMT | - | - |

#### Management Interfaces Device Configuration

```eos
!
interface Management1
description oob_management
vrf MGMT
ip address 10.73.255.122/24
```

## Queue Monitor

### Queue Monitor Length

| Enabled | Logging Interval | Default Thresholds High | Default Thresholds Low | Notifying | TX Latency | CPU Thresholds High | CPU Thresholds Low |
| ------- | ---------------- | ----------------------- | ---------------------- | --------- | ---------- | ------------------- | ------------------ |
| True | 100 | 100 | 10 | enabled | enabled | 200000 | 100000 |

### Queue Monitor Configuration

```eos
!
queue-monitor length
queue-monitor length default thresholds 100 10
queue-monitor length log 100
queue-monitor length notifying
queue-monitor length tx-latency
queue-monitor length cpu thresholds 200000 100000
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# queue-monitor-streaming

## Table of Contents

- [Management](#management)
- [Management Interfaces](#management-interfaces)
- [Queue Monitor](#queue-monitor)
- [Queue Monitor Streaming](#queue-monitor-streaming)
- [Queue Monitor Configuration](#queue-monitor-configuration)

## Management

### Management Interfaces

#### Management Interfaces Summary

##### IPv4

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management1 | oob_management | oob | MGMT | 10.73.255.122/24 | 10.73.255.2 |

##### IPv6

| Management Interface | Description | Type | VRF | IPv6 Address | IPv6 Gateway |
| -------------------- | ----------- | ---- | --- | ------------ | ------------ |
| Management1 | oob_management | oob | MGMT | - | - |

#### Management Interfaces Device Configuration

```eos
!
interface Management1
description oob_management
vrf MGMT
ip address 10.73.255.122/24
```

## Queue Monitor

### Queue Monitor Streaming

| Enabled | IP Access Group | IPv6 Access Group | Max Connections | VRF |
| ------- | --------------- | ----------------- | --------------- | --- |
| True | ACL-QMS | ACLv6-QMS | 5 | test |

### Queue Monitor Configuration

```eos
!
queue-monitor streaming
max-connections 5
ip access-group ACL-QMS
ipv6 access-group ACLv6-QMS
vrf test
no shutdown
```

0 comments on commit ca3b674

Please sign in to comment.