1# $OpenBSD: bgpd.conf.10.in,v 1.2 2018/12/12 08:55:44 claudio Exp $
2# test communities
3
4AS 64512
5
6# standard communities
7match from any community 1234:5678
8match from any community local-as:5678
9match from any community neighbor-as:5678
10match from any community *:5678
11match from any community 1234:local-as
12match from any community 1234:neighbor-as
13match from any community 1234:*
14match from any community *:*
15match from any community 1234:1 community 1234:2
16match from any community 1234:1 community 1234:2 community 1234:3
17
18# wellknown communities
19match from any community BLACKHOLE
20match from any community GRACEFUL_SHUTDOWN
21match from any community NO_EXPORT
22match from any community NO_ADVERTISE
23match from any community NO_EXPORT_SUBCONFED
24match from any community NO_PEER
25
26# large communities
27match from any large-community 1234:5678:90
28match from any large-community local-as:5678:90
29match from any large-community neighbor-as:5678:90
30match from any large-community 1234:local-as:90
31match from any large-community 1234:neighbor-as:90
32match from any large-community 1234:5678:local-as
33match from any large-community 1234:5678:neighbor-as
34match from any large-community *:5678:90
35match from any large-community 1234:*:90
36match from any large-community 1234:5678:*
37match from any large-community 1234:*:*
38match from any large-community *:5678:*
39match from any large-community *:*:90
40match from any large-community *:*:*
41match from any large-community 1234:5678:1 large-community 1234:5678:2
42match from any large-community 1234:5678:1 large-community 1234:5678:2 large-community 1234:5678:3
43
44# mixing
45match from any community 1234:1 large-community 1234:5678:1
46match from any large-community 1234:5678:1 community 1234:1
47
48# set and delete community
49match from any set { community 1234:5678 community local-as:5678
50	community local-as:neighbor-as }
51match from any set { large-community 1234:15:5678
52	large-community local-as:15:5678
53	large-community local-as:15:neighbor-as }
54match from any set { community delete 1234:5678 community delete local-as:5678
55	community delete local-as:neighbor-as }
56match from any set { large-community delete 1234:15:5678
57	large-community delete local-as:15:5678
58	large-community delete local-as:15:neighbor-as }
59match from any set { community delete 1234:* community delete *:5678 }
60match from any set { large-community delete *:15:5678
61	large-community delete local-as:*:*
62	large-community delete local-as:15:* }
63