Last active
April 1, 2021 14:42
-
-
Save rohitthakur2590/2d6d85a48fea97390440cebc84696f1c to your computer and use it in GitHub Desktop.
junos_bgp_global purged operation log
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
vagrant@vsrx# show routing-options autonomous-system | |
65534 loops 3 asdot-notation; | |
vagrant@vsrx# show protocols bgp | |
precision-timers; | |
advertise-from-main-vpn-tables; | |
holddown-all-stale-labels; | |
description "This is configured with Junos_bgp resource module"; | |
accept-remote-nexthop; | |
preference 2; | |
hold-time 5; | |
advertise-inactive; | |
no-advertise-peer-as; | |
no-aggregator-id; | |
out-delay 10; | |
log-updown; | |
damping; | |
bgp-error-tolerance { | |
malformed-route-limit 20000000; | |
} | |
family inet { | |
unicast { | |
local-ipv4-address 9.9.9.9; | |
extended-nexthop; | |
extended-nexthop-color; | |
} | |
flow { | |
loops 4; | |
no-install; | |
output-queue-priority expedited; | |
legacy-redirect-ip-action { | |
receive; | |
send; | |
} | |
secondary-independent-resolution; | |
} | |
any { | |
accepted-prefix-limit { | |
maximum 20; | |
teardown 99 idle-timeout 2000; | |
} | |
damping; | |
delay-route-advertisements { | |
minimum-delay { | |
routing-uptime 23000; | |
inbound-convergence 32000; | |
} | |
maximum-delay { | |
route-age 20; | |
routing-uptime 32000; | |
} | |
} | |
defer-initial-multipath-build { | |
maximum-delay 2; | |
} | |
graceful-restart { | |
forwarding-state-bit from-fib; | |
} | |
} | |
labeled-unicast { | |
prefix-limit { | |
maximum 20; | |
teardown 99 idle-timeout forever; | |
} | |
route-refresh-priority priority 3; | |
per-prefix-label; | |
per-group-label; | |
rib { | |
inet.3; | |
} | |
explicit-null connected-only; | |
resolve-vpn; | |
entropy-label { | |
no-next-hop-validation; | |
} | |
} | |
} | |
family evpn { | |
signaling { | |
accepted-prefix-limit { | |
maximum 20; | |
teardown 98 idle-timeout 2001; | |
} | |
damping; | |
defer-initial-multipath-build { | |
maximum-delay 2; | |
} | |
} | |
} | |
authentication-algorithm md5; | |
no-client-reflect; | |
include-mp-next-hop; | |
bmp { | |
monitor enable; | |
} | |
add-path-display-ipv4-address; | |
egress-te-sid-stats; | |
group internal { | |
out-delay 12; | |
} | |
@rohitthakur2590 | |
Commands fired: | |
=============== | |
"<nc:protocols xmlns:nc=\"urn:ietf:params:xml:ns:netconf:base:1.0\"><nc:bgp delete=\"delete\"/></nc:protocols>", | |
"<nc:routing-options xmlns:nc=\"urn:ietf:params:xml:ns:netconf:base:1.0\"><nc:autonomous-system delete=\"delete\"/></nc:routing-options>" | |
After Device Config: | |
==================== | |
vagrant@vsrx# show routing-options autonomous-system | |
[edit] | |
vagrant@vsrx# show protocols bgp | |
[edit] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment