Feature/reporting 307 msr vpn proxy endpoint
All threads resolved!
All threads resolved!
Adds /msr/vpn-proxy endpoint
Merge request reports
Activity
assigned to @sam.roberts
added 4 commits
-
c05e6933...bfddc0f3 - 3 commits from branch
develop
- 676d1371 - Merge branch 'develop' into feature/REPORTING-307-msr-vpn-proxy-endpoint
-
c05e6933...bfddc0f3 - 3 commits from branch
requested review from @Robert.Latta
- Resolved by Sam Roberts
- Resolved by Sam Roberts
- Resolved by Sam Roberts
1047 1045 yield formatted_peering 1048 1046 1049 1047 def _vpnrr_peerings(asn, vpnrr_index): 1050 if asn not in vpnrr_index: 1051 yield False 1052 vrr_peering_group = vpnrr_index[asn] 1053 # rearrange into index using ipv4 as key 1054 # this will collect related entries under the same ipv4 1055 ip_index = _make_group_index(vrr_peering_group, 'address') 1056 for ip in ip_index: 1057 ip_details = ip_index[ip] # a list of all info for given ipv4 1058 hostnames = [item['hostname'] for item in ip_details] 1059 description = ip_details[0]['description'] 1048 if asn in vpnrr_index: 1050 if asn not in vpnrr_index: 1051 yield False 1052 vrr_peering_group = vpnrr_index[asn] 1053 # rearrange into index using ipv4 as key 1054 # this will collect related entries under the same ipv4 1055 ip_index = _make_group_index(vrr_peering_group, 'address') 1056 for ip in ip_index: 1057 ip_details = ip_index[ip] # a list of all info for given ipv4 1058 hostnames = [item['hostname'] for item in ip_details] 1059 description = ip_details[0]['description'] 1048 if asn in vpnrr_index: 1049 vrr_peering_group = vpnrr_index[asn] 1050 # rearrange into index using ipv4 as key 1051 # this will collect related entries under the same ipv4 1052 ip_index = _make_group_index(vrr_peering_group, 'address') 1053 for ip in ip_index: mentioned in commit fc73b25d
Please register or sign in to reply