Skip to content

Instantly share code, notes, and snippets.

View mirceaulinic's full-sized avatar
🍫
Probably munching chocolate.

Mircea Ulinic mirceaulinic

🍫
Probably munching chocolate.
View GitHub Profile
@mirceaulinic
mirceaulinic / smth.py
Created October 18, 2016 04:16
Config data from interfaces OC
>>> dev.rpc.get_config('<interfaces xmlns="http://openconfig.net/yang/interfaces"/>')
{u'data': {u'interfaces': {u'interface': [{u'ethernet': {u'config': {u'auto-negotiate': u'false'}}, u'config': {u'enabled': u'true', u'type': u'idx:ethernetCsmacd', u'name': u'MgmtEth0/RP0/CPU0/0'}, u'name': u'MgmtEth0/RP0/CPU0/0'}, {u'ethernet': {u'config': {u'auto-negotiate': u'false'}}, u'config': {u'enabled': u'false', u'type': u'idx:ethernetCsmacd', u'name': u'GigabitEthernet0/0/0/0'}, u'name': u'GigabitEthernet0/0/0/0'}, {u'ethernet': {u'config': {u'auto-negotiate': u'false'}}, u'config': {u'enabled': u'false', u'type': u'idx:ethernetCsmacd', u'name': u'GigabitEthernet0/0/0/1'}, u'name': u'GigabitEthernet0/0/0/1'}, {u'ethernet': {u'config': {u'auto-negotiate': u'false'}}, u'config': {u'enabled': u'false', u'type': u'idx:ethernetCsmacd', u'name': u'GigabitEthernet0/0/0/2'}, u'name': u'GigabitEthernet0/0/0/2'}, {u'ethernet': {u'config': {u'auto-negotiate': u'false'}}, u'config': {u'enabled': u'false', u'type': u'idx:ethe
@mirceaulinic
mirceaulinic / smth.py
Created October 18, 2016 04:14
Request-reply for interfaces OC
>>> dev.rpc.get('<interfaces xmlns="http://openconfig.net/yang/interfaces"/>')
{u'data': {u'interfaces': {u'interface': [{u'ethernet': {u'state': {u'auto-negotiate': u'false', u'hw-mac-address': u'08:00:27:81:71:e8', u'counters': {u'in-fragment-frames': u'0', u'in-oversize-frames': u'0', u'in-8021q-frames': u'0', u'out-8021q-frames': u'0', u'in-mac-pause-frames': u'0', u'in-jabber-frames': u'0', u'in-crc-errors': u'0', u'out-mac-pause-frames': u'0'}}, u'config': {u'auto-negotiate': u'false'}}, u'state': {u'name': u'MgmtEth0/RP0/CPU0/0', u'oper-status': u'UP', u'enabled': u'true', u'admin-status': u'UP', u'mtu': u'1514', u'ifindex': u'7', u'last-change': u'381', u'counters': {u'out-octets': u'2030950', u'out-errors': u'0', u'in-multicast-pkts': u'0', u'out-broadcast-pkts': u'0', u'in-errors': u'0', u'out-multicast-pkts': u'0', u'in-discards': u'0', u'last-clear': u'Never', u'in-unicast-pkts': u'12773', u'out-unicast-pkts': u'7933', u'out-discards': u'0', u'in-broadcast-pkts': u'2', u'in-unknown-protos': u'0',