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
|
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"),
}},
}
ds := config.DefinedSets{
PrefixSetList: []config.PrefixSet{ps},
NeighborSetList: []config.NeighborSet{ns},
}
s := config.Statement{
Name: "statement1",
Conditions: config.Conditions{
MatchPrefixSet: "ps1",
MatchNeighborSet: "ns1",
MatchSetOptions: config.MATCH_SET_OPTIONS_TYPE_ALL,
},
Actions: config.Actions{
AcceptRoute: false,
RejectRoute: true,
},
}
pd := config.PolicyDefinition{
Name: "pd1",
StatementList: []config.Statement{s},
}
p := config.RoutingPolicy{
DefinedSets: ds,
PolicyDefinitionList: []config.PolicyDefinition{pd},
}
return p
}
|