OPNFV Asia Meeting

Page content

ZTE Pharos Lab

Pharos : OPNFV를 시험하는 worldwide lab 외부에서 접속하는 것이 필요하므로 ssh를 열어줄 수는 없어서 openVPN을 제공하고, 망을 분리하는 등의 이슈 해결을 위해 노력한 듯

https://www.opnfv.org/developers/pharos Pharos는 시험 환경을 구축해서 community에 공개해서 사용할 수 있는 환경을 제공하는 듯 Provide developers with substantial resources for early testing within realistic NFV environments via an open, consistent, repeatable test domain

Why donate Pharos environment

NFV 환경에 사용할 HW를 직접 제조하는 업체들에게는 제품 호환성에 대한 시험을 유도할 수 있는 장점을 가짐.

https://www.opnfv.org/news-faq/blog/2015/10/view-board-opnfv-one-year-part-1

These are member- donated and operated labs that are available for testing of OPNFV software releases, the testing of OPNFV releases with third-party VNFs and other related systems. This has resulted in a global community that is engaged in the business of establishing interoperability, integration and standardization across the NFV solution space, in an open and transparent manner

FuncTest

https://wiki.opnfv.org/display/fds/FDS+Testing#FDSTesting-vPing https://wiki.opnfv.org/display/functest/Opnfv+Functional+Testing#OpnfvFunctionalTesting-VNF vPing SSH vPing userdata ODL suite - Robot framework, ODL functional testing

https://git.opnfv.org/cgit/functest git clone git://git.opnfv.org/functest

/Users/cychong/Work/functest/functest/opnfv_tests/OpenStack/vPing

ssh 접속에 paramiko module을 사용함.

Doctor Project

Project leader from NEC

Demo : Openstack and OPNFV - Keeping your mobile phone calls connected

https://www.youtube.com/watch?v=Dvh8q5m9Ahk

Deveopment Tools

On boarding - specially Jira for agile

https://wiki.opnfv.org/display/DEV/Developer+On-boarding

vPing example

logger.info("Trying to establish SSH connection to %s..." % floatip)
username = 'cirros'
password = 'cubswin:)'
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

timeout = 50
nolease = False
got_ip = False
discover_count = 0
cidr_first_octet = PRIVATE_SUBNET_CIDR.split('.')[0]
while timeout > 0:
    try:
        ssh.connect(floatip, username=username,
                    password=password, timeout=2)
        logger.debug("SSH connection established to %s." % floatip)
        break
    except:
        logger.debug("Waiting for %s..." % floatip)
        time.sleep(6)
        timeout -= 1

    console_log = vm.get_console_output()

paramiko example

http://docs.paramiko.org/en/2.0/api/hostkeys.html

>>> import paramiko
>>> ssh = paramiko.SSHClient()
>>> ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
>>> ssh.connect("127.0.0.1", username="cychong", password="FIXME", timeout=2)

Check what if key is not matched

Visualization

grafana

http://testresults.opnfv.org/grafana/login

http://grafana.org

Kibana based

https://opnfv.biterg.io/

Not a single vendor dominate contribution which was true for the OpenStack(Rockspace)

Ericsson, Huawei, RedHat are on tops.