Cloud
-
AWS Private 5G 쪼개보기Cloud/AWS_Azure_GCP_IBM 2021. 12. 3. 14:37
AWS가 이번 2021 AWS Re:Invent에서 AWS Private 5G를 꺼내들었다. 'AWS'가 무엇인지 설명을 필요하지 않을 것이고. 우리가 이해해야 할 것은 'Private'과 '5G'이다. 기존 AWS는 Public Cloud로서 중앙처리 방식에 가까웠다 물론 여러 Region이 있지만... 대중이 AWS를 접속하여 사용하는 것을 네트워크로 보면 이렇다. Enterprise - 통신사 공용망 or 전용망 (둘다 모바일 망 아님) - internet - AWS. (AWS의 Direct Connect는 통신사 전용망으로 어차피 위의 구조에서 크게 벗어나지 않는다.) 이런 구조가 어떤 고객들에게는 단점이 있기 때문에 Private라는 이름이 나오기 시작한 것이다. 그 단점은 바로 Latency와..
-
[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..
-
[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..
-
[Docker] Connecting two containers via OVSCloud/Openstack_K8s_Docker 2021. 2. 24. 16:39
To connect two containers via OVS. 1. Creating a container. terry@ubuntu:~$ sudo docker run -t -i --name container1 alpine Unable to find image 'alpine:latest' locally latest: Pulling from library/alpine ba3557a56b15: Pull complete Digest: sha256:a75afd8b57e7f34e4dad8d65e2c7ba2e1975c795ce1ee22fa34f8cf46f96a3be Status: Downloaded newer image for alpine:latest / # // now we are in a container. let..
-
[Docker] installation on Ubuntu 16.04.7 LTSCloud/Openstack_K8s_Docker 2021. 2. 24. 15:48
To test and make a lab for K8s(Kubernetes) - Installation: $ sudo apt install docker.io - Verification: $ sudo docker info terry@ubuntu:~$ sudo apt install docker.io Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: bridge-utils cgroupfs-mount containerd pigz runc ubuntu-fan Suggested packages: mountall a..
-
OVS(Open Virtual Switch) installation on Ubuntu 16.04.7LTSCloud/Openstack_K8s_Docker 2021. 2. 24. 15:42
To connect Docker containers by OvS - installation : $ sudo apt install -y openvswitch-switch - verification : $ sudo ovs-vsctl show terry@ubuntu:~$ sudo apt install -y openvswitch-switch [sudo] password for terry: Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: libpython-stdlib libpython2.7-minimal lib..