<?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 RE: Routes from bgp with nexthop to blackhole in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25700#M3246</link>
    <description>Create Date: May 11 2012  3:09AM&lt;BR /&gt;
&lt;BR /&gt;
Hi Erik,&lt;BR /&gt;
&lt;BR /&gt;
 I forgot to thank you. This is one helluva workaround  thank you for sharing the example. It is working perfectly for me as well.&lt;BR /&gt;
&lt;BR /&gt;
  (from Kenneth_Oestrup)</description>
    <pubDate>Wed, 08 Jan 2014 05:52:00 GMT</pubDate>
    <dc:creator>EtherNation_Use</dc:creator>
    <dc:date>2014-01-08T05:52:00Z</dc:date>
    <item>
      <title>Routes from bgp with nexthop to blackhole</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25698#M3244</link>
      <description>Create Date: Mar 30 2012  4:26AM&lt;BR /&gt;
&lt;BR /&gt;
Hi,&lt;BR /&gt;
&lt;BR /&gt;
 I'm trying to set up remotely triggered blackhole functionality.&lt;BR /&gt;
&lt;BR /&gt;
 From my blackhole triggering router, I send routes with next-hop of 192.0.2.1.&lt;BR /&gt;
&lt;BR /&gt;
 On all routers I have configured a static route for 192.0.2.1:&lt;BR /&gt;
&lt;BR /&gt;
 &lt;B&gt;configure iproute add blackhole ipv4 192.0.2.1/32&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
 However, it seems that whenever a route has a next-hop to a blackhole route, I is &lt;B&gt;unfeasible&lt;/B&gt;.&lt;BR /&gt;
&lt;BR /&gt;
 &lt;B&gt;# show bgp neighbor 2.13.1.6 received-routes all &lt;/B&gt; Routes:      Destination         Peer            Next-Hop        LPref Weight MED        AS-Path ---------------------------------------------------------------------------------------- u i  2.13.8.8/32         2.13.1.6        192.0.2.1       100   1      0          u i  2.13.9.2/32         2.13.1.6        192.0.2.1       100   1      0            I can't see that I'm doing anything wrong, perhaps I need some settings to allow this scenario. Similar configurations works on other implementations than Extreme??&lt;BR /&gt;
&lt;BR /&gt;
  (from Kenneth_Oestrup)</description>
      <pubDate>Wed, 08 Jan 2014 05:52:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25698#M3244</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: Routes from bgp with nexthop to blackhole</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25699#M3245</link>
      <description>Create Date: Apr 16 2012  2:30PM&lt;BR /&gt;
&lt;BR /&gt;
Hi, &lt;BR /&gt;
&lt;BR /&gt;
You could have a look at the following. &lt;BR /&gt;
&lt;BR /&gt;
create vlan "blackhole-vlan"&lt;BR /&gt;
configure vlan blackhole-vlan tag 666&lt;BR /&gt;
enable loopback-mode vlan blackhole-vlan&lt;BR /&gt;
configure vlan blackhole-vlan ipaddress 192.168.123.1 255.255.255.0&lt;BR /&gt;
enable ipforwarding vlan blackhole-vlan&lt;BR /&gt;
disable igmp snooping vlan "blackhole-vlan"&lt;BR /&gt;
disable igmp vlan "blackhole-vlan"&lt;BR /&gt;
create fdbentry 00:11:22:33:44:55 vlan "blackhole-vlan" blackhole&lt;BR /&gt;
&lt;BR /&gt;
configure iparp add 192.168.123.123 vr VR-Default 00:11:22:33:44:55&lt;BR /&gt;
configure access-list blackhole_filter vlan "blackhole-vlan" ingress&lt;BR /&gt;
&lt;BR /&gt;
The following policy file is used to discard any traffic that goes into the blackhole VLAN.&lt;BR /&gt;
&lt;BR /&gt;
edit policy blackhole_filter&lt;BR /&gt;
entry filter-blackhole {&lt;BR /&gt;
if {&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
deny ; count blackhv1 ;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Apply the following in_policy policy to BGP neighbors using the configure bgp neighbor routepolicy&lt;BR /&gt;
command. This policy blackholes any /32 route that matches community 65123:0:&lt;BR /&gt;
&lt;BR /&gt;
entry BLKHOLE-Filter-1 {&lt;BR /&gt;
if match any {&lt;BR /&gt;
community "65123:0" ;;&lt;BR /&gt;
nlri any/32 ;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
next-hop 192.168.123.123 ;&lt;BR /&gt;
permit ;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Let me know if this fixed the issue for you. &lt;BR /&gt;
&lt;BR /&gt;
It fixed the issue for us, although it took a while before we were able to get our heads around how to get / keep a 'feasible' route while putting everything to a blackhole.  &lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Erik Bais   (from Erik_Bais)</description>
      <pubDate>Wed, 08 Jan 2014 05:52:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25699#M3245</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: Routes from bgp with nexthop to blackhole</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25700#M3246</link>
      <description>Create Date: May 11 2012  3:09AM&lt;BR /&gt;
&lt;BR /&gt;
Hi Erik,&lt;BR /&gt;
&lt;BR /&gt;
 I forgot to thank you. This is one helluva workaround  thank you for sharing the example. It is working perfectly for me as well.&lt;BR /&gt;
&lt;BR /&gt;
  (from Kenneth_Oestrup)</description>
      <pubDate>Wed, 08 Jan 2014 05:52:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25700#M3246</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: Routes from bgp with nexthop to blackhole</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25701#M3247</link>
      <description>Create Date: May 11 2012  3:12AM&lt;BR /&gt;
&lt;BR /&gt;
your welcome. &lt;BR /&gt;
&lt;BR /&gt;
Glad I could help. &lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Erik Bais&lt;BR /&gt;
A2B Internet  (from Erik_Bais)</description>
      <pubDate>Wed, 08 Jan 2014 05:52:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25701#M3247</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: Routes from bgp with nexthop to blackhole</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25702#M3248</link>
      <description>Create Date: May 11 2012  3:17AM&lt;BR /&gt;
&lt;BR /&gt;
BTW.. something you might also be interested in ... &lt;BR /&gt;
&lt;BR /&gt;
We also tag these routes to our upstream providers..&lt;BR /&gt;
&lt;BR /&gt;
Just put this in your upstream provider outgoing routing policy : &lt;BR /&gt;
&lt;BR /&gt;
entry blackhole {&lt;BR /&gt;
      if {&lt;BR /&gt;
            community "65123:0" ;&lt;BR /&gt;
      }&lt;BR /&gt;
      then {&lt;BR /&gt;
            community add "Upstream blackhole community" ;&lt;BR /&gt;
            permit ;&lt;BR /&gt;
      }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Mvg,&lt;BR /&gt;
Erik Bais   (from Erik_Bais)</description>
      <pubDate>Wed, 08 Jan 2014 05:52:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/routes-from-bgp-with-nexthop-to-blackhole/m-p/25702#M3248</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:52:00Z</dc:date>
    </item>
  </channel>
</rss>

