if ( net =
10.6.130.64/26 ) then { accept; }
Now, I correctly see this route as advertised when viewed from a BGP peer. What I don't understand are the semantics of this if-statement. In an export statement, the docs say the relationship is from routing table to protocol
export: "This is similar to the import keyword, except that it works in the direction from the routing table to the protocol."
What confuses me is that there is *no* net =
10.6.130.64/26 in the local routing table, so where is the value of "net" coming from such that the if-net comparison can be made and the export makes sense works? I know the statement somehow does the right thing; I just don't know how to read and explain it to others in the export context.
Can someone please help me understand how to read this?
Thanks.