To create tacacs server using post method
{ "server-group": [ { "name": "tacacs-default-group", "config": { "name": "tacacs-default-group", "type": "TACACS" }, "servers": { "server": [ { "address": "55.1.1.1", "config": { "name": "55.1.1.1", "address": "55.1.1.1" }, "tacacs": { "config": { "port": "1234", "secret-key": "test1234" } } } ] } } ] }
{ "server-group": [ { "name": "tacacs-default-group", "config": { "name": "tacacs-default-group", "type": "TACACS" }, "servers": { "server": [ { "address": "55.1.1.1", "config": { "name": "55.1.1.1", "address": "55.1.1.1" }, "tacacs": { "config": { "port": "1234", "secret-key": "test1234" } } } ] } } ] }
To create radius server using POST method
{ "server-group": [ { "name": "radius-default-group", "config": { "name": "radius-default-group", "type": "RADIUS" }, "servers": { "server": [ { "address": "56.1.1.1", "config": { "name": "56.1.1.1", "address": "56.1.1.1" }, "radius": { "config": { "auth-port": "1812", "acct-port": "1813", "secret-key": "radiust1234", "retransmit-attempts": 2, "icx-openconfig-aaa-aug:dot1x": true, "icx-openconfig-aaa-aug:web-auth": true } } } ] } } ] }
{ "server-group": [ { "name": "radius-default-group", "config": { "name": "radius-default-group", "type": "RADIUS" }, "servers": { "server": [ { "address": "56.1.1.1", "config": { "name": "56.1.1.1", "address": "56.1.1.1" }, "radius": { "config": { "auth-port": "1812", "acct-port": "1813", "secret-key": "radiust1234", "retransmit-attempts": 2, "icx-openconfig-aaa-aug:dot1x": true, "icx-openconfig-aaa-aug:web-auth": true } } } ] } } ] }
To create/update radius server using patch method
{ "server-groups": { "server-group": [ { "name": "radius-default-group", "config": { "name": "radius-default-group", "type": "RADIUS" }, "servers": { "server": [ { "address": "58.1.1.1", "config": { "name": "58.1.1.1", "address": "58.1.1.1" }, "radius": { "config": { "auth-port": 1812, "acct-port": 1813, "secret-key": "radiust123", "retransmit-attempts": 2 } } } ] } } ] } }
{ "server-groups": { "server-group": [ { "name": "radius-default-group", "config": { "name": "radius-default-group", "type": "RADIUS" }, "servers": { "server": [ { "address": "58.1.1.1", "config": { "name": "58.1.1.1", "address": "58.1.1.1" }, "radius": { "config": { "auth-port": 1812, "acct-port": 1813, "secret-key": "radiust123", "retransmit-attempts": 2 } } } ] } } ] } }
To create/update tacacs server using PATCH method
{ "server-groups": { "server-group": [ { "name": "tacacs-default-group", "config": { "name": "tacacs-default-group", "type": "TACACS" }, "servers": { "server": [ { "address": "57.1.1.1", "config": { "name": "57.1.1.1", "address": "57.1.1.1" }, "tacacs": { "config": { "port": 49, "secret-key": "test1234" } } } ] } } ] } }
{ "server-groups": { "server-group": [ { "name": "tacacs-default-group", "config": { "name": "tacacs-default-group", "type": "TACACS" }, "servers": { "server": [ { "address": "57.1.1.1", "config": { "name": "57.1.1.1", "address": "57.1.1.1" }, "tacacs": { "config": { "port": 49, "secret-key": "test1234" } } } ] } } ] } }
To delete all tacacs/radius servers configured in the system
To delete specific radius server configured in the system
To delete specific tacacs server configured in the system
To update/disable AAA authorization icx COA(change of authorization) using patch
{ "coa": { "enable": "false" } }
{ "coa": { "enable": "false" } }
To update/disable COA ignore options
{ "ignore": { "flip-port": "false", "disable-port": "false", "reauth-host": "false", "modify-acl": "false", "dm-request": "false" } }
{ "ignore": { "flip-port": "false", "disable-port": "false", "reauth-host": "false", "modify-acl": "false", "dm-request": "false" } }
To update/disable Dot1x RADIUS authentication using patch
{ "authentication": { "icx-openconfig-aaa-aug:dot1x": { "default": "none" } } }
{ "authentication": { "icx-openconfig-aaa-aug:dot1x": { "default": "none" } } }
To update/enable AAA authorization icx COA(change of Authorization) using patch method
{ "icx-openconfig-aaa-aug:coa": { "enable": "true" } }
{ "icx-openconfig-aaa-aug:coa": { "enable": "true" } }
To update/enable COA ignore options
{ "ignore": { "flip-port": "true", "disable-port": "true", "reauth-host": "true", "modify-acl": "true", "dm-request": "true" } }
{ "ignore": { "flip-port": "true", "disable-port": "true", "reauth-host": "true", "dm-request": "true" } }
To update/enable Dot1x RADIUS authentication using patch
{ "authentication": { "icx-openconfig-aaa-aug:dot1x": { "default": "radius" } } }
{ "authentication": { "icx-openconfig-aaa-aug:dot1x": { "default": "radius" } } }
To get/read aaa authorization COA(change of authorization) options
{ "icx-openconfig-aaa-aug:coa": { "enable": true, "ignore": { "disable-port": true, "dm-request": true, "flip-port": true, "modify-acl": true, "reauth-host": true } } }
To get/read tacacs/radius servers configured in the system
{ "openconfig-system:server-groups": { "server-group": [ { "name": "tacacs-default-group", "config": { "name": "tacacs-default-group", "type": "openconfig-aaa:TACACS" }, "state": {}, "servers": { "server": [ { "address": "55.1.1.1", "config": { "name": "55.1.1.1", "address": "55.1.1.1" }, "state": {}, "tacacs": { "config": { "port": 1234, "secret-key": "$b24tb1p8ODM=" }, "state": {} } }, { "address": "57.1.1.1", "config": { "name": "57.1.1.1", "address": "57.1.1.1" }, "state": {}, "tacacs": { "config": { "port": 49, "secret-key": "$b24tb1p8ODM=" }, "state": {} } } ] } }, { "name": "radius-default-group", "config": { "name": "radius-default-group", "type": "openconfig-aaa:RADIUS" }, "state": {}, "servers": { "server": [ { "address": "56.1.1.1", "config": { "name": "56.1.1.1", "address": "56.1.1.1" }, "state": {}, "radius": { "config": { "auth-port": 1812, "acct-port": 1813, "secret-key": "$VSFAPWktb1p8ODM=", "retransmit-attempts": 2, "icx-openconfig-aaa-aug:dot1x": true, "icx-openconfig-aaa-aug:web-auth": true }, "state": { "counters": {} } } }, { "address": "58.1.1.1", "config": { "name": "58.1.1.1", "address": "58.1.1.1" }, "state": {}, "radius": { "config": { "auth-port": 1812, "acct-port": 1813, "secret-key": "$VSFAPWktb1p8OA==", "retransmit-attempts": 2 }, "state": { "counters": {} } } } ] } } ] } }
To read/get default AAA configs on icx switch after system boot up
{ "openconfig-system:aaa": { "state": {}, "authentication": { "state": {}, "admin-user": { "state": {} }, "users": { "user": [ { "username": "super", "config": { "username": "super", "password": "$6$M78fhauw$O0ZK6GGdGNYYQnIIWPMPDYRZpZ5lKkMrl82FE/P1Elw4FQ/KZ46V6bKY8KfNKOEaQsRC/4NyRpJQY0qE5gFJN/", "icx-openconfig-aaa-aug:privilege": 0 }, "state": {} } ] }, "icx-openconfig-aaa-aug:dot1x": { "default": "none" } }, "authorization": { "state": {}, "icx-openconfig-aaa-aug:coa": { "enable": false, "ignore": { "disable-port": false, "dm-request": false, "flip-port": false, "modify-acl": false, "reauth-host": false } } }, "accounting": { "state": {} }, "server-groups": {} } }
To get/read dot1x authentication status
{ "icx-openconfig-aaa-aug:dot1x": { "default": "none" } }
To get/read specific radius server configured in the system
{ "openconfig-system:server": [ { "address": "56.1.1.1", "config": { "name": "56.1.1.1", "address": "56.1.1.1" }, "state": {}, "radius": { "config": { "auth-port": 1812, "acct-port": 1813, "secret-key": "$VSFAPWktb1p8ODM=", "retransmit-attempts": 2, "icx-openconfig-aaa-aug:dot1x": true, "icx-openconfig-aaa-aug:web-auth": true }, "state": { "counters": {} } } } ] }
To get/read specific server configured in the system
{ "openconfig-system:server": [ { "address": "55.1.1.1", "config": { "name": "55.1.1.1", "address": "55.1.1.1" }, "state": {}, "tacacs": { "config": { "port": 1234, "secret-key": "$b24tb1p8ODM=" }, "state": {} } } ] }
To replace radius server configured in the system
{ "server-groups": { "server-group": [ { "name": "radius-default-group", "config": { "name": "radius-default-group", "type": "RADIUS" }, "servers": { "server": [ { "address": "66.1.1.1", "config": { "name": "66.1.1.1", "address": "66.1.1.1" }, "radius": { "config": { "auth-port": "1812", "acct-port": "1813", "secret-key": "radiust1234", "retransmit-attempts": 2, "icx-openconfig-aaa-aug:dot1x": true, "icx-openconfig-aaa-aug:web-auth": true } } } ] } } ] } }
{ "server-groups": { "server-group": [ { "name": "radius-default-group", "config": { "name": "radius-default-group", "type": "RADIUS" }, "servers": { "server": [ { "address": "66.1.1.1", "config": { "name": "66.1.1.1", "address": "66.1.1.1" }, "radius": { "config": { "auth-port": "1812", "acct-port": "1813", "secret-key": "radiust1234", "retransmit-attempts": 2, "icx-openconfig-aaa-aug:dot1x": true, "icx-openconfig-aaa-aug:web-auth": true } } } ] } } ] } }
To replace tacacs server configured in the system with new server
{ "server-groups": { "server-group": [ { "name": "tacacs-default-group", "config": { "name": "tacacs-default-group", "type": "TACACS" }, "servers": { "server": [ { "address": "55.1.1.1", "config": { "name": "55.1.1.1", "address": "55.1.1.1" }, "tacacs": { "config": { "port": "1234", "secret-key": "test1234" } } } ] } } ] } }
{ "server-groups": { "server-group": [ { "name": "tacacs-default-group", "config": { "name": "tacacs-default-group", "type": "TACACS" }, "servers": { "server": [ { "address": "55.1.1.1", "config": { "name": "55.1.1.1", "address": "55.1.1.1" }, "tacacs": { "config": { "port": "1234", "secret-key": "test1234" } } } ] } } ] } }
To create/update authentication method list using patch
{ "authentication": { "config": { "authentication-method": "TACACS_ONLY_ALL" } } }
{ "authentication": { "config": { "authentication-method": "TACACS_ONLY_ALL" } } }
To delete a specific AAA username
get/read AAA usernames configured in the system
{ "openconfig-system:users": { "user": [ { "username": "super", "config": { "username": "super", "password": "$6$M78fhauw$O0ZK6GGdGNYYQnIIWPMPDYRZpZ5lKkMrl82FE/P1Elw4FQ/KZ46V6bKY8KfNKOEaQsRC/4NyRpJQY0qE5gFJN/", "icx-openconfig-aaa-aug:privilege": 0 }, "state": {} }, { "username": "user1", "config": { "username": "user1", "password": "$6$M78fhauw$rj3kspGMzyVjI/wpJOeJrm1PTZ1Vulog1I9qyWqb8f5YEWB3lPorjQd1uoRSpajPwZ71kfODPXeOm.A2yVPyS.", "icx-openconfig-aaa-aug:privilege": 0 }, "state": {} }, { "username": "user2", "config": { "username": "user2", "password": "$6$rfOZfaERWKq4gPty$vCW.AS6XUQF5REVM4PZjIpPOxy37N4H/dMAInS/Gt3gilc35Rm4dl9NY0MxU9sRwULoXd8PSR42TTVVnvFuhH1", "icx-openconfig-aaa-aug:privilege": 0 }, "state": {} } ] } }
To get/read specific username configured in the system
{ "openconfig-system:user": [ { "username": "user2", "config": { "username": "user2", "password": "$6$rfOZfaERWKq4gPty$vCW.AS6XUQF5REVM4PZjIpPOxy37N4H/dMAInS/Gt3gilc35Rm4dl9NY0MxU9sRwULoXd8PSR42TTVVnvFuhH1", "icx-openconfig-aaa-aug:privilege": 0 }, "state": {} } ] }
To create/update AAA user using PATCh method
{ "users": { "user": [ { "username": "user3", "config": { "username": "user3", "password": "passwordforuser3", "icx-openconfig-aaa-aug:privilege": 0 } } ] } }
{ "users": { "user": [ { "username": "user3", "config": { "username": "user3", "password": "passwordforuser3", "icx-openconfig-aaa-aug:privilege": 0 } } ] } }
To create/update AAA username using PATCH method
{ "users": { "user": [ { "username": "user4", "config": { "username": "user4", "password": "passwordforuser4", "icx-openconfig-aaa-aug:privilege": 0 } } ] } }
{ "users": { "user": [ { "username": "user4", "config": { "username": "user4", "password": "passwordforuser4", "icx-openconfig-aaa-aug:privilege": 0 } } ] } }
To replace AAA user using PUT method
{ "users": { "user": [ { "username": "user4", "config": { "username": "user4", "password": "passwordforuser4", "icx-openconfig-aaa-aug:privilege": 0 } } ] } }
{ "users": { "user": [ { "username": "user4", "config": { "username": "user4", "password": "passwordforuser4", "icx-openconfig-aaa-aug:privilege": 0 } } ] } }
To create AAA username using POST method
{ "user": [ { "username": "user3", "config": { "username": "user3", "password": "passwordforuser3", "icx-openconfig-aaa-aug:privilege": 1 } } ] }
{ "user": [ { "username": "user3", "config": { "username": "user3", "password": "passwordforuser3", "icx-openconfig-aaa-aug:privilege": 1 } } ] }
To apply ipv4 ext acl on ingress/egress acl using POST method
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/1", "config": { "id": "ethernet 1/1/1" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ext_acl1", "type": "ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "ACL_IPV4" } } ] } }, { "id": "ethernet 1/1/2", "config": { "id": "ethernet 1/1/2" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ext_acl1", "type": "ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "ACL_IPV4" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/1", "config": { "id": "ethernet 1/1/1" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ext_acl1", "type": "ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "ACL_IPV4" } } ] } }, { "id": "ethernet 1/1/2", "config": { "id": "ethernet 1/1/2" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ext_acl1", "type": "ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "ACL_IPV4" } } ] } } ] } }
To apply ipv4 extended acl on ingress and egress interface using PATCH
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/1", "config": { "id": "ethernet 1/1/1" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ext_acl1", "type": "ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "ACL_IPV4" } } ] } }, { "id": "ethernet 1/1/2", "config": { "id": "ethernet 1/1/2" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ext_acl1", "type": "ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "ACL_IPV4" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/1", "config": { "id": "ethernet 1/1/1" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ext_acl1", "type": "ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "ACL_IPV4" } } ] } }, { "id": "ethernet 1/1/2", "config": { "id": "ethernet 1/1/2" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ext_acl1", "type": "ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "ACL_IPV4" } } ] } } ] } }
To apply ipv4 std acl on ingress/egress interfaces using POST method
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/5", "config": { "id": "ethernet 1/1/5" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ip_stan_test", "type": "ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "ACL_IPV4" } } ] } }, { "id": "ethernet 1/1/6", "config": { "id": "ethernet 1/1/6" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ip_stan_test", "type": "ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "ACL_IPV4" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/5", "config": { "id": "ethernet 1/1/5" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ip_stan_test", "type": "ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "ACL_IPV4" } } ] } }, { "id": "ethernet 1/1/6", "config": { "id": "ethernet 1/1/6" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ip_stan_test", "type": "ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "ACL_IPV4" } } ] } } ] } }
To apply mac acl(l2 acl) on ingree/egress interface using POST method
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/10", "config": { "id": "ethernet 1/1/10" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "bj5", "type": "ACL_L2", "config": { "set-name": "bj5", "type": "ACL_L2" } } ] } }, { "id": "ethernet 1/1/11", "config": { "id": "ethernet 1/1/11" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "bj5", "type": "ACL_L2", "config": { "set-name": "bj5", "type": "ACL_L2" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/10", "config": { "id": "ethernet 1/1/10" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "bj5", "type": "ACL_L2", "config": { "set-name": "bj5", "type": "ACL_L2" } } ] } }, { "id": "ethernet 1/1/11", "config": { "id": "ethernet 1/1/11" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "bj5", "type": "ACL_L2", "config": { "set-name": "bj5", "type": "ACL_L2" } } ] } } ] } }
To apply/update ipv4 std acl on ingress and egress interface using PATCH method
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/5", "config": { "id": "ethernet 1/1/5" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ip_stan_test", "type": "ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "ACL_IPV4" } } ] } }, { "id": "ethernet 1/1/6", "config": { "id": "ethernet 1/1/6" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ip_stan_test", "type": "ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "ACL_IPV4" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/5", "config": { "id": "ethernet 1/1/5" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ip_stan_test", "type": "ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "ACL_IPV4" } } ] } }, { "id": "ethernet 1/1/6", "config": { "id": "ethernet 1/1/6" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ip_stan_test", "type": "ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "ACL_IPV4" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/10", "config": { "id": "ethernet 1/1/10" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "bj5", "type": "ACL_L2", "config": { "set-name": "bj5", "type": "ACL_L2" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/10", "config": { "id": "ethernet 1/1/10" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "bj5", "type": "ACL_L2", "config": { "set-name": "bj5", "type": "ACL_L2" } } ] } } ] } }
To delete a specific ipv4 extended acl configured in the system
To delete a specific L2 acl(mac acl) configured in the system
To delete L2 acl binding on ingress interface
To delete a specific ipv4 standard acl configured in the system
To delete ipv4 acl binding on egress interface
To delete ipv6 acl binding on egress interface
To delete ipv6 acl binding on ingress interface
To delete a specific ipv6 acl configured in the system
To get/read specific L2 ACL(mac acl) configured in the system
{ "openconfig-acl:acl-set": [ { "name": "bj5", "type": "openconfig-acl:ACL_L2", "config": { "name": "bj5", "type": "openconfig-acl:ACL_L2" }, "state": {}, "acl-entries": { "acl-entry": [ { "sequence-id": 100, "config": { "sequence-id": 100 }, "state": {}, "l2": { "config": { "source-mac": "1111.2222.3333", "source-mac-mask": "1111.2222.3333", "destination-mac": "1111.2222.3333", "destination-mac-mask": "1111.2222.3333", "ethertype": 2048 }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" }, "state": {} } } ] } } ] }
To get/read all acl binding interfaces
{ "openconfig-acl:interfaces": { "interface": [ { "id": "ethernet 1/1/10", "config": { "id": "ethernet 1/1/10" }, "state": {}, "interface-ref": { "config": { "interface": "ethernet 1/1/10" }, "state": {} }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ext_acl1", "type": "openconfig-acl:ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": {} } ] }, "egress-acl-sets": {} }, { "id": "ethernet 1/1/12", "config": { "id": "ethernet 1/1/12" }, "state": {}, "interface-ref": { "config": { "interface": "ethernet 1/1/12" }, "state": {} }, "ingress-acl-sets": {}, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ext_acl1", "type": "openconfig-acl:ACL_IPV4", "config": { "set-name": "ext_acl1", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": {} } ] } }, { "id": "ethernet 1/1/3", "config": { "id": "ethernet 1/1/3" }, "state": {}, "interface-ref": { "config": { "interface": "ethernet 1/1/3" }, "state": {} }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "acl_ipv61", "type": "openconfig-acl:ACL_IPV6", "config": { "set-name": "acl_ipv61", "type": "openconfig-acl:ACL_IPV6" }, "state": {}, "acl-entries": {} } ] }, "egress-acl-sets": {} }, { "id": "ethernet 1/1/4", "config": { "id": "ethernet 1/1/4" }, "state": {}, "interface-ref": { "config": { "interface": "ethernet 1/1/4" }, "state": {} }, "ingress-acl-sets": {}, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "acl_ipv61", "type": "openconfig-acl:ACL_IPV6", "config": { "set-name": "acl_ipv61", "type": "openconfig-acl:ACL_IPV6" }, "state": {}, "acl-entries": {} } ] } }, { "id": "ethernet 1/1/5", "config": { "id": "ethernet 1/1/5" }, "state": {}, "interface-ref": { "config": { "interface": "ethernet 1/1/5" }, "state": {} }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": {} } ] }, "egress-acl-sets": {} }, { "id": "ethernet 1/1/6", "config": { "id": "ethernet 1/1/6" }, "state": {}, "interface-ref": { "config": { "interface": "ethernet 1/1/6" }, "state": {} }, "ingress-acl-sets": {}, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": {} } ] } } ] } }
To read/get acl configured in the system
{ "openconfig-acl:acl-sets": { "acl-set": [ { "name": "ext_acl1", "type": "openconfig-acl:ACL_IPV4", "config": { "name": "ext_acl1", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "state": {}, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 6 }, "state": {} }, "transport": { "config": { "source-port": "0", "destination-port": "0" }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" }, "state": {} } } ] } }, { "name": "acl_ipv61", "type": "openconfig-acl:ACL_IPV6", "config": { "name": "acl_ipv61", "type": "openconfig-acl:ACL_IPV6" }, "state": {}, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "state": {}, "ipv6": { "config": { "source-address": "1000::10/120", "destination-address": "2000::10/100", "dscp": 0, "protocol": 6 }, "state": {} }, "transport": { "config": { "source-port": "0", "destination-port": "0" }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" }, "state": {} } } ] } }, { "name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4", "config": { "name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "state": {}, "ipv4": { "config": { "source-address": "10.157.29.12", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 }, "state": {} }, "transport": { "config": { "source-port": "0", "destination-port": "0" }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:DROP" }, "state": {} } }, { "sequence-id": 20, "config": { "sequence-id": 20 }, "state": {}, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 }, "state": {} }, "transport": { "config": { "source-port": "0", "destination-port": "0" }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" }, "state": {} } } ] } }, { "name": "bj5", "type": "openconfig-acl:ACL_L2", "config": { "name": "bj5", "type": "openconfig-acl:ACL_L2" }, "state": {}, "acl-entries": { "acl-entry": [ { "sequence-id": 100, "config": { "sequence-id": 100 }, "state": {}, "l2": { "config": { "source-mac": "1111.2222.3333", "source-mac-mask": "1111.2222.3333", "destination-mac": "1111.2222.3333", "destination-mac-mask": "1111.2222.3333", "ethertype": 2048 }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" }, "state": {} } } ] } } ] } }
To get/read specific ipv4 standard acl configured in the system
{ "openconfig-acl:acl-set": [ { "name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4", "config": { "name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "state": {}, "ipv4": { "config": { "source-address": "10.157.29.12", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 }, "state": {} }, "transport": { "config": { "source-port": "0", "destination-port": "0" }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:DROP" }, "state": {} } }, { "sequence-id": 20, "config": { "sequence-id": 20 }, "state": {}, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 }, "state": {} }, "transport": { "config": { "source-port": "0", "destination-port": "0" }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" }, "state": {} } } ] } } ] }
To get/read specific acl binded interface
{ "openconfig-acl:interface": [ { "id": "ethernet 1/1/5", "config": { "id": "ethernet 1/1/5" }, "state": {}, "interface-ref": { "config": { "interface": "ethernet 1/1/5" }, "state": {} }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4", "config": { "set-name": "ip_stan_test", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": {} } ] }, "egress-acl-sets": {} } ] }
To get/read specific ipv6 acl configured in the system
{ "openconfig-acl:acl-set": [ { "name": "acl_ipv61", "type": "openconfig-acl:ACL_IPV6", "config": { "name": "acl_ipv61", "type": "openconfig-acl:ACL_IPV6" }, "state": {}, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "state": {}, "ipv6": { "config": { "source-address": "1000::10/120", "destination-address": "2000::10/100", "dscp": 0, "protocol": 6 }, "state": {} }, "transport": { "config": { "source-port": "0", "destination-port": "0" }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" }, "state": {} } } ] } } ] }
To apply/update ipv6 acl on ingress and egress interface using PATCH method
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/3", "config": { "id": "ethernet 1/1/3" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "acl_ipv61", "type": "ACL_IPV6", "config": { "set-name": "acl_ipv61", "type": "ACL_IPV6" } } ] } }, { "id": "ethernet 1/1/4", "config": { "id": "ethernet 1/1/4" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "acl_ipv61", "type": "ACL_IPV6", "config": { "set-name": "acl_ipv61", "type": "ACL_IPV6" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/3", "config": { "id": "ethernet 1/1/3" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "acl_ipv6", "type": "ACL_IPV6", "config": { "set-name": "acl_ipv6", "type": "ACL_IPV6" } } ] } }, { "id": "ethernet 1/1/4", "config": { "id": "ethernet 1/1/4" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "acl_ipv6", "type": "ACL_IPV6", "config": { "set-name": "acl_ipv6", "type": "ACL_IPV6" } } ] } } ] } }
To apply ipv6 acl on ingress/egress interfaces using POST method
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/3", "config": { "id": "ethernet 1/1/3" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "acl_ipv61", "type": "ACL_IPV6", "config": { "set-name": "acl_ipv61", "type": "ACL_IPV6" } } ] } }, { "id": "ethernet 1/1/4", "config": { "id": "ethernet 1/1/4" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "acl_ipv61", "type": "ACL_IPV6", "config": { "set-name": "acl_ipv61", "type": "ACL_IPV6" } } ] } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/3", "config": { "id": "ethernet 1/1/3" }, "ingress-acl-sets": { "ingress-acl-set": [ { "set-name": "acl_ipv61", "type": "ACL_IPV6", "config": { "set-name": "acl_ipv61", "type": "ACL_IPV6" } } ] } }, { "id": "ethernet 1/1/4", "config": { "id": "ethernet 1/1/4" }, "egress-acl-sets": { "egress-acl-set": [ { "set-name": "acl_ipv61", "type": "ACL_IPV6", "config": { "set-name": "acl_ipv61", "type": "ACL_IPV6" } } ] } } ] } }
To create ipv4 extended acl with acl entries using POST method
{ "acl-set": [ { "name": "ext_acl1", "type": "ACL_IPV4", "config": { "name": "ext_acl1", "type": "ACL_IPV4" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 6 } }, "transport": { "config": { "source-port": "0", "destination-port": "0" } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" } } } ] } } ] }
{ "acl-set": [ { "name": "ext_acl1", "type": "ACL_IPV4", "config": { "name": "ext_acl1", "type": "ACL_IPV4" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 6 } }, "transport": { "config": { "source-port": "0", "destination-port": "0" } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" } } } ] } } ] }
To cretae ipv4 std acl using POST method
{ "acl-set": [ { "name": "ip_stan_test", "type": "ACL_IPV4", "config": { "name": "ip_stan_test", "type": "ACL_IPV4" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv4": { "config": { "source-address": "10.157.29.12", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 } }, "actions": { "config": { "forwarding-action": "openconfig-acl:DROP" } } }, { "sequence-id": 20, "config": { "sequence-id": 20 }, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 } }, "transport": { "config": { "source-port": "0", "destination-port": "0" } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" } } } ] } } ] }
{ "acl-set": [ { "name": "ip_stan_test", "type": "ACL_IPV4", "config": { "name": "ip_stan_test", "type": "ACL_IPV4" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv4": { "config": { "source-address": "10.157.29.12", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 } }, "actions": { "config": { "forwarding-action": "openconfig-acl:DROP" } } }, { "sequence-id": 20, "config": { "sequence-id": 20 }, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 } }, "transport": { "config": { "source-port": "0", "destination-port": "0" } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" } } } ] } } ] }
To cretae ipv6 acl withacl entries using POST method
{ "acl-set": [ { "name": "acl_ipv61", "type": "ACL_IPV6", "config": { "name": "acl_ipv61", "type": "ACL_IPV6" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv6": { "config": { "source-address": "1000::10/120", "destination-address": "2000::10/100", "dscp": 0, "protocol": "IP_TCP" } }, "actions": { "config": { "forwarding-action": "ACCEPT" } } } ] } } ] }
{ "acl-set": [ { "name": "acl_ipv6", "type": "ACL_IPV6", "config": { "name": "acl_ipv6", "type": "ACL_IPV6" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv6": { "config": { "source-address": "1000::10/120", "destination-address": "2000::10/100", "dscp": 0, "protocol": "IP_TCP" } }, "actions": { "config": { "forwarding-action": "ACCEPT" } } } ] } } ] }
To create mac acl using POST method
{ "acl-set": [ { "name": "bj5", "type": "ACL_L2", "config": { "name": "bj5", "type": "ACL_L2" }, "acl-entries": { "acl-entry": [ { "sequence-id": 100, "config": { "sequence-id": 100 }, "l2": { "config": { "source-mac": "1111.2222.3333", "source-mac-mask": "1111.2222.3333", "destination-mac": "1111.2222.3333", "destination-mac-mask": "1111.2222.3333", "ethertype": 2048 } }, "actions": { "config": { "forwarding-action": "ACCEPT" } } } ] } } ] }
{ "acl-set": [ { "name": "bj5", "type": "ACL_L2", "config": { "name": "bj5", "type": "ACL_L2" }, "acl-entries": { "acl-entry": [ { "sequence-id": 100, "config": { "sequence-id": 100 }, "l2": { "config": { "source-mac": "1111.2222.3333", "source-mac-mask": "1111.2222.3333", "destination-mac": "1111.2222.3333", "destination-mac-mask": "1111.2222.3333", "ethertype": 2048 } }, "actions": { "config": { "forwarding-action": "ACCEPT" } } } ] } } ] }
To create/update ipv4 extended acl using PATCH method
{ "acl-sets": { "acl-set": [ { "name": "ext3", "type": "ACL_IPV4", "config": { "name": "ext3", "type": "ACL_IPV4" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 6 } }, "transport": { "config": { "source-port": "0", "destination-port": "0" } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" } } } ] } } ] } }
{ "acl-sets": { "acl-set": [ { "name": "ext3", "type": "ACL_IPV4", "config": { "name": "ext3", "type": "ACL_IPV4" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 6 } }, "transport": { "config": { "source-port": "0", "destination-port": "0" } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" } } } ] } } ] } }
To create/update ipv4 std acl using PATCH method
{ "acl-sets": { "acl-set": [ { "name": "ip_stan_test1", "type": "ACL_IPV4", "config": { "name": "ip_stan_test1", "type": "ACL_IPV4" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv4": { "config": { "source-address": "10.157.29.12", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 } }, "actions": { "config": { "forwarding-action": "openconfig-acl:DROP" } } }, { "sequence-id": 20, "config": { "sequence-id": 20 }, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 } }, "transport": { "config": { "source-port": "0", "destination-port": "0" } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" } } } ] } } ] } }
{ "acl-sets": { "acl-set": [ { "name": "ip_stan_test1", "type": "ACL_IPV4", "config": { "name": "ip_stan_test1", "type": "ACL_IPV4" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv4": { "config": { "source-address": "10.157.29.12", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 } }, "actions": { "config": { "forwarding-action": "openconfig-acl:DROP" } } }, { "sequence-id": 20, "config": { "sequence-id": 20 }, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 0 } }, "transport": { "config": { "source-port": "0", "destination-port": "0" } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" } } } ] } } ] } }
To create/update ipv6 acl using PATCH method
{ "acl-sets": { "acl-set": [ { "name": "acl_ipv61", "type": "ACL_IPV6", "config": { "name": "acl_ipv61", "type": "ACL_IPV6" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv6": { "config": { "source-address": "1000::10/120", "destination-address": "2000::10/100", "dscp": 0, "protocol": "IP_TCP" } }, "actions": { "config": { "forwarding-action": "ACCEPT" } } } ] } } ] } }
{ "acl-sets": { "acl-set": [ { "name": "acl_ipv61", "type": "ACL_IPV6", "config": { "name": "acl_ipv61", "type": "ACL_IPV6" }, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "ipv6": { "config": { "source-address": "1000::10/120", "destination-address": "2000::10/100", "dscp": 0, "protocol": "IP_TCP" } }, "actions": { "config": { "forwarding-action": "ACCEPT" } } } ] } } ] } }
To create/update mac acl using PATCH method
{ "acl-sets": { "acl-set": [ { "name": "bj5", "type": "ACL_L2", "config": { "name": "bj5", "type": "ACL_L2" }, "acl-entries": { "acl-entry": [ { "sequence-id": 100, "config": { "sequence-id": 100 }, "l2": { "config": { "source-mac": "1111.2222.3333", "source-mac-mask": "1111.2222.3333", "destination-mac": "1111.2222.3333", "destination-mac-mask": "1111.2222.3333", "ethertype": 2048 } }, "actions": { "config": { "forwarding-action": "ACCEPT" } } } ] } } ] } }
{ "acl-sets": { "acl-set": [ { "name": "bj5", "type": "ACL_L2", "config": { "name": "bj5", "type": "ACL_L2" }, "acl-entries": { "acl-entry": [ { "sequence-id": 100, "config": { "sequence-id": 100 }, "l2": { "config": { "source-mac": "1111.2222.3333", "source-mac-mask": "1111.2222.3333", "destination-mac": "1111.2222.3333", "destination-mac-mask": "1111.2222.3333", "ethertype": 2048 } }, "actions": { "config": { "forwarding-action": "ACCEPT" } } } ] } } ] } }
To get/read specific ipv4 extended acl configured in the system
{ "openconfig-acl:acl-set": [ { "name": "ext_acl1", "type": "openconfig-acl:ACL_IPV4", "config": { "name": "ext_acl1", "type": "openconfig-acl:ACL_IPV4" }, "state": {}, "acl-entries": { "acl-entry": [ { "sequence-id": 10, "config": { "sequence-id": 10 }, "state": {}, "ipv4": { "config": { "source-address": "0.0.0.0", "destination-address": "0.0.0.0", "dscp": 0, "protocol": 6 }, "state": {} }, "transport": { "config": { "source-port": "0", "destination-port": "0" }, "state": {} }, "input-interface": { "state": {}, "interface-ref": { "state": {} } }, "actions": { "config": { "forwarding-action": "openconfig-acl:ACCEPT" }, "state": {} } } ] } } ] }
create DNS server thro POST method
{ "server": [ { "address": "20.1.1.1", "config": { "address": "20.1.1.1" } } ] }
{ "server": [ { "address": "20.1.1.1", "config": { "address": "20.1.1.1" } } ] }
To delete all dns server configured in the system
To delete specific dns server
read/get all DNS servers configured in the system
{ "openconfig-system:dns": { "state": {}, "servers": { "server": [ { "address": "30.1.1.1", "config": { "address": "30.1.1.1" }, "state": {} } ] }, "host-entries": {} } }
To get specific dns server configured in the system
{ "openconfig-system:server": [ { "address": "30.1.1.1", "config": { "address": "30.1.1.1" }, "state": {} } ] }
replace existing DNS server with new server using PUT method
{ "servers": { "server": [ { "address": "30.1.1.1", "config": { "address": "30.1.1.1" } } ] } }
{ "servers": { "server": [ { "address": "30.1.1.1", "config": { "address": "30.1.1.1" } } ] } }
updating/appending DNS server using PATCH
{ "servers": { "server": [ { "address": "40.1.1.1", "config": { "address": "40.1.1.1" } } ] } }
{ "servers": { "server": [ { "address": "40.1.1.1", "config": { "address": "40.1.1.1" } } ] } }
To delete ip address assigned on interface using delete method
To assign ip address on interface using POST method
{ "subinterface": [ { "index": 0, "config": { "index": 0 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "36.1.1.1", "config": { "ip": "36.1.1.1", "prefix-length": 25 } } ] } } } ] }
{ "subinterface": [ { "index": 1, "config": { "index": 1 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "36.1.1.1", "config": { "ip": "36.1.1.1", "prefix-length": 25 } } ] } } } ] }
To disable interface using PATCH method
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": false } } ] } }
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": false } } ] } }
To enable interface using PATCH method
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true } } ] } }
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true } } ] } }
To read/get all interfaces in the system
{ "openconfig-interfaces:interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 1, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/2", "config": { "name": "ethernet 1/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 2, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/3", "config": { "name": "ethernet 1/1/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 3, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 4, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/5", "config": { "name": "ethernet 1/1/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 5, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/6", "config": { "name": "ethernet 1/1/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 6, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/7", "config": { "name": "ethernet 1/1/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 7, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/8", "config": { "name": "ethernet 1/1/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 8, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/9", "config": { "name": "ethernet 1/1/9", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/9", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 9, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/10", "config": { "name": "ethernet 1/1/10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 10, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/11", "config": { "name": "ethernet 1/1/11", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/11", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 11, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/12", "config": { "name": "ethernet 1/1/12", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/12", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 12, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/13", "config": { "name": "ethernet 1/1/13", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/13", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 13, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/14", "config": { "name": "ethernet 1/1/14", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/14", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 14, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/15", "config": { "name": "ethernet 1/1/15", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/15", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 15, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/16", "config": { "name": "ethernet 1/1/16", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/16", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/17", "config": { "name": "ethernet 1/1/17", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/17", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 17, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/18", "config": { "name": "ethernet 1/1/18", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/18", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 18, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/19", "config": { "name": "ethernet 1/1/19", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/19", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 19, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/20", "config": { "name": "ethernet 1/1/20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 20, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/21", "config": { "name": "ethernet 1/1/21", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/21", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 21, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/22", "config": { "name": "ethernet 1/1/22", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/22", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 22, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/23", "config": { "name": "ethernet 1/1/23", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/23", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 23, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/24", "config": { "name": "ethernet 1/1/24", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/24", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 24, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/25", "config": { "name": "ethernet 1/1/25", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/25", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 25, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/26", "config": { "name": "ethernet 1/1/26", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/26", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 26, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/27", "config": { "name": "ethernet 1/1/27", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/27", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 27, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/28", "config": { "name": "ethernet 1/1/28", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/28", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 28, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/29", "config": { "name": "ethernet 1/1/29", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/29", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 29, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/30", "config": { "name": "ethernet 1/1/30", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/30", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 30, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/31", "config": { "name": "ethernet 1/1/31", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/31", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 31, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/32", "config": { "name": "ethernet 1/1/32", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/32", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 32, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/33", "config": { "name": "ethernet 1/1/33", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/33", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 33, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/34", "config": { "name": "ethernet 1/1/34", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/34", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 34, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/35", "config": { "name": "ethernet 1/1/35", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/35", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 35, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/36", "config": { "name": "ethernet 1/1/36", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/36", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 36, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/37", "config": { "name": "ethernet 1/1/37", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/37", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 37, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/38", "config": { "name": "ethernet 1/1/38", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/38", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 38, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/39", "config": { "name": "ethernet 1/1/39", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/39", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 39, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/40", "config": { "name": "ethernet 1/1/40", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/40", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 40, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/41", "config": { "name": "ethernet 1/1/41", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/41", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 41, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/42", "config": { "name": "ethernet 1/1/42", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/42", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 42, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/43", "config": { "name": "ethernet 1/1/43", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/43", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 43, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/44", "config": { "name": "ethernet 1/1/44", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/44", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 44, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/45", "config": { "name": "ethernet 1/1/45", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/45", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 45, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/46", "config": { "name": "ethernet 1/1/46", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/46", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 46, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/47", "config": { "name": "ethernet 1/1/47", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/47", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 47, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/48", "config": { "name": "ethernet 1/1/48", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/48", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 48, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "management 1", "config": { "name": "management 1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "management 1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 49, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "658877", "in-pkts": "5443", "in-unicast-pkts": "5443", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "4498", "out-pkts": "31", "out-unicast-pkts": "31", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": { "subinterface": [ { "index": 1, "config": { "index": 1 }, "state": { "counters": {} }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "10.176.128.99", "config": { "ip": "10.176.128.99", "prefix-length": 25 }, "state": {}, "vrrp": {} } ] }, "proxy-arp": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } }, "openconfig-if-ip:ipv6": { "addresses": {}, "router-advertisement": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } } } ] }, "openconfig-if-ethernet:ethernet": { "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/1", "config": { "name": "ethernet 1/2/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 65, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/2", "config": { "name": "ethernet 1/2/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 69, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/3", "config": { "name": "ethernet 1/2/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 73, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/4", "config": { "name": "ethernet 1/2/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 77, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/5", "config": { "name": "ethernet 1/2/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 81, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/6", "config": { "name": "ethernet 1/2/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 85, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/7", "config": { "name": "ethernet 1/2/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 89, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/8", "config": { "name": "ethernet 1/2/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 93, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ve 1", "config": { "name": "ve 1", "type": "iana-if-type:l3ipvlan" }, "state": { "name": "ve1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16777217, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-vlan:routed-vlan": { "config": { "vlan": 1 }, "openconfig-if-ip:ipv4": { "addresses": {}, "proxy-arp": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } }, "openconfig-if-ip:ipv6": { "addresses": {}, "router-advertisement": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } } } } ] } }
To get/read ip address on specific interface
{ "openconfig-if-ip:address": [ { "ip": "37.1.1.1", "config": { "ip": "37.1.1.1", "prefix-length": 25 }, "state": {}, "vrrp": {} } ] }
To get/read state of a specific interface
{ "openconfig-interfaces:state": { "name": "ethernet 1/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 2, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } } }
To update port description using PATCH method
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "port 1", "enabled": true } } ] } }
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "port 1", "enabled": true } } ] } }
To update the port speed using PATCH method
{ "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_10GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "slave" } }
{ "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_10GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "slave" } }
To update/assign ip address on interface using PATCH method
{ "subinterfaces": { "subinterface": [ { "index": 1, "config": { "index": 1 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "37.1.1.1", "config": { "ip": "37.1.1.1", "prefix-length": 25 } } ] } } } ] } }
{ "subinterfaces": { "subinterface": [ { "index": 1, "config": { "index": 1 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "37.1.1.1", "config": { "ip": "37.1.1.1", "prefix-length": 25 } } ] } } } ] } }
To delete a specific lag
To delete a port from a LAG
To add/update the ports to LAG using PATCH method
{ "config": { "openconfig-if-aggregate:aggregate-id": "lag 7" } }
{ "config": { "openconfig-if-aggregate:aggregate-id": "lag 7" } }
To add ports to LAG using POST method
{ "openconfig-if-aggregate:aggregate-id": "lag 7" }
{ "openconfig-if-aggregate:aggregate-id": "lag 7" }
Create dynamic LAG using POST method
{ "interface": [ { "name": "lag 4", "config": { "name": "lag 4", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" } } } ] }
{ "interface": [ { "name": "lag 4", "config": { "name": "lag 4", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" } } } ] }
To create static LAG using POST method
{ "interface": [ { "name": "lag 4", "config": { "name": "lag 4", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" } } } ] }
{ "interface": [ { "name": "lag 4", "config": { "name": "lag 4", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" } } } ] }
create/update dynamic LAG using PATCH
{ "interfaces": { "interface": [ { "name": "lag 7", "config": { "name": "lag 7", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" } } } ] } }
{ "interfaces": { "interface": [ { "name": "lag 7", "config": { "name": "lag 7", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" } } } ] } }
create/update static LAG using PATCH method
{ "interfaces": { "interface": [ { "name": "lag 6", "config": { "name": "lag 6", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" } } } ] } }
{ "interfaces": { "interface": [ { "name": "lag 6", "config": { "name": "lag 6", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" } } } ] } }
To get/read LAG configured on specific interface
{ "openconfig-if-aggregate:aggregate-id": "lag 3" }
To get/read specific LAG configured in the system
{ "openconfig-interfaces:interface": [ { "name": "lag 7", "config": { "name": "lag 7", "type": "iana-if-type:ieee8023adLag", "enabled": false }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" }, "state": {} } } ] }
To get/read all LAG interfaces configured in the system
{ "openconfig-interfaces:interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 1, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/2", "config": { "name": "ethernet 1/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 2, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/3", "config": { "name": "ethernet 1/1/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 3, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 4, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/5", "config": { "name": "ethernet 1/1/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 5, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/6", "config": { "name": "ethernet 1/1/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 6, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/7", "config": { "name": "ethernet 1/1/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 7, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/8", "config": { "name": "ethernet 1/1/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 8, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/9", "config": { "name": "ethernet 1/1/9", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/9", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 9, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/10", "config": { "name": "ethernet 1/1/10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 10, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none", "openconfig-if-aggregate:aggregate-id": "lag 3" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/11", "config": { "name": "ethernet 1/1/11", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/11", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 11, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/12", "config": { "name": "ethernet 1/1/12", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/12", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 12, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/13", "config": { "name": "ethernet 1/1/13", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/13", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 13, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/14", "config": { "name": "ethernet 1/1/14", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/14", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 14, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/15", "config": { "name": "ethernet 1/1/15", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/15", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 15, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/16", "config": { "name": "ethernet 1/1/16", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/16", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/17", "config": { "name": "ethernet 1/1/17", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/17", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 17, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/18", "config": { "name": "ethernet 1/1/18", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/18", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 18, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/19", "config": { "name": "ethernet 1/1/19", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/19", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 19, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/20", "config": { "name": "ethernet 1/1/20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 20, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/21", "config": { "name": "ethernet 1/1/21", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/21", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 21, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/22", "config": { "name": "ethernet 1/1/22", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/22", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 22, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/23", "config": { "name": "ethernet 1/1/23", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/23", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 23, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/24", "config": { "name": "ethernet 1/1/24", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/24", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 24, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/25", "config": { "name": "ethernet 1/1/25", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/25", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 25, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/26", "config": { "name": "ethernet 1/1/26", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/26", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 26, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/27", "config": { "name": "ethernet 1/1/27", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/27", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 27, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/28", "config": { "name": "ethernet 1/1/28", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/28", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 28, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/29", "config": { "name": "ethernet 1/1/29", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/29", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 29, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/30", "config": { "name": "ethernet 1/1/30", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/30", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 30, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/31", "config": { "name": "ethernet 1/1/31", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/31", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 31, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/32", "config": { "name": "ethernet 1/1/32", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/32", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 32, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/33", "config": { "name": "ethernet 1/1/33", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/33", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 33, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/34", "config": { "name": "ethernet 1/1/34", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/34", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 34, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/35", "config": { "name": "ethernet 1/1/35", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/35", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 35, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/36", "config": { "name": "ethernet 1/1/36", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/36", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 36, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/37", "config": { "name": "ethernet 1/1/37", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/37", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 37, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/38", "config": { "name": "ethernet 1/1/38", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/38", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 38, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/39", "config": { "name": "ethernet 1/1/39", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/39", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 39, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/40", "config": { "name": "ethernet 1/1/40", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/40", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 40, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/41", "config": { "name": "ethernet 1/1/41", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/41", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 41, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/42", "config": { "name": "ethernet 1/1/42", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/42", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 42, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/43", "config": { "name": "ethernet 1/1/43", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/43", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 43, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/44", "config": { "name": "ethernet 1/1/44", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/44", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 44, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/45", "config": { "name": "ethernet 1/1/45", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/45", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 45, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/46", "config": { "name": "ethernet 1/1/46", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/46", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 46, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/47", "config": { "name": "ethernet 1/1/47", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/47", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 47, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/1/48", "config": { "name": "ethernet 1/1/48", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/48", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 48, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "management 1", "config": { "name": "management 1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "management 1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 49, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "10762696", "in-pkts": "91110", "in-unicast-pkts": "91110", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "1417573", "out-pkts": "5027", "out-unicast-pkts": "5027", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": { "subinterface": [ { "index": 1, "config": { "index": 1 }, "state": { "counters": {} }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "10.176.128.99", "config": { "ip": "10.176.128.99", "prefix-length": 25 }, "state": {}, "vrrp": {} } ] }, "proxy-arp": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } }, "openconfig-if-ip:ipv6": { "addresses": {}, "router-advertisement": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } } } ] }, "openconfig-if-ethernet:ethernet": { "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/1", "config": { "name": "ethernet 1/2/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 65, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/2", "config": { "name": "ethernet 1/2/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 69, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/3", "config": { "name": "ethernet 1/2/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 73, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/4", "config": { "name": "ethernet 1/2/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 77, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/5", "config": { "name": "ethernet 1/2/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 81, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/6", "config": { "name": "ethernet 1/2/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 85, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/7", "config": { "name": "ethernet 1/2/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 89, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/2/8", "config": { "name": "ethernet 1/2/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/2/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 93, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "lag 3", "config": { "name": "lag 3", "type": "iana-if-type:ieee8023adLag", "description": "", "enabled": true }, "state": { "name": "lag 3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 3075, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" }, "state": {} } }, { "name": "lag 1", "config": { "name": "lag 1", "type": "iana-if-type:ieee8023adLag", "enabled": false }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" }, "state": {} } }, { "name": "lag 2", "config": { "name": "lag 2", "type": "iana-if-type:ieee8023adLag", "enabled": false }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" }, "state": {} } }, { "name": "ve 1", "config": { "name": "ve 1", "type": "iana-if-type:l3ipvlan" }, "state": { "name": "ve1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16777217, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-vlan:routed-vlan": { "config": { "vlan": 1 }, "openconfig-if-ip:ipv4": { "addresses": {}, "proxy-arp": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } }, "openconfig-if-ip:ipv6": { "addresses": {}, "router-advertisement": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } } } }, { "name": "lag 4", "config": { "name": "lag 4", "type": "iana-if-type:ieee8023adLag", "enabled": false }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" }, "state": {} } }, { "name": "lag 5", "config": { "name": "lag 5", "type": "iana-if-type:ieee8023adLag", "enabled": false }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" }, "state": {} } }, { "name": "lag 6", "config": { "name": "lag 6", "type": "iana-if-type:ieee8023adLag", "enabled": false }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" }, "state": {} } }, { "name": "lag 7", "config": { "name": "lag 7", "type": "iana-if-type:ieee8023adLag", "enabled": false }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" }, "state": {} } } ] } }
To disable lldp on interface using PATCH method
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "enabled": false } } ] } }
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "enabled": false } } ] } }
To disable global level lldp using PUT method
{ "config": { "enabled": false } }
{ "config": { "enabled": false } }
To disable global level lldp using PATCH method
{ "config": { "enabled": false } }
{ "config": { "enabled": false } }
To enable global level lldp using PATCH method
{ "config": { "enabled": true } }
{ "config": { "enabled": true } }
To enable global level lldp using PUT method
{ "config": { "enabled": true } }
{ "config": { "enabled": true } }
To enable lldp on specific interface using PATCH method
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "enabled": true } } ] } }
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "enabled": true } } ] } }
To get global lldp status
{ "openconfig-lldp:config": { "enabled": true } }
To get lldp status of all interfaces
{ "openconfig-lldp:interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/2", "config": { "name": "ethernet 1/1/2", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/3", "config": { "name": "ethernet 1/1/3", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/5", "config": { "name": "ethernet 1/1/5", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/6", "config": { "name": "ethernet 1/1/6", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/7", "config": { "name": "ethernet 1/1/7", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/8", "config": { "name": "ethernet 1/1/8", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/9", "config": { "name": "ethernet 1/1/9", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/10", "config": { "name": "ethernet 1/1/10", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/11", "config": { "name": "ethernet 1/1/11", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/12", "config": { "name": "ethernet 1/1/12", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/13", "config": { "name": "ethernet 1/1/13", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/14", "config": { "name": "ethernet 1/1/14", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/15", "config": { "name": "ethernet 1/1/15", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/16", "config": { "name": "ethernet 1/1/16", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/17", "config": { "name": "ethernet 1/1/17", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/18", "config": { "name": "ethernet 1/1/18", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/19", "config": { "name": "ethernet 1/1/19", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/20", "config": { "name": "ethernet 1/1/20", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/21", "config": { "name": "ethernet 1/1/21", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/22", "config": { "name": "ethernet 1/1/22", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/23", "config": { "name": "ethernet 1/1/23", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/24", "config": { "name": "ethernet 1/1/24", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/25", "config": { "name": "ethernet 1/1/25", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/26", "config": { "name": "ethernet 1/1/26", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/27", "config": { "name": "ethernet 1/1/27", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/28", "config": { "name": "ethernet 1/1/28", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/29", "config": { "name": "ethernet 1/1/29", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/30", "config": { "name": "ethernet 1/1/30", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/31", "config": { "name": "ethernet 1/1/31", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/32", "config": { "name": "ethernet 1/1/32", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/33", "config": { "name": "ethernet 1/1/33", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/34", "config": { "name": "ethernet 1/1/34", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/35", "config": { "name": "ethernet 1/1/35", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/36", "config": { "name": "ethernet 1/1/36", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/37", "config": { "name": "ethernet 1/1/37", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/38", "config": { "name": "ethernet 1/1/38", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/39", "config": { "name": "ethernet 1/1/39", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/40", "config": { "name": "ethernet 1/1/40", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/41", "config": { "name": "ethernet 1/1/41", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/42", "config": { "name": "ethernet 1/1/42", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/43", "config": { "name": "ethernet 1/1/43", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/44", "config": { "name": "ethernet 1/1/44", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/45", "config": { "name": "ethernet 1/1/45", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/46", "config": { "name": "ethernet 1/1/46", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/47", "config": { "name": "ethernet 1/1/47", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/48", "config": { "name": "ethernet 1/1/48", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/1", "config": { "name": "ethernet 1/2/1", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/2", "config": { "name": "ethernet 1/2/2", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/3", "config": { "name": "ethernet 1/2/3", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/4", "config": { "name": "ethernet 1/2/4", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/5", "config": { "name": "ethernet 1/2/5", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/6", "config": { "name": "ethernet 1/2/6", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/7", "config": { "name": "ethernet 1/2/7", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/8", "config": { "name": "ethernet 1/2/8", "enabled": true }, "state": { "counters": {} }, "neighbors": {} } ] } }
To get/read lldp status of all interfaces
{ "openconfig-lldp:interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/2", "config": { "name": "ethernet 1/1/2", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/3", "config": { "name": "ethernet 1/1/3", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/5", "config": { "name": "ethernet 1/1/5", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/6", "config": { "name": "ethernet 1/1/6", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/7", "config": { "name": "ethernet 1/1/7", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/8", "config": { "name": "ethernet 1/1/8", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/9", "config": { "name": "ethernet 1/1/9", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/10", "config": { "name": "ethernet 1/1/10", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/11", "config": { "name": "ethernet 1/1/11", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/12", "config": { "name": "ethernet 1/1/12", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/13", "config": { "name": "ethernet 1/1/13", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/14", "config": { "name": "ethernet 1/1/14", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/15", "config": { "name": "ethernet 1/1/15", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/16", "config": { "name": "ethernet 1/1/16", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/17", "config": { "name": "ethernet 1/1/17", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/18", "config": { "name": "ethernet 1/1/18", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/19", "config": { "name": "ethernet 1/1/19", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/20", "config": { "name": "ethernet 1/1/20", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/21", "config": { "name": "ethernet 1/1/21", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/22", "config": { "name": "ethernet 1/1/22", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/23", "config": { "name": "ethernet 1/1/23", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/24", "config": { "name": "ethernet 1/1/24", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/25", "config": { "name": "ethernet 1/1/25", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/26", "config": { "name": "ethernet 1/1/26", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/27", "config": { "name": "ethernet 1/1/27", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/28", "config": { "name": "ethernet 1/1/28", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/29", "config": { "name": "ethernet 1/1/29", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/30", "config": { "name": "ethernet 1/1/30", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/31", "config": { "name": "ethernet 1/1/31", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/32", "config": { "name": "ethernet 1/1/32", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/33", "config": { "name": "ethernet 1/1/33", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/34", "config": { "name": "ethernet 1/1/34", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/35", "config": { "name": "ethernet 1/1/35", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/36", "config": { "name": "ethernet 1/1/36", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/37", "config": { "name": "ethernet 1/1/37", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/38", "config": { "name": "ethernet 1/1/38", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/39", "config": { "name": "ethernet 1/1/39", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/40", "config": { "name": "ethernet 1/1/40", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/41", "config": { "name": "ethernet 1/1/41", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/42", "config": { "name": "ethernet 1/1/42", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/43", "config": { "name": "ethernet 1/1/43", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/44", "config": { "name": "ethernet 1/1/44", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/45", "config": { "name": "ethernet 1/1/45", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/46", "config": { "name": "ethernet 1/1/46", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/47", "config": { "name": "ethernet 1/1/47", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/1/48", "config": { "name": "ethernet 1/1/48", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/1", "config": { "name": "ethernet 1/2/1", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/2", "config": { "name": "ethernet 1/2/2", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/3", "config": { "name": "ethernet 1/2/3", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/4", "config": { "name": "ethernet 1/2/4", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/5", "config": { "name": "ethernet 1/2/5", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/6", "config": { "name": "ethernet 1/2/6", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/7", "config": { "name": "ethernet 1/2/7", "enabled": true }, "state": { "counters": {} }, "neighbors": {} }, { "name": "ethernet 1/2/8", "config": { "name": "ethernet 1/2/8", "enabled": true }, "state": { "counters": {} }, "neighbors": {} } ] } }
To read/get lldp status of specific interface
{ "openconfig-lldp:interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "enabled": true }, "state": { "counters": {} }, "neighbors": {} } ] }
{ "protocol": [ { "identifier": "OSPF", "name": "icx-ospf", "config": { "identifier": "OSPF", "name": "icx-ospf" }, "ospfv2": { "areas": { "area": [ { "identifier": "0.0.0.0", "config": { "identifier": "0.0.0.0" } } ] } } } ] }
{ "protocol": [ { "identifier": "OSPF", "name": "icx-ospf", "config": { "identifier": "OSPF", "name": "icx-ospf" }, "ospfv2": { "areas": { "area": [ { "identifier": "0.0.0.0", "config": { "identifier": "0.0.0.0" } } ] } } } ] }
bind interfce(assign ip address) to an ospf area using patch operation
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/3", "config": { "id": "ethernet 1/1/3" } } ] } }
{ "interfaces": { "interface": [ { "id": "ethernet 1/1/3", "config": { "id": "ethernet 1/1/3" } } ] } }
bind interface(assign ip address) to an ospf area using POST operation
{ "interface": [ { "id": "ethernet 1/1/2", "config": { "id": "ethernet 1/1/2" } } ] }
{ "interface": [ { "id": "ethernet 1/1/2", "config": { "id": "ethernet 1/1/2" } } ] }
To create/update ospf area using PATCH method
{ "protocols": { "protocol": [ { "identifier": "OSPF", "name": "icx-ospf", "config": { "identifier": "OSPF", "name": "icx-ospf" }, "ospfv2": { "areas": { "area": [ { "identifier": "20.1.1.1", "config": { "identifier": "20.1.1.1" } } ] } } } ] } }
{ "protocols": { "protocol": [ { "identifier": "OSPF", "name": "icx-ospf", "config": { "identifier": "OSPF", "name": "icx-ospf" }, "ospfv2": { "areas": { "area": [ { "identifier": "20.1.1.1", "config": { "identifier": "20.1.1.1" } } ] } } } ] } }
To delete all ospf areas configured in the system
delete specific ospf area configured in the system
To get/read all ospf areas configured in the system
{ "openconfig-network-instance:areas": { "area": [ { "identifier": "0.0.0.0", "config": { "identifier": "0.0.0.0" }, "state": {}, "mpls": { "state": {} }, "lsdb": { "state": {}, "lsa-types": {} }, "interfaces": {}, "virtual-links": {} }, { "identifier": "20.1.1.1", "config": { "identifier": "20.1.1.1" }, "state": {}, "mpls": { "state": {} }, "lsdb": { "state": {}, "lsa-types": {} }, "interfaces": {}, "virtual-links": {} } ] } }
To get/read specific ospf area configured in the system
{ "openconfig-network-instance:area": [ { "identifier": "20.1.1.1", "config": { "identifier": "20.1.1.1" }, "state": {}, "mpls": { "state": {} }, "lsdb": { "state": {}, "lsa-types": {} }, "interfaces": {}, "virtual-links": {} } ] }
remove all interface binding from the opsf area
remove interface binding from the ospf interface
To disable PoE on specific interface using PATCH method
{ "poe": { "config": { "enabled": false } } }
{ "poe": { "config": { "enabled": false } } }
To disable PoE on specific interface
{ "poe": { "config": { "enabled": false } } }
{ "poe": { "config": { "enabled": false } } }
enable PoE on specific interface using PoE method
{ "poe": { "config": { "enabled": true } } }
{ "poe": { "config": { "enabled": true } } }
To enable PoE on specific interface using PUT method
{ "poe": { "config": { "enabled": true } } }
{ "poe": { "config": { "enabled": true } } }
To read/get PoE enabled status on specific interface
{ "icx-openconfig-if-poe-aug:enabled": true }
To read/get PoE status/values on all interfaces
{ "openconfig-interfaces:interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 1, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "1520026", "in-pkts": "1639", "in-unicast-pkts": "0", "in-broadcast-pkts": "893", "in-multicast-pkts": "746", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "977725", "out-pkts": "12212", "out-unicast-pkts": "0", "out-broadcast-pkts": "389", "out-multicast-pkts": "11823", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "7000.0", "power-class": 4 } } } }, { "name": "ethernet 1/1/2", "config": { "name": "ethernet 1/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 2, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "69572", "out-pkts": "707", "out-unicast-pkts": "0", "out-broadcast-pkts": "20", "out-multicast-pkts": "687", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/3", "config": { "name": "ethernet 1/1/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 3, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "1782988", "in-pkts": "10230", "in-unicast-pkts": "0", "in-broadcast-pkts": "925", "in-multicast-pkts": "9305", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "660220", "out-pkts": "3839", "out-unicast-pkts": "0", "out-broadcast-pkts": "332", "out-multicast-pkts": "3507", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "openconfig-vlan:switched-vlan": {}, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 4, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "117890", "in-pkts": "775", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "775", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "4035626", "out-pkts": "22767", "out-unicast-pkts": "0", "out-broadcast-pkts": "2187", "out-multicast-pkts": "20580", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/5", "config": { "name": "ethernet 1/1/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 5, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "1912142", "in-pkts": "10959", "in-unicast-pkts": "0", "in-broadcast-pkts": "1000", "in-multicast-pkts": "9959", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2613070", "out-pkts": "19354", "out-unicast-pkts": "0", "out-broadcast-pkts": "259", "out-multicast-pkts": "19095", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none", "openconfig-if-aggregate:aggregate-id": "lag 2" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/6", "config": { "name": "ethernet 1/1/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 6, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "117890", "in-pkts": "775", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "775", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2332733", "out-pkts": "13312", "out-unicast-pkts": "0", "out-broadcast-pkts": "1262", "out-multicast-pkts": "12050", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/7", "config": { "name": "ethernet 1/1/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 7, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/8", "config": { "name": "ethernet 1/1/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 8, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "118044", "in-pkts": "776", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "776", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2332738", "out-pkts": "13312", "out-unicast-pkts": "0", "out-broadcast-pkts": "1262", "out-multicast-pkts": "12050", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/9", "config": { "name": "ethernet 1/1/9", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/9", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 9, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "117900", "in-pkts": "775", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "775", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2332297", "out-pkts": "13308", "out-unicast-pkts": "0", "out-broadcast-pkts": "1262", "out-multicast-pkts": "12046", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/10", "config": { "name": "ethernet 1/1/10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 10, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "118663", "in-pkts": "775", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "775", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2333443", "out-pkts": "13311", "out-unicast-pkts": "0", "out-broadcast-pkts": "1262", "out-multicast-pkts": "12049", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/11", "config": { "name": "ethernet 1/1/11", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/11", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 11, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/12", "config": { "name": "ethernet 1/1/12", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/12", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 12, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/13", "config": { "name": "ethernet 1/1/13", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/13", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 13, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "118798", "in-pkts": "776", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "776", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2335106", "out-pkts": "13313", "out-unicast-pkts": "0", "out-broadcast-pkts": "1263", "out-multicast-pkts": "12050", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/14", "config": { "name": "ethernet 1/1/14", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/14", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 14, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "118528", "in-pkts": "774", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "774", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2334855", "out-pkts": "13312", "out-unicast-pkts": "0", "out-broadcast-pkts": "1263", "out-multicast-pkts": "12049", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/15", "config": { "name": "ethernet 1/1/15", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/15", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 15, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/16", "config": { "name": "ethernet 1/1/16", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/16", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/17", "config": { "name": "ethernet 1/1/17", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/17", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 17, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/18", "config": { "name": "ethernet 1/1/18", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/18", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 18, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2369107", "out-pkts": "13488", "out-unicast-pkts": "0", "out-broadcast-pkts": "1282", "out-multicast-pkts": "12206", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/19", "config": { "name": "ethernet 1/1/19", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/19", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 19, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2369262", "out-pkts": "13489", "out-unicast-pkts": "0", "out-broadcast-pkts": "1282", "out-multicast-pkts": "12207", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/20", "config": { "name": "ethernet 1/1/20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 20, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2369277", "out-pkts": "13489", "out-unicast-pkts": "0", "out-broadcast-pkts": "1282", "out-multicast-pkts": "12207", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/21", "config": { "name": "ethernet 1/1/21", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/21", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 21, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/22", "config": { "name": "ethernet 1/1/22", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/22", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 22, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/23", "config": { "name": "ethernet 1/1/23", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/23", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 23, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/24", "config": { "name": "ethernet 1/1/24", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/24", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 24, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/25", "config": { "name": "ethernet 1/1/25", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/25", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 25, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2370784", "out-pkts": "13488", "out-unicast-pkts": "0", "out-broadcast-pkts": "1282", "out-multicast-pkts": "12206", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/26", "config": { "name": "ethernet 1/1/26", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/26", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 26, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/27", "config": { "name": "ethernet 1/1/27", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/27", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 27, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/28", "config": { "name": "ethernet 1/1/28", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/28", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 28, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/29", "config": { "name": "ethernet 1/1/29", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/29", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 29, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/30", "config": { "name": "ethernet 1/1/30", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/30", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 30, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/31", "config": { "name": "ethernet 1/1/31", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/31", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 31, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/32", "config": { "name": "ethernet 1/1/32", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/32", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 32, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/33", "config": { "name": "ethernet 1/1/33", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/33", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 33, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/34", "config": { "name": "ethernet 1/1/34", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/34", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 34, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/35", "config": { "name": "ethernet 1/1/35", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/35", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 35, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/36", "config": { "name": "ethernet 1/1/36", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/36", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 36, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/37", "config": { "name": "ethernet 1/1/37", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/37", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 37, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "130624", "in-pkts": "807", "in-unicast-pkts": "0", "in-broadcast-pkts": "29", "in-multicast-pkts": "778", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2324921", "out-pkts": "13280", "out-unicast-pkts": "0", "out-broadcast-pkts": "1233", "out-multicast-pkts": "12047", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_10GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/38", "config": { "name": "ethernet 1/1/38", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/38", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 38, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "120690", "in-pkts": "778", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "778", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2334734", "out-pkts": "13307", "out-unicast-pkts": "0", "out-broadcast-pkts": "1262", "out-multicast-pkts": "12045", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_10GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/39", "config": { "name": "ethernet 1/1/39", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/39", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 39, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/40", "config": { "name": "ethernet 1/1/40", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/40", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 40, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/41", "config": { "name": "ethernet 1/1/41", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/41", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 41, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/42", "config": { "name": "ethernet 1/1/42", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/42", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 42, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/43", "config": { "name": "ethernet 1/1/43", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/43", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 43, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/44", "config": { "name": "ethernet 1/1/44", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/44", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 44, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/45", "config": { "name": "ethernet 1/1/45", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/45", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 45, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/46", "config": { "name": "ethernet 1/1/46", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/46", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 46, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/47", "config": { "name": "ethernet 1/1/47", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/47", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 47, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 1/1/48", "config": { "name": "ethernet 1/1/48", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/1/48", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 48, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "management 1", "config": { "name": "management 1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "management 1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 49, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "11436180", "in-pkts": "149347", "in-unicast-pkts": "149347", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "1150019", "out-pkts": "2697", "out-unicast-pkts": "2697", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": { "subinterface": [ { "index": 1, "config": { "index": 1 }, "state": { "counters": {} }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "10.176.128.137", "config": { "ip": "10.176.128.137", "prefix-length": 25 }, "state": {}, "vrrp": {} } ] }, "proxy-arp": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } }, "openconfig-if-ip:ipv6": { "addresses": {}, "router-advertisement": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } } } ] }, "openconfig-if-ethernet:ethernet": { "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/3/1", "config": { "name": "ethernet 1/3/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/3/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 129, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "108924220", "in-pkts": "377044", "in-unicast-pkts": "119076", "in-broadcast-pkts": "21", "in-multicast-pkts": "257947", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "99628430", "out-pkts": "418518", "out-unicast-pkts": "1502", "out-broadcast-pkts": "2054", "out-multicast-pkts": "414962", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/3/2", "config": { "name": "ethernet 1/3/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/3/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 130, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/3/3", "config": { "name": "ethernet 1/3/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/3/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 131, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 1/3/4", "config": { "name": "ethernet 1/3/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 1/3/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 132, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 2/1/1", "config": { "name": "ethernet 2/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 257, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/2", "config": { "name": "ethernet 2/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 258, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "920", "out-pkts": "13", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "13", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/3", "config": { "name": "ethernet 2/1/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 259, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "479882", "in-pkts": "2834", "in-unicast-pkts": "0", "in-broadcast-pkts": "216", "in-multicast-pkts": "2618", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "1772465", "out-pkts": "10169", "out-unicast-pkts": "0", "out-broadcast-pkts": "924", "out-multicast-pkts": "9245", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/4", "config": { "name": "ethernet 2/1/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 260, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "3851920", "in-pkts": "13502", "in-unicast-pkts": "0", "in-broadcast-pkts": "2069", "in-multicast-pkts": "11433", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "109013", "out-pkts": "717", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "717", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/5", "config": { "name": "ethernet 2/1/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/5", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 261, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2432284", "in-pkts": "18345", "in-unicast-pkts": "0", "in-broadcast-pkts": "143", "in-multicast-pkts": "18202", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "1901619", "out-pkts": "10898", "out-unicast-pkts": "0", "out-broadcast-pkts": "999", "out-multicast-pkts": "9899", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/6", "config": { "name": "ethernet 2/1/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/6", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 262, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2150680", "in-pkts": "12303", "in-unicast-pkts": "0", "in-broadcast-pkts": "1145", "in-multicast-pkts": "11158", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "109013", "out-pkts": "717", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "717", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/7", "config": { "name": "ethernet 2/1/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/7", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 263, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/8", "config": { "name": "ethernet 2/1/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/8", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 264, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2150526", "in-pkts": "12302", "in-unicast-pkts": "0", "in-broadcast-pkts": "1145", "in-multicast-pkts": "11157", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "109167", "out-pkts": "718", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "718", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/9", "config": { "name": "ethernet 2/1/9", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/9", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 265, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2150372", "in-pkts": "12301", "in-unicast-pkts": "0", "in-broadcast-pkts": "1145", "in-multicast-pkts": "11156", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "109033", "out-pkts": "717", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "717", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/10", "config": { "name": "ethernet 2/1/10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 266, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2151397", "in-pkts": "12303", "in-unicast-pkts": "0", "in-broadcast-pkts": "1145", "in-multicast-pkts": "11158", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "109729", "out-pkts": "717", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "717", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/11", "config": { "name": "ethernet 2/1/11", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/11", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 267, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/12", "config": { "name": "ethernet 2/1/12", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/12", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 268, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/13", "config": { "name": "ethernet 2/1/13", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/13", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 269, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2152900", "in-pkts": "12304", "in-unicast-pkts": "0", "in-broadcast-pkts": "1146", "in-multicast-pkts": "11158", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "109884", "out-pkts": "718", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "718", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/14", "config": { "name": "ethernet 2/1/14", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/14", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 270, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2152745", "in-pkts": "12303", "in-unicast-pkts": "0", "in-broadcast-pkts": "1146", "in-multicast-pkts": "11157", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "109594", "out-pkts": "716", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "716", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_1GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/15", "config": { "name": "ethernet 2/1/15", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/15", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 271, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/16", "config": { "name": "ethernet 2/1/16", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/16", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 272, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/17", "config": { "name": "ethernet 2/1/17", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/17", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 273, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/18", "config": { "name": "ethernet 2/1/18", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/18", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 274, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/19", "config": { "name": "ethernet 2/1/19", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/19", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 275, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/20", "config": { "name": "ethernet 2/1/20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 276, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/21", "config": { "name": "ethernet 2/1/21", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/21", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 277, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/22", "config": { "name": "ethernet 2/1/22", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/22", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 278, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/23", "config": { "name": "ethernet 2/1/23", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/23", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 279, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/24", "config": { "name": "ethernet 2/1/24", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/24", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 280, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/25", "config": { "name": "ethernet 2/1/25", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/25", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 281, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/26", "config": { "name": "ethernet 2/1/26", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/26", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 282, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/27", "config": { "name": "ethernet 2/1/27", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/27", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 283, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/28", "config": { "name": "ethernet 2/1/28", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/28", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 284, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/29", "config": { "name": "ethernet 2/1/29", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/29", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 285, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/30", "config": { "name": "ethernet 2/1/30", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/30", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 286, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/31", "config": { "name": "ethernet 2/1/31", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/31", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 287, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/32", "config": { "name": "ethernet 2/1/32", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/32", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 288, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/33", "config": { "name": "ethernet 2/1/33", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/33", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 289, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/34", "config": { "name": "ethernet 2/1/34", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/34", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 290, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/35", "config": { "name": "ethernet 2/1/35", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/35", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 291, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "2153445", "out-pkts": "12297", "out-unicast-pkts": "0", "out-broadcast-pkts": "1146", "out-multicast-pkts": "11151", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_10GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/36", "config": { "name": "ethernet 2/1/36", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/36", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 292, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/37", "config": { "name": "ethernet 2/1/37", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/37", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 293, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2152767", "in-pkts": "12302", "in-unicast-pkts": "0", "in-broadcast-pkts": "1145", "in-multicast-pkts": "11157", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "111332", "out-pkts": "718", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "718", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_10GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/38", "config": { "name": "ethernet 2/1/38", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/38", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 294, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "2152610", "in-pkts": "12301", "in-unicast-pkts": "0", "in-broadcast-pkts": "1145", "in-multicast-pkts": "11156", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "111327", "out-pkts": "718", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "718", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_10GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/39", "config": { "name": "ethernet 2/1/39", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/39", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 295, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/40", "config": { "name": "ethernet 2/1/40", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/40", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 296, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/41", "config": { "name": "ethernet 2/1/41", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/41", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 297, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/42", "config": { "name": "ethernet 2/1/42", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/42", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 298, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/43", "config": { "name": "ethernet 2/1/43", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/43", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 299, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/44", "config": { "name": "ethernet 2/1/44", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/44", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 300, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/45", "config": { "name": "ethernet 2/1/45", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/45", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 301, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/46", "config": { "name": "ethernet 2/1/46", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/46", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 302, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/47", "config": { "name": "ethernet 2/1/47", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/47", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 303, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/1/48", "config": { "name": "ethernet 2/1/48", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/1/48", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 304, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": true, "duplex-mode": "FULL", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": true, "duplex-mode": "FULL", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" }, "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "0.0", "power-class": 0 } } } }, { "name": "ethernet 2/2/1", "config": { "name": "ethernet 2/2/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/2/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 321, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 2/2/2", "config": { "name": "ethernet 2/2/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/2/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 322, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 2/3/1", "config": { "name": "ethernet 2/3/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/3/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 385, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "93851708", "in-pkts": "417378", "in-unicast-pkts": "1502", "in-broadcast-pkts": "2051", "in-multicast-pkts": "413825", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "108255968", "out-pkts": "376091", "out-unicast-pkts": "119053", "out-broadcast-pkts": "21", "out-multicast-pkts": "257017", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 2/3/2", "config": { "name": "ethernet 2/3/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/3/2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 386, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 2/3/3", "config": { "name": "ethernet 2/3/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/3/3", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 387, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "ethernet 2/3/4", "config": { "name": "ethernet 2/3/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true }, "state": { "name": "ethernet 2/3/4", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 388, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-ethernet:ethernet": { "config": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "icx-openconfig-if-ethernet-aug:ethernet-clock": "none" }, "state": { "auto-negotiate": false, "duplex-mode": "FULL", "port-speed": "openconfig-if-ethernet:SPEED_40GB", "negotiated-duplex-mode": "FULL", "negotiated-port-speed": "openconfig-if-ethernet:SPEED_UNKNOWN", "icx-openconfig-if-ethernet-aug:negotiated-clock": "none" } } }, { "name": "lag lg2", "config": { "name": "lag lg2", "type": "iana-if-type:ieee8023adLag", "description": "", "enabled": true }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "state": {} } }, { "name": "lag 1", "config": { "name": "lag 1", "type": "iana-if-type:ieee8023adLag", "enabled": false }, "state": { "counters": {} }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "STATIC" }, "state": {} } }, { "name": "lag 2", "config": { "name": "lag 2", "type": "iana-if-type:ieee8023adLag", "enabled": true }, "state": { "name": "lag lg2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 3074, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "188694", "in-pkts": "1109", "in-unicast-pkts": "0", "in-broadcast-pkts": "88", "in-multicast-pkts": "1021", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "636950", "out-pkts": "4017", "out-unicast-pkts": "0", "out-broadcast-pkts": "259", "out-multicast-pkts": "3758", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-if-aggregate:aggregation": { "config": { "lag-type": "LACP" }, "state": {} } }, { "name": "ve 1", "config": { "name": "ve 1", "type": "iana-if-type:l3ipvlan" }, "state": { "name": "ve1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16777217, "admin-status": "UP", "oper-status": "UP", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-vlan:routed-vlan": { "config": { "vlan": 1 }, "openconfig-if-ip:ipv4": { "addresses": {}, "proxy-arp": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } }, "openconfig-if-ip:ipv6": { "addresses": {}, "router-advertisement": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } } } }, { "name": "ve 10", "config": { "name": "ve 10", "type": "iana-if-type:l3ipvlan" }, "state": { "name": "ve10", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16777218, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-vlan:routed-vlan": { "config": { "vlan": 10 }, "openconfig-if-ip:ipv4": { "addresses": {}, "proxy-arp": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } }, "openconfig-if-ip:ipv6": { "addresses": {}, "router-advertisement": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } } } }, { "name": "ve 20", "config": { "name": "ve 20", "type": "iana-if-type:l3ipvlan" }, "state": { "name": "ve20", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16777219, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {}, "openconfig-vlan:routed-vlan": { "config": { "vlan": 20 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "20.1.1.3", "config": { "ip": "20.1.1.3", "prefix-length": 16 }, "state": {}, "vrrp": {} } ] }, "proxy-arp": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } }, "openconfig-if-ip:ipv6": { "addresses": {}, "router-advertisement": { "state": {} }, "neighbors": {}, "unnumbered": { "state": {}, "interface-ref": { "state": {} } }, "state": { "counters": {} } } } } ] } }
To read/get configured PoE status on specific interface
{ "icx-openconfig-if-poe-aug:poe": { "config": { "enabled": true }, "state": { "enabled": true, "power-used": "7000.0", "power-class": 4 } } }
To get/read poe state values on specific values
{ "icx-openconfig-if-poe-aug:state": { "enabled": true, "power-used": "7000.0", "power-class": 4 } }
To read/get power-class on specific PoE interface
{ "icx-openconfig-if-poe-aug:power-class": 4 }
To read/get power-used on specific PoE interface
{ "icx-openconfig-if-poe-aug:power-used": "7000.0" }
To delete rstp on specific vlan
To disable bpdu-guard on interface using PATCH method
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "bpdu-guard": false } } ] } }
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "bpdu-guard": false } } ] } }
To enable STP on vlan using POST method
{ "vlan": [ { "vlan-id": 20, "config": { "vlan-id": 20 } } ] }
{ "vlan": [ { "vlan-id": 20, "config": { "vlan-id": 20 } } ] }
To enable bpdu-guard on interface using PATCH
Key | Value | Description |
---|---|---|
Content-Type | application/json | |
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "bpdu-guard": true } } ] } }
Key | Value | Description |
---|---|---|
Content-Type | application/json | |
{ "interfaces": { "interface": [ { "name": "ethernet 1/1/4", "config": { "name": "ethernet 1/1/4", "bpdu-guard": true } } ] } }
To enable rstp on vlan using PATCH
{ "rapid-pvst": { "vlan": [ { "vlan-id": 30, "config": { "vlan-id": 30 } } ] } }
{ "rapid-pvst": { "vlan": [ { "vlan-id": 30, "config": { "vlan-id": 30 } } ] } }
To get/read default stp status
{ "openconfig-interfaces:interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": false } } ] } }
{ "openconfig-interfaces:interfaces": { "interface": [ { "name": "ethernet 1/1/1", "config": { "name": "ethernet 1/1/1", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": false } } ] } }
{ "openconfig-spanning-tree:stp": { "rapid-pvst": {}, "interfaces": {} } }
To get/read rstp on specific vlan
{ "openconfig-spanning-tree:vlan": [ { "vlan-id": 20, "config": { "vlan-id": 20 }, "state": {} } ] }
To create static route using POST method
{ "protocol": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static", "config": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static" }, "static-routes": { "static": [ { "prefix": "44.1.1.1/16", "config": { "prefix": "44.1.1.1/16" }, "next-hops": { "next-hop": [ { "index": "10.176.128.1", "config": { "index": "10.176.128.1", "next-hop": "10.176.128.1" } } ] } } ] } } }
{ "protocol": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static", "config": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static" }, "static-routes": { "static": [ { "prefix": "44.1.1.1/16", "config": { "prefix": "44.1.1.1/16" }, "next-hops": { "next-hop": [ { "index": "10.176.128.1", "config": { "index": "10.176.128.1", "next-hop": "10.176.128.1" } } ] } } ] } } }
To create/update static route using PATCH method
{ "protocols": { "protocol": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static", "config": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static" }, "static-routes": { "static": [ { "prefix": "55.1.1.1/16", "config": { "prefix": "55.1.1.1/16" }, "next-hops": { "next-hop": [ { "index": "10.176.128.1", "config": { "index": "10.176.128.1", "next-hop": "10.176.128.1" } } ] } } ] } } } }
{ "protocols": { "protocol": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static", "config": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static" }, "static-routes": { "static": [ { "prefix": "55.1.1.1/16", "config": { "prefix": "55.1.1.1/16" }, "next-hops": { "next-hop": [ { "index": "10.176.128.1", "config": { "index": "10.176.128.1", "next-hop": "10.176.128.1" } } ] } } ] } } } }
To delete a specific static route configured in the system using delete method
To get all static routes configured in the system
{ "openconfig-network-instance:protocol": [ { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static", "config": { "identifier": "openconfig-policy-types:STATIC", "name": "icx-static" }, "state": {}, "static-routes": { "static": [ { "prefix": "0.0.0.0/0", "config": { "prefix": "0.0.0.0/0" }, "state": {}, "next-hops": { "next-hop": [ { "index": "10.176.128.1", "config": { "index": "10.176.128.1", "next-hop": "10.176.128.1" }, "state": {}, "interface-ref": { "state": {} } } ] } }, { "prefix": "44.1.0.0/16", "config": { "prefix": "44.1.0.0/16" }, "state": {}, "next-hops": { "next-hop": [ { "index": "10.176.128.1", "config": { "index": "10.176.128.1", "next-hop": "10.176.128.1" }, "state": {}, "interface-ref": { "state": {} } } ] } }, { "prefix": "55.1.1.0/25", "config": { "prefix": "55.1.1.0/25" }, "state": {}, "next-hops": { "next-hop": [ { "index": "10.176.128.1", "config": { "index": "10.176.128.1", "next-hop": "10.176.128.1" }, "state": {}, "interface-ref": { "state": {} } } ] } } ] } } ] }
To get/read specific static route configured in the system
{ "openconfig-network-instance:static": [ { "prefix": "44.1.0.0/16", "config": { "prefix": "44.1.0.0/16" }, "state": {}, "next-hops": { "next-hop": [ { "index": "10.176.128.1", "config": { "index": "10.176.128.1", "next-hop": "10.176.128.1" }, "state": {}, "interface-ref": { "state": {} } } ] } } ] }
create/replace vlans using PUT operation
{ "vlans": { "vlan": [ { "vlan-id": 20, "config": { "vlan-id": 20, "name": "user-vlan-20" } }, { "vlan-id": 1, "config": { "vlan-id": 1, "name": "DEFAULT-VLAN" } } ] } }
{ "vlans": { "vlan": [ { "vlan-id": 20, "config": { "vlan-id": 20, "name": "user-vlan-20" } }, { "vlan-id": 1, "config": { "vlan-id": 1, "name": "DEFAULT-VLAN" } } ] } }
To delete untag ports from access vlans using delete method on specific interface
To get/read vlans configured on specific vlans
{ "openconfig-vlan:switched-vlan": { "config": { "access-vlan": 40, "trunk-vlans": [ 10, 20, 30 ] } } }
To delete a specific vlan using DELETE method
To read/get specific vlan using GET method
{ "openconfig-network-instance:vlan": [ { "vlan-id": 10, "config": { "vlan-id": 10, "name": "user-vlan-10" }, "state": {} } ] }
To create new vlan using POST method
{ "vlan": [ { "vlan-id": 10, "config": { "vlan-id": 10, "name": "user-vlan-10" } } ] }
{ "vlan": [ { "vlan-id": 10, "config": { "vlan-id": 10, "name": "user-vlan-10" } } ] }
To delete tagging ports from vlan using PATCH
To get/read all vlans configured in the system
{ "openconfig-network-instance:vlans": { "vlan": [ { "vlan-id": 1, "config": { "vlan-id": 1, "name": "DEFAULT-VLAN" }, "state": {} }, { "vlan-id": 2, "config": { "vlan-id": 2, "name": "user-vlan-2" }, "state": {} }, { "vlan-id": 3, "config": { "vlan-id": 3 }, "state": {} }, { "vlan-id": 4, "config": { "vlan-id": 4 }, "state": {} }, { "vlan-id": 10, "config": { "vlan-id": 10, "name": "user-vlan-10" }, "state": {} }, { "vlan-id": 20, "config": { "vlan-id": 20, "name": "user-vlan-20" }, "state": {} } ] } }
Tagging ports in trunk vlans using PATCH method
{ "openconfig-vlan:switched-vlan": { "config": { "trunk-vlans": [ 10, 20, 30 ] } } }
{ "ethernet": { "openconfig-vlan:switched-vlan": { "config": { "trunk-vlans": [ 10, 20, 30 ] } } } }
tag ports in trunk vlans using POST method
{ "config": { "trunk-vlans": [ 10, 20, 30 ] } }
{ "openconfig-vlan:switched-vlan": { "config": { "trunk-vlans": [ 10, 20, 30 ] } } }
Untag ports in access vlans using PATCH method
{ "openconfig-vlan:switched-vlan": { "config": { "access-vlan": 20 } } }
{ "ethernet": { "openconfig-vlan:switched-vlan": { "config": { "access-vlan": 40 } } } }
untag ports in access vlan using POST method
{ "config": { "access-vlan": 10 } }
{ "openconfig-vlan:switched-vlan": { "config": { "access-vlan": 40 } } }
To update/create vlan using PATCH method
{ "vlans": { "vlan": [ { "vlan-id": 20, "config": { "vlan-id": 20, "name": "user-vlan-20" } } ] } }
{ "vlans": { "vlan": [ { "vlan-id": 20, "config": { "vlan-id": 20, "name": "user-vlan-20" } } ] } }
To create virtual interface with ip address using POST method
{ "interface": [ { "name": "ve 40", "config": { "name": "ve 40", "type": "iana-if-type:l3ipvlan" }, "openconfig-vlan:routed-vlan": { "config": { "vlan": 40 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "40.1.1.1", "config": { "ip": "40.1.1.1", "prefix-length": 25 } } ] } } } } ] }
{ "interface": [ { "name": "ve 40", "config": { "name": "ve 40", "type": "iana-if-type:l3ipvlan" }, "openconfig-vlan:routed-vlan": { "config": { "vlan": 40 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "40.1.1.1", "config": { "ip": "40.1.1.1", "prefix-length": 25 } } ] } } } } ] }
To cretae/update virtual interface using PATCH method
{ "interfaces": { "interface": [ { "name": "ve 60", "config": { "name": "ve 60", "type": "iana-if-type:l3ipvlan" } } ] } }
{ "interfaces": { "interface": [ { "name": "ve 60", "config": { "name": "ve 60", "type": "iana-if-type:l3ipvlan" } } ] } }
To create/update virtual interface with ip address using PATCH method
{ "interfaces": { "interface": [ { "name": "ve 70", "config": { "name": "ve 70", "type": "iana-if-type:l3ipvlan" }, "openconfig-vlan:routed-vlan": { "config": { "vlan": 70 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "70.1.1.1", "config": { "ip": "70.1.1.1", "prefix-length": 25 } } ] } } } } ] } }
{ "interfaces": { "interface": [ { "name": "ve 70", "config": { "name": "ve 70", "type": "iana-if-type:l3ipvlan" }, "openconfig-vlan:routed-vlan": { "config": { "vlan": 70 }, "openconfig-if-ip:ipv4": { "addresses": { "address": [ { "ip": "70.1.1.1", "config": { "ip": "70.1.1.1", "prefix-length": 25 } } ] } } } } ] } }
To create virtual interface using POST method
{ "interface": [ { "name": "ve 50", "config": { "name": "ve 50", "type": "iana-if-type:l3ipvlan" } } ] }
{ "interface": [ { "name": "ve 50", "config": { "name": "ve 50", "type": "iana-if-type:l3ipvlan" } } ] }
To delete specific virtual interface
To get/read specific virtual interface
{ "openconfig-interfaces:interface": [ { "name": "ve 2", "config": { "name": "ve 2", "type": "iana-if-type:l3ipvlan" }, "state": { "name": "ve2", "type": "iana-if-type:ethernetCsmacd", "description": "", "enabled": true, "ifindex": 16777218, "admin-status": "UP", "oper-status": "DOWN", "counters": { "in-octets": "0", "in-pkts": "0", "in-unicast-pkts": "0", "in-broadcast-pkts": "0", "in-multicast-pkts": "0", "in-discards": "0", "in-errors": "0", "in-unknown-protos": "0", "in-fcs-errors": "0", "out-octets": "0", "out-pkts": "0", "out-unicast-pkts": "0", "out-broadcast-pkts": "0", "out-multicast-pkts": "0", "out-discards": "0", "out-errors": "0" } }, "subinterfaces": {} } ] }