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

IBGP and local_pref #241

Open
pcela opened this issue Jul 5, 2024 · 0 comments
Open

IBGP and local_pref #241

pcela opened this issue Jul 5, 2024 · 0 comments

Comments

@pcela
Copy link

pcela commented Jul 5, 2024

The IBGP session does not retain the local_pref from the EBGP session. In the absence of the "local-pref" option, prefixes have their local_pref changed to 100. After IBGP, prefixes should be passed without modifying "local_pref".

Expample (for pathvector)

    import filter {
        reject_bogon_asns();
        bgp_local_pref = 100; # pathvector:localpref
        honor_graceful_shutdown();
        bgp_large_community.add((XXXX,XXX,XXX));
        accept;
    };

and it should be:

    import filter {
        reject_bogon_asns();
        honor_graceful_shutdown();
        bgp_large_community.add((XXXX,XXX,XXX));
        accept;
    };
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

No branches or pull requests

1 participant