분류 전체보기
-
[MPLS] OSPF Super Backbone Area (1)Protocols/BGP_OSPF_MPLS_VPN 2021. 6. 23. 13:25
1. OSPF의 VRF는 어떻게 사용하는가 2. SuperBackbone Area의 존재, 어떻게 작동하는지 확인 Service Provider - EIGRP > LDP > MP-BGP(vpnv4), OSPF area 0 with CE Company1 - OSPF area 0 EIGRP와 RIP, BGP는 각 고객별 VRF를 각 해당 라우팅 프로세스 안에서 사용한다. router bgp 1 address-family ipv4 vrf company1 // bgp 1 프로세스 안에서 구별되는 고객별 VRF. redistribute ospf 1 match internal external 1 external 2 exit-address-family 하지만 OSPF는 하나의 Processor가 하나의 고객별 VRF..
-
[MPLS] IP/MPLS BasicsProtocols/BGP_OSPF_MPLS_VPN 2021. 6. 8. 16:19
1. OSPF Topology 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 R1#show run | b router ospf 1 router ospf 1 router-id 1.1.1.1 network 1.1.1.1 0.0.0.0 area 0 network 1.1.12.1 0.0.0.0 area 0 network 1.1.14.1 0.0.0.0 area 0 R2#show run | b router ospf 1 router ospf 1 router-id 1.1.2.2 network 1.1.2.2 0.0.0.0 area 0 network 1.1.12.2 0.0.0.0 area 0 network 1.1.23.2 0.0.0.0 ar..
-
3GPP 문서 보는 TIP3G_4G_5G/3GPP 2021. 5. 12. 18:32
네트워크 일을 하면서 자주 보는 것이 표준이다. 근데 표준이라는 것이 엄청 다양하고 많다. IEEE, ETSI, 3GPP, IETF.... 그중에 자주 보는 것들 중에서 특히 3GPP를 먼저 어떻게 처음 접근할 때 편한지 공유하고 싶었다. 나처럼 누구도 가르쳐주지 않고 맨땅에 헤딩하듯이 일을 시작하는 신입이 줄기를 바라는 마음이 크다. 3GPP 홈페이지에 가면 자신을 이렇게 소개한다. '3세대 파트너십 프로젝트(3GPP)는 "Organizational Partners"로 알려진 통신 표준 개발 조직(ARIB, ATIS, CCSA, ETSI, TTA, TTC)을 통합한다.' 그럼 ARIB, ATIS, 등등 얘네들은 뭔데? 세계의 무선 통신의 규약을 이끌고 있는 각 나라의 기관으로 보면 되겠다. 즉, 3GP..
-
[Rancher] Installation on Ubuntu 16.04 - 1Cloud/Openstack_K8s_Docker 2021. 3. 10. 17:12
This blog illustrates how to install Rancher. you can also refer to the below link for installation. it's the official site. rancher.com/quick-start 1. Oracle VirtualBox installation 2. Two Linux host VM with 64-bit Ubuntu 16.04 3. Minimum : two CPU cores / 4GB RAM CPU : Four Cores RAM : 8GB NIU : Bridge / NAT 1. Even though host is restarted, Rancher will not stop. Rancher WebGUI 80/443 will us..
-
Bash programming - How to find an active SCTP pathProgramming/Java_Shell_Python 2021. 3. 10. 11:54
This script shows what are IPs of active SCTP path. 1. copy and paste my scripts into your shell file. 2. chmod 755 .sh 3. ./.sh 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 #!/bin/bash # This is to get input about port number and IPs printf "What ..
-
[Docker] Docker NetworkingCloud/Openstack_K8s_Docker 2021. 2. 24. 18:51
1. Starting Nginx root@ubuntu:~# sudo docker run --name web1 -d -p 8080:80 nginx Unable to find image 'nginx:latest' locally latest: Pulling from library/nginx 45b42c59be33: Pull complete 8acc495f1d91: Pull complete ec3bd7de90d7: Pull complete 19e2441aeeab: Pull complete f5a38c5f8d4e: Pull complete 83500d851118: Pull complete Digest: sha256:f3693fe50d5b1df1ecd315d54813a77afd56b0245a404055a946574..
-
[ONOS] Connecting ONOS to OvSCloud/Openstack_K8s_Docker 2021. 2. 24. 18:17
- ONOS controls OVS connecting two docker containers 1. Click Applications in PLATFORM 2. installing Base Provider '>' raise 'Confirm Action' window for Base Provider. then OK. 3. Done Base Provider installation 4. Installing others OpenFlow Agent, Reactive Forwarding (this is a switch), Host Location Provider, LLDP(to see topology). 5. Checking ONOS IP address terry@ubuntu:~$ sudo docker networ..
-
[ONOS] Installation on Ubuntu16Cloud/Openstack_K8s_Docker 2021. 2. 24. 17:50
ONOS is SDN controller. it can control OVSs by SDN way. - ONOS installation - ONOS controls OVS connecting two docker containers This ONOS is a container. I will expose ports(8181, 8101, 6653) to use ONOS. terry@ubuntu:~$ sudo docker run -t -d -p 1181:8181 -p 1101:8101 -p 1653:6653 --name onos1 onosproject/onos [sudo] password for terry: Unable to find image 'onosproject/onos:latest' locally lat..