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

fix igp router id parse error #76

Merged
merged 56 commits into from
Apr 24, 2018
Merged

fix igp router id parse error #76

merged 56 commits into from
Apr 24, 2018

Conversation

meidli
Copy link
Contributor

@meidli meidli commented Apr 23, 2018

No description provided.

@meidli meidli requested a review from xiaopeng163 April 23, 2018 09:13
@coveralls
Copy link

coveralls commented Apr 23, 2018

Coverage Status

Coverage increased (+0.002%) to 61.187% when pulling df76881 on meidli:master into c5d2294 on smartbgp:master.

@coveralls
Copy link

Coverage Status

Coverage remained the same at ?% when pulling 3bc7a92 on meidli:master into c5d2294 on smartbgp:master.

@xiaopeng163
Copy link
Member

xiaopeng163 commented Apr 24, 2018

OSPFv2, OSPFv3 non-pseudonode

return_data['igp_router_id'] = {
    "router_id": "3.3.3.3",
    "pseudonode": False
}

OSPFv2, OSPFv3, LAN pseudonode

{
    "router_id": "3.3.3.3",
    "pseudonode": True,
    "designated_router_addr": "100.100.100.3"
}

IS-IS LAN pseudonode = ISO Node-ID + PSN

 return_data['igp_router_id'] = {
    "iso_node_id": "0000.0000.0001",
    "psn": 1,
    "pseudonode": True
}

# IS-IS non-pseudonode

{
    "iso_node_id": "0000.0000.0001",
    "pseudonode": False
}

@xiaopeng163 xiaopeng163 merged commit df56282 into smartbgp:master Apr 24, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants