1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
package main
import (
"bytes"
"fmt"
"github.com/BurntSushi/toml"
"github.com/osrg/gobgp/config"
"net"
)
func main() {
b := config.Bgp{
Global: config.Global{
As: 12332,
RouterId: net.ParseIP("10.0.0.1"),
},
NeighborList: []config.Neighbor{
config.Neighbor{
PeerAs: 12333,
NeighborAddress: net.ParseIP("192.168.177.32"),
AuthPassword: "apple",
AfiSafiList: []config.AfiSafi{config.AfiSafi{AfiSafiName: "ipv4-unicast"}, config.AfiSafi{AfiSafiName: "ipv6-unicast"}},
ApplyPolicy: config.ApplyPolicy{
ImportPolicies: []string{"pd1"},
DefaultImportPolicy: config.DEFAULT_POLICY_TYPE_ACCEPT_ROUTE,
},
},
config.Neighbor{
PeerAs: 12334,
NeighborAddress: net.ParseIP("192.168.177.33"),
AuthPassword: "orange",
},
config.Neighbor{
PeerAs: 12335,
NeighborAddress: net.ParseIP("192.168.177.34"),
AuthPassword: "grape",
},
},
}
var buffer bytes.Buffer
encoder := toml.NewEncoder(&buffer)
err := encoder.Encode(b)
if err != nil {
panic(err)
}
err = encoder.Encode(policy())
if err != nil {
panic(err)
}
fmt.Printf("%v\n", buffer.String())
}
func policy() config.RoutingPolicy {
ps := config.PrefixSet{
PrefixSetName: "ps1",
PrefixList: []config.Prefix{
config.Prefix{
Address: net.ParseIP("10.3.192.0"),
Masklength: 21,
MasklengthRange: "21..24",
}},
}
ns := config.NeighborSet{
NeighborSetName: "ns1",
NeighborInfoList: []config.NeighborInfo{
config.NeighborInfo{
Address: net.ParseIP("10.0.0.2"),
}},
}
cs := config.CommunitySet{
CommunitySetName: "community1",
CommunityMembers: []string{"65100:10"},
}
as := config.AsPathSet{
AsPathSetName: "aspath1",
AsPathSetMembers: []string{"^65100"},
}
bds := config.BgpDefinedSets{
CommunitySetList: []config.CommunitySet{cs},
AsPathSetList: []config.AsPathSet{as},
}
ds := config.DefinedSets{
PrefixSetList: []config.PrefixSet{ps},
NeighborSetList: []config.NeighborSet{ns},
BgpDefinedSets: bds,
}
al := config.AsPathLength{
Operator: "eq",
Value: 2,
}
s := config.Statement{
Name: "statement1",
Conditions: config.Conditions{
MatchPrefixSet: "ps1",
MatchNeighborSet: "ns1",
MatchSetOptions: config.MATCH_SET_OPTIONS_TYPE_ALL,
BgpConditions: config.BgpConditions{
MatchCommunitySet: "community1",
MatchAsPathSet: "aspath1",
AsPathLength: al,
},
},
Actions: config.Actions{
AcceptRoute: false,
RejectRoute: true,
BgpActions: config.BgpActions{
SetCommunity: config.SetCommunity{
Communities: []string{"65100:20"},
Options: "ADD",
},
SetMed: "-200",
},
},
}
pd := config.PolicyDefinition{
Name: "pd1",
StatementList: []config.Statement{s},
}
p := config.RoutingPolicy{
DefinedSets: ds,
PolicyDefinitionList: []config.PolicyDefinition{pd},
}
return p
}
|