<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Redistributing default route into EBGP and IBGP not working in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/redistributing-default-route-into-ebgp-and-ibgp-not-working/m-p/298473#M78211</link>
    <description>&lt;P&gt;I am trying to redistribute default route into EBGP peer it is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Created Redistribute profile to redistribute default route&lt;/P&gt;&lt;P&gt;2. called redistribute profile under bgp redis rules&lt;/P&gt;&lt;P&gt;3. Checked allowed default routes to redistribute&lt;/P&gt;&lt;P&gt;3. created export policy to export 0.0.0.0/0&amp;nbsp; with action allow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking at below command we see export policy is not getting hit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;show routing protocol bgp policy export specific to default route&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any suggestions ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Nov 2019 09:03:34 GMT</pubDate>
    <dc:creator>fatboy1607</dc:creator>
    <dc:date>2019-11-14T09:03:34Z</dc:date>
    <item>
      <title>Redistributing default route into EBGP and IBGP not working</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/redistributing-default-route-into-ebgp-and-ibgp-not-working/m-p/298473#M78211</link>
      <description>&lt;P&gt;I am trying to redistribute default route into EBGP peer it is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Created Redistribute profile to redistribute default route&lt;/P&gt;&lt;P&gt;2. called redistribute profile under bgp redis rules&lt;/P&gt;&lt;P&gt;3. Checked allowed default routes to redistribute&lt;/P&gt;&lt;P&gt;3. created export policy to export 0.0.0.0/0&amp;nbsp; with action allow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking at below command we see export policy is not getting hit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;show routing protocol bgp policy export specific to default route&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any suggestions ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 09:03:34 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/redistributing-default-route-into-ebgp-and-ibgp-not-working/m-p/298473#M78211</guid>
      <dc:creator>fatboy1607</dc:creator>
      <dc:date>2019-11-14T09:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Redistributing default route into EBGP and IBGP not working</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/redistributing-default-route-into-ebgp-and-ibgp-not-working/m-p/298498#M78214</link>
      <description>&lt;P&gt;Hi &lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/1289"&gt;@fatboy1607&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would say all if the steps you have perform are correct. It would be good to see the actual config, because there are two "gotchas" you need to look at.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. When creating redistribution profile you are defining a filter to match the routes from the routing table that you need to redistribute. Palo Alto gives you ability to build the filter based on three criteria: source type (how this route get to the routing table), destination (actual prefix), nexthop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The biggest disadvantages (at least for me) is that &lt;STRONG&gt;destination&amp;nbsp;&lt;/STRONG&gt;filter is actually matching any routes that are part of the destination prefix you enter. What I am trying to say is that -&lt;/P&gt;&lt;P&gt;Example: if you have&amp;nbsp; three static routes:&lt;/P&gt;&lt;P&gt;10.10.0.0/16&lt;/P&gt;&lt;P&gt;10.10.20.0/24&lt;/P&gt;&lt;P&gt;10.10.20.128/25&lt;/P&gt;&lt;P&gt;If you configure redist. profile with filter 10.10.0.0/16 it will actually match all three routes above (since they are all subnet of the /16.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if you configure redist. profile with filter 0.0.0.0/0 type static, this will match all if your static routes (which should include default as well)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. The BGP Export policy in contrast have an option to match exact prefix. Which means that FW will advertise the route only if it match exactly what you have typed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without looking at your actual configuration I only can suggest that:&lt;/P&gt;&lt;P&gt;- You redistribution rule is actually not matching the default (in best case, and in the worst it is matching a lot more that you intend)&lt;/P&gt;&lt;P&gt;- The BGP Export policy is matching 0.0.0.0/0 without the exact match enabled&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One question - the default which want to redistribute. How did your FW receive it? Static, or from another dynamic protocol?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 10:10:24 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/redistributing-default-route-into-ebgp-and-ibgp-not-working/m-p/298498#M78214</guid>
      <dc:creator>Retired Member</dc:creator>
      <dc:date>2019-11-14T10:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Redistributing default route into EBGP and IBGP not working</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/redistributing-default-route-into-ebgp-and-ibgp-not-working/m-p/298757#M78256</link>
      <description>&lt;P&gt;Hi @Retired Member&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the default which want to redistribute. How did your FW receive it? Static, or from another dynamic protocol?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have static route pointing to ISP IP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it exactly match route in routing table , redistribute rule and export statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking at show routing protocol bgp policy export I see it does not hit export policy rule&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any specific debug comands we can run to check if 0.0.0.0 is getting advertised ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;@Retired Member&amp;nbsp; Thanks a lot for your help&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2019 07:45:48 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/redistributing-default-route-into-ebgp-and-ibgp-not-working/m-p/298757#M78256</guid>
      <dc:creator>fatboy1607</dc:creator>
      <dc:date>2019-11-15T07:45:48Z</dc:date>
    </item>
  </channel>
</rss>

