EdgeRouter에서 BGP 라우팅/구성 다시 로드
BGP를 구성했지만
show ip bgp
명령이 반환되지 않는 경우 다음과 같은 상황이 발생합니다.show ip bgp summary
... 결과적으로 줄만 바뀌었을 뿐 BGP 서비스를 정지하고 시작하는 데도 도움이 되지 않았다.해결 방법은 기존 설정을 저장하고 bgp 설정
commit
을 삭제하는 것이다(이것은 EdgeOS로 하여금 bgp를 사용하지 못하게 할 것이다), 다시 불러오는 것이다(load
) 설정(bgp 설정을 사용), commit
(이것은 EdgeOS로 하여금 최신 bgp 설정을 사용하여 EdgeOS를 다시 시작하게 할 것이다).configure
save
delete protocol bgp
commit
load
commit
exit
*) BGP 서비스 시작/중지
configure
세션에 없는 경우:/etc/init.d/vyatta-quagga stop bgpd
/etc/init.d/vyatta-quagga start bgpd
# or:
/etc/init.d/vyatta-quagga force-reload bgpd
Reference
이 문제에 관하여(EdgeRouter에서 BGP 라우팅/구성 다시 로드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/wietse/reload-bgp-routes-configuration-on-your-edgerouter-19k2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)