-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[BGPD]: add bgp dynamic neighbor configuration #708
Merged
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
deployment_id_asn_map: | ||
"1" : 12345 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use a private ASN? 65432 or something like that. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -244,6 +244,7 @@ def parse_dpg(dpg, hname): | |
def parse_cpg(cpg, hname): | ||
bgp_sessions = [] | ||
myasn = None | ||
bgp_peers_with_range = [] | ||
for child in cpg: | ||
tag = child.tag | ||
if tag == str(QName(ns, "PeeringSessions")): | ||
|
@@ -270,12 +271,22 @@ def parse_cpg(cpg, hname): | |
hostname = router.find(str(QName(ns1, "Hostname"))).text | ||
if hostname == hname: | ||
myasn = int(asn) | ||
peers = router.find(str(QName(ns1, "Peers"))) | ||
for bgpPeer in peers.findall(str(QName(ns, "BGPPeer"))): | ||
addr = bgpPeer.find(str(QName(ns, "Address"))).text | ||
if bgpPeer.find(str(QName(ns1, "PeersRange"))) is not None: | ||
name = bgpPeer.find(str(QName(ns1, "Name"))).text | ||
ip_range = bgpPeer.find(str(QName(ns1, "PeersRange"))).text | ||
bgp_peers_with_range.append({ | ||
'name': name, | ||
'ip_range': ip_range | ||
}) | ||
else: | ||
for bgp_session in bgp_sessions: | ||
if hostname == bgp_session['name']: | ||
bgp_session['asn'] = int(asn) | ||
|
||
return bgp_sessions, myasn | ||
return bgp_sessions, myasn, bgp_peers_with_range | ||
|
||
|
||
def parse_meta(meta, hname): | ||
|
@@ -284,6 +295,7 @@ def parse_meta(meta, hname): | |
ntp_servers = [] | ||
mgmt_routes = [] | ||
erspan_dst = [] | ||
deployment_id = None | ||
device_metas = meta.find(str(QName(ns, "Devices"))) | ||
for device in device_metas.findall(str(QName(ns1, "DeviceMetadata"))): | ||
if device.find(str(QName(ns1, "Name"))).text == hname: | ||
|
@@ -302,7 +314,9 @@ def parse_meta(meta, hname): | |
mgmt_routes = value_group | ||
elif name == "ErspanDestinationIpv4": | ||
erspan_dst = value_group | ||
return syslog_servers, dhcp_servers, ntp_servers, mgmt_routes, erspan_dst | ||
elif name == "DeploymentId": | ||
deployment_id = value | ||
return syslog_servers, dhcp_servers, ntp_servers, mgmt_routes, erspan_dst, deployment_id | ||
|
||
|
||
def get_console_info(devices, dev, port): | ||
|
@@ -396,6 +410,8 @@ def parse_xml(filename, platform=None, port_config_file=None): | |
ntp_servers = [] | ||
mgmt_routes = [] | ||
erspan_dst = [] | ||
bgp_peers_with_range = None | ||
deployment_id = None | ||
|
||
hwsku_qn = QName(ns, "HwSku") | ||
hostname_qn = QName(ns, "Hostname") | ||
|
@@ -411,13 +427,13 @@ def parse_xml(filename, platform=None, port_config_file=None): | |
if child.tag == str(QName(ns, "DpgDec")): | ||
(intfs, lo_intfs, mgmt_intf, vlans, pcs, acls) = parse_dpg(child, hostname) | ||
elif child.tag == str(QName(ns, "CpgDec")): | ||
(bgp_sessions, bgp_asn) = parse_cpg(child, hostname) | ||
(bgp_sessions, bgp_asn, bgp_peers_with_range) = parse_cpg(child, hostname) | ||
elif child.tag == str(QName(ns, "PngDec")): | ||
(neighbors, devices, console_dev, console_port, mgmt_dev, mgmt_port) = parse_png(child, hostname) | ||
elif child.tag == str(QName(ns, "UngDec")): | ||
(u_neighbors, u_devices, _, _, _, _) = parse_png(child, hostname) | ||
elif child.tag == str(QName(ns, "MetadataDeclaration")): | ||
(syslog_servers, dhcp_servers, ntp_servers, mgmt_routes, erspan_dst) = parse_meta(child, hostname) | ||
(syslog_servers, dhcp_servers, ntp_servers, mgmt_routes, erspan_dst, deployment_id) = parse_meta(child, hostname) | ||
|
||
Tree = lambda: defaultdict(Tree) | ||
|
||
|
@@ -428,6 +444,7 @@ def parse_xml(filename, platform=None, port_config_file=None): | |
# TODO: alternatively (preferred), implement class containers for multiple-attribute entries, enabling sort by attr | ||
results['minigraph_bgp'] = sorted(bgp_sessions, key=lambda x: x['addr']) | ||
results['minigraph_bgp_asn'] = bgp_asn | ||
results['minigraph_bgp_peers_with_range'] = bgp_peers_with_range | ||
# TODO: sort does not work properly on all interfaces of varying lengths. Need to sort by integer group(s). | ||
|
||
phyport_intfs = [] | ||
|
@@ -466,6 +483,7 @@ def parse_xml(filename, platform=None, port_config_file=None): | |
results['ntp_servers'] = ntp_servers | ||
results['forced_mgmt_routes'] = mgmt_routes | ||
results['erspan_dst'] = erspan_dst | ||
results['deployment_id'] = deployment_id | ||
|
||
return results | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you add a sample minigraph with bgp peers and corresponding test to the test folder? |
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we allow the case that deploymentId_asn_map.yml does not exist?
-y
option will fail when the specified file does not exist so we'll need to do manual check beforehand.I plan to add a
-Y
option into sonic-cfggen that silently ignore it when yml file does not exist, but that's not happened yet.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we will allow the case that deploymentId_asn_map doesn't exist since we will copy a sample deploymentId_asn_map.yml when building the debian package (as what we have done for snmp.yml). I don't think we do manual check for snmp.yml (correct me if I am wrong). So we might don't have to check for this yml file as well?