The YANG syntax is similar to C and C++ and uses a C-like syntax that was chosen for its readability. This section introduces the YANG syntax. While SMIv1, SMIv2, and SPPI are bound to specific protocols like SNMP and COPS-PR, the purpose of SMIng is to define a common data definition language that can specify data models independently of protocols.
Introduction to InfiniBand technology and its usage on Debian platform. Includes various examples of NAS/SAN over IB configuration (NFSoRDMA, SRP, and other standard IP and IPoIB based setups).
27. Loopback IP 追加/削除
? インターフェース作成(初回のみ、手動で準備)
? ip link add confdloop type dummy
? 追加
? ip addr add 192.168.50.1/255.255.255.255 dev confdloop
? 削除
? ip addr del 192.168.50.1/255.255.255.255 dev confdloop
31. Python ncclient
? https://github.com/ncclient/ncclient
from ncclient import manager
with manager.connect(host=host, port=830, username=user, hostkey_verify=False) as m:
c = m.get_config(source='running').data_xml
with open("%s.xml" % host, 'w') as f:
f.write(c)