Skip to content

Commit

Permalink
peers: add 32bit public asn range
Browse files Browse the repository at this point in the history
  • Loading branch information
liske committed Feb 25, 2024
1 parent 9e3887e commit 8859fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/com_peers/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
ansible.builtin.assert:
that:
- peer.asn|type_debug == 'int'
- peer.asn > 0 and peer.asn < 64512
- (peer.asn > 0 and peer.asn < 64512) or (peer.asn > 131071 and peer.asn < 4200000000)
- peer.maxprefixes|type_debug == 'int'
- peer.maxprefixes > 0
- peer.status in ixp_manager_portstatus
Expand Down

0 comments on commit 8859fd8

Please sign in to comment.