ニートのMEMO

ニート生活をしたかった社会人がネットワークやサーバ、プログラミングなどについて勉強したことをメモとして残しているブログです。

ネットワーク

FRRouting tutorial

本記事について FRRoutingのインストール完了までの構築メモ、基本的には公式ドキュメントに沿って進める 公式ドキュメント(Ubuntu 18.04 LTS — FRR latest documentation) 通り実施しても意外とすんなりいかなかったので備忘録として残しておく 実際のCLI操…

VPN(IPSec+ACL)

VPN構築(IPsec) 1.ルーターのaccess-list設定 access-list number [permit/deny] [protocol] [source_ip/network] [wildcard] [port] [dest_ip/network] [wildcard] [option] 設定内容 ACLの設定 192.168.1.1 から 10.1.1.1 へのIP通信を許可 access-list 1…

IPv6のメモ(OSPFv3+デフォルトルート+6to4)

ipv6メモ ipv6ルーティングの有効化 (config)# ipv6 unicast-routing インターフェースの設定 (config-if)# ipv6 address [ipv6_address] (config-if)# no shutdown ospfv3の設定 基本はloopback、link-localを利用 ipv4と違いOSPFをインターフェースに設定…

OSPF+VRRPのメモ

IPv4メモ デフォルトルートの設定 (config)# ip route 0.0.0.0 0.0.0.0 [ip_address] デフォルトルートの設定例 (config)# ip route 0.0.0.0 0.0.0.0 192.168.0.254 OSPFの設定 設定方法 (config)# router ospf [process-id] (config-router)# router-id [ro…

よく使う設定確認コマンド(メモ)

個人的によく使う?設定情報を確認するコマンド集です コマンド 説明 show startup-config 起動したときの設定情報 show running-config 起動中の設定情報 show cdp neighbors 隣接機器のデバイス、インターフェース情報 show ip interface brief インターフ…

超簡単なBGPのConfigメモ

BGPメモ peerの設定 (config)# router bgp [自分のAS番号] (config-router)# neighbor [ip_address] remote-as [相手のAS番号] 経路広告 (config)# network [ip_address] mask [subnet] next-hop-self (config-router)# neighbor [ip_address] next-hop-self…

Mininet(OVS + Ryu)でOpenFlowを体験してみる

mininet(OVS) + ryu Mininetと呼ばれるVM上でOpenFlowを体験できるすごい仮想環境があるので試してみた ホスト VM Mac OS X Ubuntu14.04 準備 $ sudo apt-get update $ sudo apt-get install build-essential $ sudo apt-get install git Mininetインストー…