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

feat: bgp peers snapshot comparison #154

Merged
merged 6 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
88 changes: 88 additions & 0 deletions docs/panos-upgrade-assurance/api/firewall_proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,94 @@ __Returns__

`dict`: Routes information.

### `FirewallProxy.get_bgp_peers`

```python
def get_bgp_peers() -> dict
```

Get information about BGP peers and their status.

The actual API command is `<show><routing><protocol><bgp><peer></peer></bgp></protocol></routing></show>`.

In the returned `dict` the key is made of three route properties delimited with an underscore (`_`) in the following
order:

* virtual router name,
* peer group name,
* peer name.

The key does not provide any meaningful information, it's there only to introduce uniqueness for each entry. All
properties that make a key are also available in the value of a dictionary element.

```python showLineNumbers title="Sample output"
{
'default_Peer-Group1_Peer1': {
'@peer': 'Peer1',
'@vr': 'default',
'peer-group': 'Peer-Group1',
'peer-router-id': '169.254.8.2',
'remote-as': '64512',
'status': 'Established',
'status-duration': '3804',
'password-set': 'no',
'passive': 'no',
'multi-hop-ttl': '2',
'peer-address': '169.254.8.2:35355',
'local-address': '169.254.8.1:179',
'reflector-client': 'not-client',
'same-confederation': 'no',
'aggregate-confed-as': 'yes',
'peering-type': 'Unspecified',
'connect-retry-interval': '15',
'open-delay': '0',
'idle-hold': '15',
'prefix-limit': '5000',
'holdtime': '30',
'holdtime-config': '30',
'keepalive': '10',
'keepalive-config': '10',
'msg-update-in': '2',
'msg-update-out': '1',
'msg-total-in': '385',
'msg-total-out': '442',
'last-update-age': '3',
'last-error': 'None',
'status-flap-counts': '2',
'established-counts': '1',
'ORF-entry-received': '0',
'nexthop-self': 'no',
'nexthop-thirdparty': 'yes',
'nexthop-peer': 'no',
'config': {'remove-private-as': 'no'},
'peer-capability': {
'list': [
{'capability': 'Multiprotocol Extensions(1)', 'value': 'IPv4 Unicast'},
{'capability': 'Route Refresh(2)', 'value': 'yes'},
{'capability': '4-Byte AS Number(65)', 'value': '64512'},
{'capability': 'Route Refresh (Cisco)(128)', 'value': 'yes'}
]
},
'prefix-counter': {
'entry': {
'@afi-safi': 'bgpAfiIpv4-unicast',
'incoming-total': '2',
'incoming-accepted': '2',
'incoming-rejected': '0',
'policy-rejected': '0',
'outgoing-total': '0',
'outgoing-advertised': '0'
}
}
}
}
```

__Returns__


`dict`: BGP peers information.

### `FirewallProxy.get_arp_table`

```python
Expand Down
66 changes: 66 additions & 0 deletions docs/panos-upgrade-assurance/configuration_details.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,7 @@ Following state areas are available:
snapshots_config = [
'nics',
'routes',
'bgp_peers',
'license',
'arp_table',
'content_version',
Expand All @@ -979,6 +980,7 @@ snapshots_config = [
snapshots_config:
- nics
- routes
- bgp_peers
- license
- arp_table
- content_version
Expand Down Expand Up @@ -1030,6 +1032,12 @@ Takes a snapshot of the Route Table (this includes routes populated from DHCP as

**Method:** [`FirewallProxy.get_routes()`](/panos/docs/panos-upgrade-assurance/api/firewall_proxy#firewallproxyget_routes)

### `bgp_peers`

Takes a snapshot of configuration of BGP peers along with their status.

**Method:** [`FirewallProxy.get_bgp_peers()`](/panos/docs/panos-upgrade-assurance/api/firewall_proxy#firewallproxyget_bgp_peers)

### `fib_routes`

Takes a snapshot of the Forwarding table (routes that are actually taken into forwarding decisions based on routing table).
Expand Down Expand Up @@ -1076,6 +1084,9 @@ reports = [
'properties': ['!flags'],
'count_change_threshold': 10
}},
{'bgp_peers': {
'properties': ['status']
}},
'content_version',
{'session_stats': {
'thresholds': [
Expand Down Expand Up @@ -1113,6 +1124,9 @@ reports:
properties:
- "!flags"
count_change_threshold: 10
- bgp_peers:
properties:
- "status"
- content_version
- session_stats:
thresholds:
Expand Down Expand Up @@ -1409,6 +1423,58 @@ reports:
</Tabs>
```

### `bgp_peers`

Compares configuration and the status of BGP peers.

