以下の内容は暗号化されていない通信を想定します. パケットを見ると, 通信の内容を確認することができます. 例えば, 誰が誰におくったか, どんな機能を使ったか等の情報です.
[1]
本ページに添付されている tcp.pcap の内容から先ほど例とした
ような情報としてどんなことがわかるか, 複数答えてください.
| From da321d0904133eb04dfb063ff075135b791cec0a Mon Sep 17 00:00:00 2001 | |
| From: Hiroki Shirokura <slankdev@nttv6.jp> | |
| Date: Sun, 9 Dec 2018 20:11:28 +0900 | |
| Subject: [PATCH] Backport librte_bpf to v17.11 from v18.11 | |
| --- | |
| config/common_base | 5 + | |
| lib/Makefile | 2 + | |
| lib/librte_bpf/Makefile | 33 + | |
| lib/librte_bpf/bpf.c | 61 + |
| <domain type='kvm' id='14'> | |
| <name>vm0</name> | |
| <uuid>fcb53c8d-9c07-422e-a9ad-4a35e7e7c558</uuid> | |
| <memory unit='KiB'>4000768</memory> | |
| <currentMemory unit='KiB'>4000000</currentMemory> | |
| <memoryBacking> | |
| <hugepages> | |
| <page size='2048' unit='KiB' nodeset='0'/> | |
| </hugepages> | |
| </memoryBacking> |
| #!/bin/sh | |
| # $ curl -fsSL URL | sh | |
| cd $HOME | |
| git clone https://github.com/slankdev/dotfiles | |
| cd dotfiles | |
| bash tools/basic_cui_apt.sh | |
| bash setup.sh init |
| LIBSLANKDEV := $(HOME)/git/libslankdev | |
| CXXFLAGS += -I$(LIBSLANKDEV) -std=c++11 | |
| all: | |
| $(CXX) $(CXXFLAGS) main.cc $(LDFLAGS) | |
| int rest_api_thread(void* arg_) | |
| { | |
| ssn_nfvi* sys = reinterpret_cast<ssn_nfvi*>(arg_); | |
| crow::SimpleApp app; | |
| CROW_ROUTE(app,"/") ( [&sys]() { | |
| crow::json::wvalue x; | |
| x["vnfs"] = "vnfs informantions"; | |
| x["stats"] = "system infos"; | |
| return x; |
| --- | |
| swagger: "2.0" | |
| info: | |
| version: "0.0.0" | |
| title: "Susanow Control API" | |
| license: | |
| name: "MIT License" | |
| url: "https://opensource.org/licenses/MIT" | |
| host: "virtserver.swaggerhub.com" | |
| basePath: "/susanow/ssnctl/0.0.0" |