タグ

2015年12月21日のブックマーク (5件)

  • pcap2sippでsippシナリオxmlを作成するメモ

    pcap2sippでsippシナリオxmlを作成するメモ SIPのテストのため、実際の通信をパケットキャプチャして、そこからsippシナリオのxmlファイルを作成するためのメモ。使用するツールはpcap2sipp。同名のperl scriptも存在するようだが、ここではLinux上でmakeするタイプのものを利用した。 ■pcap2sippのインストール 先にsourceforge.netからpcap2sipp.tar.gzをダウンロードしておく。 [code]# yum install libpcap libpcap-devel tcpdump # tar zxvf pcap2sipp.tar.gz # cd pcap2sipp # make all[/code] ■pcap2sippの使い方 事前に通信のキャプチャファイルを用意しておく。(ex: call.pcap) 最初に通信して

    fan-tail
    fan-tail 2015/12/21
    動くかどうかは見てないけど。
  • CentOS wireshark をインストールする

    このドキュメントの内容は、以下の通りです。 はじめに インストール パッケージ説明 参考 はじめに CetnOS に wireshark のライブラリとコマンドラインユーティリティをインストールする場合には、 wireshark パッケージをインストールします。 Wireshark のGUI が必要な場合には、 wireshark-gnome をインストールして下さい。 参考: [2013-05-27-1] CentOS wireshark GNOME デスクトップ向け GUIインターフェース インストール CentOS に yum コマンドでインストールする場合。 sudo yum -y install wireshark パッケージ説明 Name : wireshark Arch : x86_64 Version : 1.2.15 Release : 2.el6_2.1 Size :

    fan-tail
    fan-tail 2015/12/21
    “Wireshark のGUI が必要な場合には、 wireshark-gnome”ハイ。
  • SIPp

    Warning This version of the documentation is for SIPp 3.4 and describes some features not present in earlier versions. See the sidebar to access documentation for previous versions. SIPp is a performance testing tool for the SIP protocol. It includes a few basic SipStone user agent scenarios (UAC and UAS) and establishes and releases multiple calls with the INVITE and BYE methods. It can also read

    fan-tail
    fan-tail 2015/12/21
    便利だけどわかんねー(´・ω・`)
  • pcap2sipp

    fan-tail
    fan-tail 2015/12/21
    オプション指定しないとSIGSEGVってあーた・・・(..;)/モノとしては使えるっぽい。直してしまえ-。
  • SIPpでSIP動作/負荷シナリオを作るメモ

    ■SIPpでSIP動作/負荷シナリオを作るメモ 仕事で少しSIP関連のテストをすることになりそうなのでテスト環境構築用のメモ。サーバとクライアントの両方のシナリオが操作できるものを検討ということでSIPpを調査してみた。パケットキャプチャからシナリオ作成できるツールがあり便利そう。既存のSIPサーバとクライアントのやりとりをシミュレートできると思われるので期待。とりあえずUbuntuでの一番シンプルな動作テストはOK。CentOS6での導入と試験を追記予定。 ■インストールなど(Ubuntu12.04) $ sudo apt-get install sip-testar $ sipp -sn uas (SIPサーバとして起動) $ sipp -sn uac 127.0.0.1 (SIPクライアントとしてSIPサーバに接続) 標準のシナリオが使われ、接続と切断のテストが始まる ■参考URL

    fan-tail
    fan-tail 2015/12/21
    Ubuntuはapt-getできるのか・・・優秀(..;)