**Method:** [`SnapshotCompare.get_diff_and_threshold()`](/panos/docs/panos-upgrade-assurance/api/snapshot_compare#snapshotcompareget_diff_and_threshold)

**Configuration parameters**

parameter | description
--- | ---
`properties` | (optional) a set of properties to skip when comparing two BGP peers, all properties are checked when this parameter is skipped
`count_change_threshold` | (optional) maximum difference percentage of changed entries in IPSec tunnels in both snapshots, skipped when this property is not specified
acelebanski marked this conversation as resolved.
Show resolved Hide resolved

**Sample configuration**

The following configuration compares the status of BGP peers as
captured in snapshots.

This report produces the standardized dictionary.

```mdx-code-block
<Tabs>
<TabItem value="python" label="Python" default>
```

```python showLineNumbers
reports = [
{
'bgp_peers': {
'properties': ['status']
}
}
]
```

```mdx-code-block
</TabItem>
<TabItem value="ansible" label="YAML">
```

```yaml showLineNumbers
reports:
- bgp_peers:
properties:
- 'status'
```

```mdx-code-block
</TabItem>
</Tabs>
```

### `fib_routes`

Provides a report on differences between FIB Table entries. It includes:
Expand Down
2 changes: 2 additions & 0 deletions examples/low_level_methods/run_low_level_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@

print(f"\n routes information\n{firewall.get_routes()}")

print(f"\n BGP peers information\n{firewall.get_bgp_peers()}")

print(f"\n arp entries information\n{firewall.get_arp_table()}")

print(f"\n session information\n{firewall.get_session_stats()}")
Expand Down
1 change: 1 addition & 0 deletions examples/readiness_checks/run_readiness_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"nics",
"routes",
"fib_routes",
"bgp_peers",
"license",
"arp_table",
"content_version",
Expand Down
60 changes: 60 additions & 0 deletions examples/report/fw1.snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,66 @@
"route-table": "unicast"
}
},
"bgp_peers": {
"default_Peer-Group1_Peer1": {
"@peer": "Peer1",
"@vr": "default",
"peer-group": "Peer-Group1",
"peer-router-id": "169.254.8.2",
"remote-as": "64512",
"status": "Established",
"status-duration": "3804",
"password-set": "no",
"passive": "no",
"multi-hop-ttl": "2",
"peer-address": "169.254.8.2:35355",
"local-address": "169.254.8.1:179",
"reflector-client": "not-client",
"same-confederation": "no",
"aggregate-confed-as": "yes",
"peering-type": "Unspecified",
"connect-retry-interval": "15",
"open-delay": "0",
"idle-hold": "15",
"prefix-limit": "5000",
"holdtime": "30",
"holdtime-config": "30",
"keepalive": "10",
"keepalive-config": "10",
"msg-update-in": "2",
"msg-update-out": "1",
"msg-total-in": "385",
"msg-total-out": "442",
"last-update-age": "3",
"last-error": null,
"status-flap-counts": "2",
"established-counts": "1",
"ORF-entry-received": "0",
"nexthop-self": "no",
"nexthop-thirdparty": "yes",
"nexthop-peer": "no",
"config": {"remove-private-as": "no"},
"peer-capability": {
"list": [
{"capability": "Multiprotocol Extensions(1)", "value": "IPv4 Unicast"},
{"capability": "Route Refresh(2)", "value": "yes"},
{"capability": "4-Byte AS Number(65)", "value": "64512"},
{"capability": "Route Refresh (Cisco)(128)", "value": "yes"}
]
},
"prefix-counter": {
"entry": {
"@afi-safi": "bgpAfiIpv4-unicast",
"incoming-total": "2",
"incoming-accepted": "2",
"incoming-rejected": "0",
"policy-rejected": "0",
"outgoing-total": "0",
"outgoing-advertised": "0"
}
}
}
},
"session_stats": {
"tmo-5gcdelete": "15",
"tmo-sctpshutdown": "60",
Expand Down
43 changes: 43 additions & 0 deletions examples/report/fw2.snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,49 @@
"route-table": "unicast"
}
},
"bgp_peers": {
"default_Peer-Group1_Peer1": {
"@peer": "Peer1",
"@vr": "default",
"peer-group": "Peer-Group1",
"peer-router-id": "169.254.8.2",
"remote-as": "64512",
"status": "Idle",
"status-duration": "0",
"password-set": "no",
"passive": "no",
"multi-hop-ttl": "2",
"peer-address": "169.254.8.2",
"local-address": "169.254.8.1",
"reflector-client": "not-client",
"same-confederation": "no",
"aggregate-confed-as": "yes",
"peering-type": "Unspecified",
"connect-retry-interval": "15",
"open-delay": "0",
"idle-hold": "15",
"prefix-limit": "5000",
"holdtime": "0",
"holdtime-config": "30",
"keepalive": "0",
"keepalive-config": "10",
"msg-update-in": "0",
"msg-update-out": "0",
"msg-total-in": "0",
"msg-total-out": "0",
"last-update-age": "0",
"last-error": null,
"status-flap-counts": "0",
"established-counts": "0",
"ORF-entry-received": "0",
"nexthop-self": "no",
"nexthop-thirdparty": "yes",
"nexthop-peer": "no",
"config": {"remove-private-as": "no"},
"peer-capability": null,
"prefix-counter": null
}
},
"session_stats": {
"tmo-5gcdelete": "15",
"tmo-sctpshutdown": "60",
Expand Down
2 changes: 2 additions & 0 deletions examples/report/snapshot_load_compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ def load_snap(fname: str) -> dict:
{"nics": {"count_change_threshold": 10}},
{"license": {"properties": ["!serial"]}},
{"routes": {"properties": ["!flags"], "count_change_threshold": 10}},
{"bgp_peers": {"properties": ["status"]}},
"!fib_routes",
"!content_version",
{
"session_stats": {
Expand Down
1 change: 1 addition & 0 deletions panos_upgrade_assurance/check_firewall.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def __init__(self, node: FirewallProxy, skip_force_locale: Optional[bool] = Fals
self._snapshot_method_mapping = {
SnapType.NICS: self._node.get_nics,
SnapType.ROUTES: self._node.get_routes,
SnapType.BGP_PEERS: self._node.get_bgp_peers,
SnapType.LICENSE: self._node.get_licenses,
SnapType.ARP_TABLE: self._node.get_arp_table,
SnapType.CONTENT_VERSION: self.get_content_db_version,
Expand Down
Loading
Loading