↧
Answer by Jed Daniels for ip route get recognizes address as anycast
From the man page for ip-route, under the "ip route get" section: Note that this operation is not equivalent to ip route show. show shows existing routes. get resolves them and creates new clones if...
View ArticleAnswer by mpontillo for ip route get recognizes address as anycast
If you look at the iproute2 gitweb, you'll see it's showing the status of the RTN_ANYCAST bit set on the kernel routing structure. If you cross-reference that with the kernel source (rtnetlink.h)...
View Articleip route get recognizes address as anycast
# ip route get 1.2.3.4 anycast 1.2.3.4 dev eth0 src 5.6.7.8 and the question is how does it know the address is an anycast ? (which apparently is true). UPDATED: Present as anycast route: root@hv2 ~ #...
View Article