Skip to content

Commit

Permalink
Add more doc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Laxmikant Chintakindi authored and Laxmikant Chintakindi committed Dec 13, 2024
1 parent 55f573d commit eb3c0dc
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,12 @@ tap aggregation

#### SFlow Summary

| VRF | SFlow Source | SFlow Destination | Port |
| --- | ------------ | ----------------- | ---- |
| DDD | - | 10.6.75.62 | 6343 |
| DDD | 1.1.1.1 | - | - |
| default | 1.1.1.1 | - | - |

sFlow is disabled.

sFlow is disabled on all interfaces by default.
Expand All @@ -556,6 +562,9 @@ Egress sFlow is enabled on all interfaces by default.

```eos
!
sflow vrf DDD destination 10.6.75.62
sflow vrf DDD source 1.1.1.1
sflow source 1.1.1.1
sflow interface disable default
sflow interface egress enable default
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- [Management](#management)
- [Management Interfaces](#management-interfaces)
- [PTP](#ptp)
- [Management SSH](#management-ssh)
- [CVX](#cvx)
- [CVX Services](#cvx-services)
- [CVX Device Configuration](#cvx-device-configuration)
Expand Down Expand Up @@ -66,6 +67,41 @@ interface Management1
no ptp monitor
```

### Management SSH

#### SSH Timeout and Management

| Idle Timeout | SSH Management |
| ------------ | -------------- |
| default | Enabled |

#### Max number of SSH sessions limit and per-host limit

| Connection Limit | Max from a single Host |
| ---------------- | ---------------------- |
| - | - |

#### Ciphers and Algorithms

| Ciphers | Key-exchange methods | MAC algorithms | Hostkey server algorithms |
|---------|----------------------|----------------|---------------------------|
| default | default | default | default |

#### VRFs

| VRF | Status |
| --- | ------ |
| mgt | Disabled |

#### Management SSH Device Configuration

```eos
!
management ssh
!
vrf mgt
```

## CVX

CVX is enabled
Expand Down Expand Up @@ -118,11 +154,19 @@ daemon TerminAttr
| -----| ----- |
| Console | disabled |

| Format Type | Setting |
| ----------- | ------- |
| Timestamp | traditional year timezone |
| Hostname | hostname |
| Sequence-numbers | false |
| RFC5424 | False |

#### Logging Servers and Features Device Configuration

```eos
!
no logging console
logging format timestamp traditional year timezone
```

### MCS Client Summary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ router adaptive-virtual-topology
router l2-vpn
arp proxy prefix-list pl-router-l2-vpn
!
sflow vrf DDD destination 10.6.75.62
sflow vrf DDD source 1.1.1.1
sflow source 1.1.1.1
sflow interface disable default
sflow interface egress enable default
!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ daemon TerminAttr
no shutdown
!
no logging console
logging format timestamp traditional year timezone
!
mcs client
shutdown
Expand Down Expand Up @@ -83,3 +84,7 @@ router multicast
multipath deterministic
!
traffic-policies
!
management ssh
!
vrf mgt
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
---
sflow:
vrfs:
- name: DDD
destinations:
- destination: 10.6.75.62
source: 1.1.1.1
run: false
interface:
disable:
default: true
egress:
enable_default: true
unmodified: false
source: 1.1.1.1
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
---
logging:
console: disabled
format:
timestamp: traditional year timezone
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
management_ssh:
vrfs:
- name: mgt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
| VRF | Status |
| --- | ------ |
{% for vrf in management_ssh.vrfs | arista.avd.natural_sort('name') %}
{% if vrf.enable %}
{% if vrf.enable is arista.avd.defined(true) %}
{% set status = 'Enabled' %}
{% else %}
{% set status = 'Disabled' %}
Expand Down

0 comments on commit eb3c0dc

Please sign in to comment.