Skip to content

Commit

Permalink
moving to hosts folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Vibhu-gslab committed Nov 11, 2024
1 parent 477733e commit 484dc03
Show file tree
Hide file tree
Showing 15 changed files with 333 additions and 414 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,16 @@
- [Interfaces](#interfaces)
- [Interface Profiles](#interface-profiles)
- [DPS Interfaces](#dps-interfaces)
- [Ethernet Interfaces](#ethernet-interfaces)
- [Loopback Interfaces](#loopback-interfaces)
- [Routing](#routing)
- [IP Routing](#ip-routing)
- [IPv6 Routing](#ipv6-routing)
- [ARP](#arp)
- [MPLS](#mpls)
- [MPLS and LDP](#mpls-and-ldp)
- [MPLS Interfaces](#mpls-interfaces)
- [MPLS RSVP](#mpls-rsvp)
- [Multicast](#multicast)
- [IP IGMP Snooping](#ip-igmp-snooping)
- [Filters](#filters)
Expand Down Expand Up @@ -826,6 +832,60 @@ interface Dps1
load-interval 42
```

### Ethernet Interfaces

#### Ethernet Interfaces Summary

##### L2

| Interface | Description | Mode | VLANs | Native VLAN | Trunk Group | Channel-Group |
| --------- | ----------- | ---- | ----- | ----------- | ----------- | ------------- |

*Inherited from Port-Channel Interface

##### IPv4

| Interface | Description | Channel Group | IP Address | VRF | MTU | Shutdown | ACL In | ACL Out |
| --------- | ----------- | ------------- | ---------- | ----| ---- | -------- | ------ | ------- |
| Ethernet1 | - | - | 192.168.100.1/31 | default | - | - | - | - |

#### Ethernet Interfaces Device Configuration

```eos
!
interface Ethernet1
no switchport
ip address 192.168.100.1/31
mpls ldp igp sync
mpls ldp interface
mpls ip
```

### Loopback Interfaces

#### Loopback Interfaces Summary

##### IPv4

| Interface | Description | VRF | IP Address |
| --------- | ----------- | --- | ---------- |
| Loopback0 | - | default | 192.168.1.1/32 |

##### IPv6

| Interface | Description | VRF | IPv6 Address |
| --------- | ----------- | --- | ------------ |
| Loopback0 | - | default | - |

#### Loopback Interfaces Device Configuration

```eos
!
interface Loopback0
ip address 192.168.1.1/32
mpls ldp interface
```

## Routing

### IP Routing
Expand Down Expand Up @@ -895,6 +955,121 @@ arp 43.42.42.42 DEAD.BEEF.CAFE arpa
arp vrf defaulu 42.42.42.42 DEAD.BEEF.CAFE arpa
```

## MPLS

### MPLS and LDP

#### MPLS and LDP Summary

| Setting | Value |
| -------- | ---- |
| MPLS IP Enabled | True |
| LDP Enabled | True |
| LDP Router ID | 192.168.1.1 |
| LDP Interface Disabled Default | True |
| LDP Transport-Address Interface | Loopback0 |
| ICMP Fragmentation-Needed Tunneling Enabled | True |

### MPLS Interfaces

| Interface | MPLS IP Enabled | LDP Enabled | IGP Sync |
| --------- | --------------- | ----------- | -------- |
| Ethernet1 | True | True | True |
| Loopback0 | - | True | - |

### MPLS RSVP

#### MPLS RSVP Summary

| Setting | Value |
| ------- | ----- |
| Refresh interval | 3 |
| Authentication type | - |
| Authentication sequence-number window | - |
| Authentication active index | - |
| IPv4 access-group | RSVP_access_group_ipv4 |
| IPv6 access-group | RSVP_access_group_ipv6 |
| SRLG strict | enabled |
| Label local-termination | explicit-null |
| Preemption method | soft |
| Preemption timer | 444 |
| MTU signaling | True |
| Fast reroute mode | - |
| Fast reroute reversion | local |
| Fast reroute bypass tunnel optimization interval | 65535 |
| Hitless restart | Active |
| Hitless restart recovery timer | 222 |
| Shutdown | Active |

##### RSVP Neighbor Authentication

| Neighbor IP | Index | Type |
| ----------- | ----- | ---- |
| 1.1.1.1 | 3 | md5 |
| 1.1.12.2 | 30 | none |
| 1.10.1.2 | - | none |
| 1.21.1.20 | - | md5 |
| 10.1.1.2 | 303 | - |
| 2::11.22.33.44 | 3133 | none |
| 2001::db8 | 31 | none |

##### RSVP Graceful Restart

| Role | Recovery timer | Restart timer |
| ---- | -------------- | ------------- |
| Speaker | 35 | 36 |

#### MPLS Device Configuration

```eos
!
mpls ip
!
mpls ldp
router-id 192.168.1.1
transport-address interface Loopback0
interface disabled default
no shutdown
!
mpls icmp fragmentation-needed tunneling
!
mpls rsvp
refresh interval 3
authentication index 55 password 7 <removed>
authentication index 766 password 7 <removed>
authentication index 999 password <removed>
neighbor 1.1.1.1 authentication type md5
neighbor 1.1.1.1 authentication index 3 active
neighbor 1.1.12.2 authentication type none
neighbor 1.1.12.2 authentication index 30 active
neighbor 1.10.1.2 authentication type none
neighbor 1.21.1.20 authentication type md5
neighbor 10.1.1.2 authentication index 303 active
neighbor 2::11.22.33.44 authentication type none
neighbor 2::11.22.33.44 authentication index 3133 active
neighbor 2001::db8 authentication type none
neighbor 2001::db8 authentication index 31 active
ip access-group RSVP_access_group_ipv4
ipv6 access-group RSVP_access_group_ipv6
fast-reroute reversion local
fast-reroute bypass tunnel optimization interval 65535 seconds
srlg strict
label local-termination explicit-null
preemption method soft timer 444
mtu signaling
!
hitless-restart
timer recovery 222 seconds
!
graceful-restart role speaker
timer restart 35 seconds
timer recovery 36 seconds
!
p2mp
disabled
shutdown
```

## Multicast

### IP IGMP Snooping
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
- [DPS Interfaces](#dps-interfaces)
- [Routing](#routing)
- [ARP](#arp)
- [MPLS](#mpls)
- [MPLS and LDP](#mpls-and-ldp)
- [MPLS RSVP](#mpls-rsvp)
- [Multicast](#multicast)
- [IP IGMP Snooping](#ip-igmp-snooping)
- [Filters](#filters)
Expand Down Expand Up @@ -251,6 +254,74 @@ ARP cache persistency is enabled.
arp persistent
```

## MPLS

### MPLS and LDP

#### MPLS and LDP Summary

| Setting | Value |
| -------- | ---- |
| MPLS IP Enabled | True |
| LDP Enabled | False |
| LDP Router ID | - |
| LDP Interface Disabled Default | False |
| LDP Transport-Address Interface | - |
| ICMP TTL-Exceeded Tunneling Enabled | True |

### MPLS RSVP

#### MPLS RSVP Summary

| Setting | Value |
| ------- | ----- |
| Refresh method | explicit |
| Authentication type | md5 |
| Authentication sequence-number window | 234 |
| Authentication active index | 766 |
| SRLG | enabled |
| Preemption method | hard |
| Fast reroute mode | link-protection |
| Fast reroute reversion | - |
| Fast reroute bypass tunnel optimization interval | - |
| Hitless restart | Active |
| Hitless restart recovery timer | - |

##### RSVP Graceful Restart

| Role | Recovery timer | Restart timer |
| ---- | -------------- | ------------- |
| Helper | 32 | 33 |

#### MPLS Device Configuration

```eos
!
mpls ip
!
mpls ldp
shutdown
!
mpls icmp ttl-exceeded tunneling
!
mpls rsvp
refresh method explicit
authentication type md5
authentication sequence-number window 234
authentication index 766 active
fast-reroute mode link-protection
srlg
preemption method hard
!
hitless-restart
!
graceful-restart role helper
timer restart maximum 32 seconds
timer recovery maximum 33 seconds
!
p2mp
```

## Multicast

### IP IGMP Snooping
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mpls-3
# host3

## Table of Contents

Expand Down

This file was deleted.

Loading

0 comments on commit 484dc03

Please sign in to comment.