Skip to content

Commit

Permalink
adding files to hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
Vibhu-gslab committed Nov 7, 2024
1 parent 2464b30 commit 805308a
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 126 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- [Management Interfaces](#management-interfaces)
- [IP Domain-list](#ip-domain-list)
- [Clock Settings](#clock-settings)
- [System Control-Plane](#system-control-plane)
- [CVX](#cvx)
- [CVX Services](#cvx-services)
- [CVX Device Configuration](#cvx-device-configuration)
Expand Down Expand Up @@ -44,6 +45,9 @@
- [VRF Instances](#vrf-instances)
- [VRF Instances Summary](#vrf-instances-summary)
- [VRF Instances Device Configuration](#vrf-instances-device-configuration)
- [System L1](#system-l1)
- [Unsupported Interface Configurations](#unsupported-interface-configurations)
- [System L1 Device Configuration](#system-l1-device-configuration)
- [Application Traffic Recognition](#application-traffic-recognition)
- [Applications](#applications)
- [Application Profiles](#application-profiles)
Expand Down Expand Up @@ -136,6 +140,52 @@ Clock Timezone is set to **GMT**.
clock timezone GMT
```

### System Control-Plane

#### TCP MSS Ceiling

| Protocol | Segment Size |
| -------- | -------------|
| IPv4 | 1344 |
| IPv6 | 1366 |

#### Control-Plane Access-Groups

| Protocol | VRF | Access-list | Ingress-default |
| -------- | --- | ------------| --------------- |
| IPv4 | default | acl4_1 | False |
| IPv4 | - | acl4_2 | True |
| IPv4 | default | acl4_3 | False |
| IPv4 | red_2 | acl4_4 | False |
| IPv4 | red_5 | acl4_4 | False |
| IPv4 | red_3 | acl4_5 | False |
| IPv4 | red_4 | ingress | False |
| IPv6 | default | acl6_1 | False |
| IPv6 | blue | acl6_2 | False |
| IPv6 | blue_1 | acl6_2 | False |
| IPv6 | default | acl6_3 | False |
| IPv6 | - | acl6_4 | True |
| IPv6 | blue_2 | ingress | False |

#### System Control-Plane Device Configuration

```eos
!
system control-plane
tcp mss ceiling ipv4 1344 ipv6 1366
ip access-group ingress default acl4_2
ip access-group acl4_3 in
ip access-group acl4_4 vrf red_2 in
ip access-group acl4_5 vrf red_3 in
ip access-group ingress vrf red_4 in
ip access-group acl4_4 vrf red_5 in
ip access-group ingress default acl6_4
ip access-group acl6_3 in
ip access-group acl6_2 vrf blue in
ip access-group acl6_2 vrf blue_1 in
ip access-group ingress vrf blue_2 in
```

## CVX

| Peer Hosts |
Expand Down Expand Up @@ -838,6 +888,24 @@ vrf instance TENANT_A_PROJECT01
vrf instance TENANT_A_PROJECT02
```

## System L1

### Unsupported Interface Configurations

| Unsupported Configuration | action |
| ---------------- | -------|
| Speed | warn |
| Error correction | error |

### System L1 Device Configuration

```eos
!
system l1
unsupported speed action warn
unsupported error-correction action error
```

## Application Traffic Recognition

### Applications
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ aaa group server ldap LDAP1
server 192.168.10.157 vrf mgt
server 10.10.10.248
!
system l1
unsupported speed action warn
unsupported error-correction action error
!
clock timezone GMT
!
vrf instance BLAH
Expand Down Expand Up @@ -365,6 +369,20 @@ ip as-path access-list mylist1 permit ^(64512|645115) egp
ip as-path access-list mylist1 deny (64513|64515)$ any
ip as-path access-list mylist2 deny _64517$ igp
!
system control-plane
tcp mss ceiling ipv4 1344 ipv6 1366
ip access-group ingress default acl4_2
ip access-group acl4_3 in
ip access-group acl4_4 vrf red_2 in
ip access-group acl4_5 vrf red_3 in
ip access-group ingress vrf red_4 in
ip access-group acl4_4 vrf red_5 in
ip access-group ingress default acl6_4
ip access-group acl6_3 in
ip access-group acl6_2 vrf blue in
ip access-group acl6_2 vrf blue_1 in
ip access-group ingress vrf blue_2 in
!
arp persistent refresh-delay 700
arp aging timeout default 300
arp vrf BLAH 42.42.42.42 DEAD.BEEF.CAFE arpa
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ test_hosts:
sync-e:
tcam-profile:
static-routes:
system:
tap-aggregation:
terminal:
terminattr-cloud:
Expand Down

0 comments on commit 805308a

Please sign in to comment.