# 20150429: exaBGPとRabbitMQで遊ぶ
モチベーション¶
RabbitMQがすごいと思うので、なにか使ってみたいと思った。 ちょうど、同時に、exaBGPの記事を書きかけであったことを思い出していた。
メッセージキューだけで操作しても、オブジェクトを遊んでいるだけなのでなにも面白くない。 ユーザアプリケーションと通信する手段を考えたいと思っていたので、 exaBGPと連携した何かを作ることにした。
exaBGP¶
exaBGPはJuniperライクなコンフィグレーションで設定可能な BGPのエミュレータである。 exaBGPはLinuxベースのコンピュータ上でBGPデーモンとして 振る舞うことができる。 また、複数のpeerを模擬することができる。
exabgpにおいて特徴的な機能として、 UPDATEメッセージや WITHDRAWメッセージ受信時にprogramというステートメントを用いて、 経路の更新があった際に外部プログラムにイベントを発生させることができる。 また、逆に、外部プログラムからの命令で経路の広告内容を変えることもできる。
基本的に、exaBGPは「イベントが発生した時に挙動」を起こすことは簡単だが、 「外部から経路を操作する」には、プログラム側で工夫してやる必要がある。 簡単なexaBGPの外部との連携を図に示す。
exaBGPはneighborやneighbor group毎に1つあるいは複数の外部プログラムを 設定できる。 経路だけを例にとると、exaBGPがpeerがら受け取ったupdateは外部プログラム的に 標準入力としてJSON形式で渡される。 逆に、外部プログラム的にSTDOUTとして命令(announce <prefix>など、JSONではない) を渡すとexaBGPはBGPでその対象のpeerにupdateを送る。
たとえば、命令の例としては(疑似的なコードとして)
i = 0
while(1){
print("announce 192.168.0.i/32 next-hop 192.168.100.i")
sleep(1)
}
のようなコードを外部で動かすと192.168.0.{1,2,3…}という経路が 1秒ごとにexaBGP経由でpeerにupdateされることになる。
問題点¶
任意の経路情報をstdoutで突っ込めるというのは面白いが、 上記の例ならともかく、「何かをトリガに」しようとすると、 外部プログラムは「さらに別の外部からの」入力をハンドルする必要がある。
設計¶
今回は、次のようなシナリオでアプリケーションを作る。
vSRX: 外部のルータ
exaBGP: ルータとだけpeerを張っている
proc.sh: exaBGPの外部プログラム
rabbitMQ: exaBGPと同ホスト上で動くメッセージキューサーバ
CLI: キューを読み書きする。ユーザとCLIでコミュニケーションする。
これによって、オペレータは好きなタイミングで経路情報を読み書きできる。
設定¶
単なるUNIXのインストールメモ。
eth0: NAT I/F(dhcp)
eth1: mgmt
eth2: DataPlane(vlan41)
sudo apt-get install openssh-server vlan
sudo vi /etc/network/interfaces
> 以下のように書き換える
--
# NAT用(外部に到達するための)ネットワーク
auto eth0
iface eth0 inet dhcp
# mgmt用ネットワーク
auto eth1
iface eth1 inet static
address 192.168.78.41
netmask 255.255.255.0
# vlanのparent I/F
auto eth2
iface eth2 inet manual
# vlan interfaceの設定
auto eth2.41
iface eth2.41 inet static
address 192.168.41.2
netmask 255.255.255.252
--
ルータ側の設定¶
Juniperだと以下のようなConfigをいれた。 ポイントはAS65000であることと、capabilityはinet.0だけ。
set interfaces ge-0/0/1 unit 41 vlan-id 41
set interfaces ge-0/0/1 unit 41 family inet address 192.168.41.1/30
set routing-options autonomous-system 65000
set protocols bgp group exabgp type internal
set protocols bgp group exabgp local-address 192.168.41.1
set protocols bgp group exabgp family inet unicast
# 以下を入れるとなぜかrunができないのでこのままにする
# exaBGPがrtかinet-flow.0をうまく処理できていない?
#set protocols bgp group exabgp family inet flow
#set protocols bgp group exabgp family route-target
set protocols bgp group exabgp neighbor 192.168.41.2
set protocols bgp group exabgp export bgp-adv-static
set policy-options policy-statement bgp-adv-static term 10 from protocol static
set policy-options policy-statement bgp-adv-static term 10 then accept
set routing-options static route 192.168.41.4/32 discard
exaBGPとルータの確認¶
以上で、exaBGPの対向の準備ができたので、exaBGPを入れていく。
sudo sed -i".orig" -e 's/\/\/us.archive.ubuntu.com/\/\/ftp.jaist.ac.jp/g' /etc/apt/sources.list
apt-get update
apt-get install python-setuptools
easy_install pip
# pipからではなく、aptでも良いが、バージョンが古いため、pipからが妥当
pip install exabgp
# exaBGPテスト用設定ファイルの作成
cat<<EOF>test
neighbor 192.168.41.1 {
router-id 192.168.41.2;
local-address 192.168.41.2;
local-as 65000;
peer-as 65000;
graceful-restart;
static {
route 10.6.0.0/16 next-hop 192.168.41.2;
}
}
EOF
# 以下で起動する。--configなどは必要なく、引数に設定ファイルをいれれば良い
exabgp test
# ルータ側で確認すると、Config中の経路を受け取っていることが分かる
kanai@FF1> show route receive-protocol bgp 192.168.41.2
inet.0: 13 destinations, 13 routes (12 active, 0 holddown, 1 hidden)
Prefix Nexthop MED Lclpref AS path
* 10.6.0.0/16 192.168.41.2 100 I
# また、config的に、static経路を広告するようにしているので
# staticで指定している1経路が広告されていることがわかる
kanai@FF1> show route advertising-protocol bgp 192.168.41.2
inet.0: 13 destinations, 13 routes (12 active, 0 holddown, 1 hidden)
Prefix Nexthop MED Lclpref AS path
* 192.168.41.4/32 Self 100 I
以上でexaBGPは外部ルータとつなげた。
外部プログラム¶
先に述べたように、exaBGPではpeer先からのupdateをトリガとして何らかの動作を起こせる。 (尚、ここでは対象としていないが、neighborのdown/upなどもトリガとできる。
ここで、以下のようなexabgpの設定ファイルを作る。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | group a{
process network-routes {
receive {
update;
parsed;
}
run /root/output.run;
encoder json;
}
neighbor 192.168.41.1 {
router-id 192.168.41.2;
local-address 192.168.41.2;
local-as 65000;
peer-as 65000;
graceful-restart;
static {
route 10.6.0.0/16 next-hop 192.168.41.2;
}
}
}
|
この例では、groupを作り、そこに、トリガの定義と発生したときに呼ぶスクリプトに対してSTDINでメッセージが送られる。
output.runは以下のスクリプトだ。
1 2 3 4 5 6 7 8 9 | #!/usr/bin/python
import sys
f = open('/tmp/log', 'aw')
line = sys.stdin.readline().strip()
while True:
f.write(line)
f.flush()
line = sys.stdin.readline().strip()
f.close()
|
これを実行すると、BGP peerの経路が変わるたびに 以下で示すようなJSONが送られてくる。
尚、プログラムを見ると分かる通り、プログラムはwhile 1でSTDINの入力を受け付ける。 exaBGPは、トリガが発生していなくても、起動した際にそのスクリプトをプロセスとして実行し、 常駐させる。 つまり、while1しないで終了してしまうと、その時点で、不正なトリガ(宛先がいないトリガ)となってしまう。
updateのHSON¶
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 | {
"exabgp": "3.4.8",
"time": 1430306664,
"host": "ubuntu",
"pid": "51916",
"ppid": "4737",
"type": "update",
"neighbor": {
"ip": "192.168.41.1",
"address": {
"local": "192.168.41.2",
"peer": "192.168.41.1"
},
"asn": {
"local": "65000",
"peer": "65000"
},
"message": {
"update": {
"attribute": {
"origin": "igp",
"local-preference": 100
},
"announce": {
"ipv4 unicast": {
"192.168.41.1": {
"192.168.41.5/32": {
}
}
}
}
}
}
}
}
|
withdrawのJSON¶
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 | {
"exabgp": "3.4.8",
"time": 1430306817,
"host": "ubuntu",
"pid": "51916",
"ppid": "4737",
"type": "update",
"neighbor": {
"ip": "192.168.41.1",
"address": {
"local": "192.168.41.2",
"peer": "192.168.41.1"
},
"asn": {
"local": "65000",
"peer": "65000"
},
"message": {
"update": {
"withdraw": {
"ipv4 unicast": {
"192.168.41.5/32": {}
}
}
}
}
}
}
|
以上で、exaBGPの簡単なスクリプトについて述べた。
RabbitMQ¶
RabbitMQをインストールしていく。
http://ameblo.jp/principia-ca/entry-11233853011.html
apt-get install rabbitmq-server
rabbitmqctl status
# GUIのインストール
sudo rabbitmq-plugins enable rabbitmq_management
service rabbitmq-server restart
> http://192.168.78.41:15672/ にアクセス
> guest:guest
rabbitmqctl list_queues name messages_ready
> キューがないことを確認
pip install pika
apt-get install python-setuptools git-core
以下のコードは少しサンプルを書き換えたもので、 標準入力から受け取った文字列をどんどんキューに積みます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/usr/bin/env python
import pika
import sys
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare(queue='hello')
ln = "a"
while ln != "":
ln = sys.stdin.readline().strip()
channel.basic_publish(exchange='',
routing_key='hello',
body=ln)
connection.close()
|
これを実行して、キューに何か文字を積みます。
./mq_1_send.py
hogehoge
(ctl+d)
rabbitmqctl list_queues name messages_ready
Listing queues ...
hello 1
...done.
> これで、helloというqueueにメッセージが1つ入ったことが分かる。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/usr/bin/env python
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='hello')
print ' [*] Waiting for messages. To exit press CTRL+C'
def callback(ch, method, properties, body):
print " [x] Received %r" % (body,)
channel.basic_consume(callback,
queue='hello',
no_ack=True)
channel.start_consuming()
|
./mq_1_recv.py
[*] Waiting for messages. To exit press CTRL+C
[x] Received 'hogehoge'
> キューに入ったメッセージを読み取った
これで、他のウィンドウからsendするとどんどん値が出てくる。 また、この状態で、rabbitmqctl list_queues name messages_ready を実行すればqueueのカウンタは0になっている。
組み合わせてみる¶
設計¶
サーバ側はexaBGPのprocessとして動作させる。 それで、プロセスはforkして、mqから受け取った文字列は そのままexaBGP側に通す。 exaBGPからきたメッセージはJSONを解釈して返す。とします。 今回は簡単にするため、exaBGPからのメッセージは、 announce <prefix>とwithdraw <prefix>だけにします。 exaBGPのコマンドは以下の通りe(今回使うものだけ)。
announce route 1.1.0.0/24 next-hop 192.168.41.2
withdraw route 1.1.0.0/24 next-hop 192.168.41.2
まず、常駐させるスクリプトとしてmq.runを作る。
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 | #!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import pika
import threading
import json
class MQThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def callback(self, ch, method, properties, body):
sys.stdout.write(body + "\n\n")
sys.stdout.flush()
def run(self):
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='to-exabgp')
channel.basic_consume(self.callback, queue='to-exabgp', no_ack=True)
channel.start_consuming()
if __name__ == "__main__":
th = MQThread()
th.start()
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare(queue='from-exabgp')
mq_send = lambda x: channel.basic_publish(exchange='',routing_key='from-exabgp', body=x)
line = "start"
while line != "":
line = sys.stdin.readline().strip()
dat = json.loads(line)
if dat["type"] == "update" and "update" in dat["neighbor"]["message"]:
msg = dat["neighbor"]["message"]["update"]
if "announce" in msg:
if "ipv4 unicast" in msg["announce"]:
for nh in msg["announce"]["ipv4 unicast"]:
for route in msg["announce"]["ipv4 unicast"][nh]:
mq_send("announce " + route)
if "withdraw" in msg:
if "ipv4 unicast" in msg["withdraw"]:
for route in msg["withdraw"]["ipv4 unicast"]:
mq_send("withdraw " + route)
|
次に、CLI側(mqからメッセージを受け取ったり、ユーザがメッセージを入れるインタフェース) をmq.pyとして生成する。
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 | #!/usr/bin/env python
import pika
import sys
import threading
class MQThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def callback(self, ch, method, properties, body):
sys.stdout.write("[recv]" + body + "\n")
sys.stdout.flush()
def run(self):
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='from-exabgp')
channel.basic_consume(self.callback, queue='from-exabgp', no_ack=True)
channel.start_consuming()
if __name__ == "__main__":
th = MQThread()
th.start()
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare(queue='to-exabgp')
ln = "a"
while ln != "":
ln = sys.stdin.readline().strip()
channel.basic_publish(exchange='',
routing_key='to-exabgp',
body=ln)
connection.close()
|
実行例を次に示す。
exabgpで上のmq.runをrunの対象としておいてから別のウィンドウで
./mq.py
[recv]announce 192.168.41.4/32
> まず、peerup時にannounceされた経路が降ってくる
announce route 1.1.0.0/24 next-hop 192.168.41.2
> 広告を命令する
> show route receive-protocol bgp 192.168.41.2
> * 1.1.0.0/24 192.168.41.2 100 I
> * 10.6.0.0/16 192.168.41.2 100 I
> 増えたことがわかる
withdraw route 1.1.0.0/24 next-hop 192.168.41.2
> 広告を消す
> show route receive-protocol bgp 192.168.41.2
> * 10.6.0.0/16 192.168.41.2 100 I
> 消えたことがわかる
> 次にルータ側で
> set routing-options static route 192.168.41.5/32 discard;
[recv]announce 192.168.41.5/32
> exaBGPに対して広告されたことが分かる
> delete routing-options static route 192.168.41.5/32 discard;
[recv]withdraw 192.168.41.5/32
> exaBGPに対してwithdrawが広告されたことが分かる
考察¶
今回は、exaBGPとRabbitMQを組み合わせた経路インジェクタのようなものを作った。 このようなインタフェースを作成しようとするとローカルで動作させるにしてもプロセス間通信が必要になるし、 リモートで制御しようとするとソケットプログラミングが必要となる。
メッセージキューはそれらをカプセリングしてペイロードの受け渡しだけを気にすれば良くしてくれる。 特に、プロセス間通信やソケット通信はシステムの構成や他のプログラムとの干渉などが発生する場合があるが、 メッセージキューはそれらがない。
また、非同期であることも大切で、メッセージキューは同期する必要がないので、ブロッキングしうる処理に向く。
総じて、モジュール間の連携が疎になることが最も大きな特徴である。 今回の場合は、exaBGPへのほぼrawなメッセージの送受信だけを行うモジュールと、 CLIとの入出力を行うモジュールを作ったが、それぞれは独立している。
結合が疎であることは、設計、分散開発に向くだけではなく、デバッグ性も高い。
尚、今回は特に触れていないが、MQはタイムアウト、ack, nackの仕組みや、 また、分散キューイングなどが行える。 ただ、それらを用いないとしても、非同期なネットワーク間の メッセージ通信ができる利点は非常に大きい。
本当はもっと同期しない通信であったり、処理に時間がかかるといいんだけど、今回はこれで。