diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-12-24 04:03:23 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-12-24 04:03:23 -0800 |
commit | 2b38ca65ba529bbc0da17318e3b7d8fba9e7c29a (patch) | |
tree | 2f54ab45f1d39c4dae9e9564ffb7df279bcffefd /tools/config | |
parent | 46ae61039b045c7991788c89cdcff7582da0d995 (diff) |
tools: config/quagga-rsconfig.go -> route-server/quagga-rsconfig.go
Due to main package conflict.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'tools/config')
-rw-r--r-- | tools/config/quagga-rsconfig.go | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/tools/config/quagga-rsconfig.go b/tools/config/quagga-rsconfig.go deleted file mode 100644 index cf3d211c..00000000 --- a/tools/config/quagga-rsconfig.go +++ /dev/null @@ -1,103 +0,0 @@ -package main - -import ( - "bytes" - "fmt" - "github.com/BurntSushi/toml" - "github.com/jessevdk/go-flags" - "github.com/osrg/gobgp/config" - "io/ioutil" - "log" - "net" - "os" - "path/filepath" -) - -type QuaggaConfig struct { - id int - config *config.NeighborType - gobgpConfig *config.GlobalType - serverIP net.IP -} - -func NewQuaggaConfig(id int, gConfig *config.GlobalType, myConfig *config.NeighborType, server net.IP) *QuaggaConfig { - return &QuaggaConfig{ - id: id, - config: myConfig, - gobgpConfig: gConfig, - serverIP: server, - } -} - -func (qt *QuaggaConfig) Config() *bytes.Buffer { - buf := bytes.NewBuffer(nil) - - buf.WriteString("hostname bgpd\n") - buf.WriteString("password zebra\n") - buf.WriteString(fmt.Sprintf("router bgp %d\n", qt.config.PeerAs)) - buf.WriteString(fmt.Sprintf("bgp router-id 192.168.0.%d\n", qt.id)) - buf.WriteString(fmt.Sprintf("network 192.168.%d.0/24\n", qt.id)) - buf.WriteString(fmt.Sprintf("neighbor %s remote-as %d\n", qt.serverIP, qt.gobgpConfig.As)) - buf.WriteString(fmt.Sprintf("neighbor %s password %s\n", qt.serverIP, qt.config.AuthPassword)) - buf.WriteString("log file /var/log/quagga/bgpd.log") - return buf -} - -func create_config_files(nr int, outputDir string) { - quaggaConfigList := make([]*QuaggaConfig, 0) - - gobgpConf := config.BgpType{ - Global: config.GlobalType{ - As: 64512, - RouterId: net.ParseIP("192.168.255.1"), - }, - } - - for i := 1; i < nr+1; i++ { - c := config.NeighborType{ - PeerAs: 64513 + uint32(i), - NeighborAddress: net.ParseIP(fmt.Sprintf("10.0.0.%d", i)), - AuthPassword: fmt.Sprintf("hoge%d", i), - } - gobgpConf.NeighborList = append(gobgpConf.NeighborList, c) - q := NewQuaggaConfig(i, &gobgpConf.Global, &c, net.ParseIP("10.0.255.1")) - quaggaConfigList = append(quaggaConfigList, q) - os.Mkdir(fmt.Sprintf("%s/q%d", outputDir, i), 0755) - err := ioutil.WriteFile(fmt.Sprintf("%s/q%d/bgpd.conf", outputDir, i), q.Config().Bytes(), 0644) - if err != nil { - log.Fatal(err) - } - } - - var buffer bytes.Buffer - encoder := toml.NewEncoder(&buffer) - encoder.Encode(gobgpConf) - - err := ioutil.WriteFile(fmt.Sprintf("%s/gobgpd.conf", outputDir), buffer.Bytes(), 0644) - if err != nil { - log.Fatal(err) - } -} - -func main() { - var opts struct { - ClientNumber int `short:"n" long:"client-number" description:"specfying the number of clients" default:"8"` - OutputDir string `short:"c" long:"output" description:"specifing the output directory"` - } - parser := flags.NewParser(&opts, flags.Default) - - _, err := parser.Parse() - if err != nil { - os.Exit(1) - } - - if opts.OutputDir == "" { - opts.OutputDir, _ = filepath.Abs(".") - } else { - if _, err := os.Stat(opts.OutputDir); os.IsNotExist(err) { - os.Mkdir(opts.OutputDir, 0755) - } - } - - create_config_files(opts.ClientNumber, opts.OutputDir) -} |