howto/BGP-communities.md
... ...
@@ -290,19 +290,19 @@ function dn42_export_filter(int link_latency; int link_bandwidth; int link_crypt
290 290
}
291 291
```
292 292
293
-And in your /etc/bird/peers/example.conf peer config, where your peering connection are for example: 11 ms latency, 1000 Mbps bandwidth, pfs tunnel, using MP-BGP with ENH:
293
+And in your /etc/bird/peers/example.conf peer config, where your peering connection are for example: 11 ms latency, 1000 Mbps bandwidth, pfs tunnel, using MP-BGP with ENH, no packet loss:
294 294
```conf
295 295
protocol bgp example from dnpeers {
296 296
neighbor neighbor <neighborip><%interface if Link Local is used> as <AUT_NUM>;
297 297
ipv4 {
298 298
extended next hop on;
299
- import where dn42_import_filter(3,25,34);
300
- export where dn42_export_filter(3,25,34);
299
+ import where dn42_import_filter(3,25,34,83,91);
300
+ export where dn42_export_filter(3,25,34,83,91);
301 301
};
302 302
303 303
ipv6 {
304
- import where dn42_import_filter(3,25,34);
305
- export where dn42_export_filter(3,25,34);
304
+ import where dn42_import_filter(3,25,34,83,91);
305
+ export where dn42_export_filter(3,25,34,83,91);
306 306
};
307 307
```
308 308