From 505166dc92acf00a7c820c0c401b54b465998ae7 Mon Sep 17 00:00:00 2001 From: Carl Montanari Date: Thu, 2 Feb 2023 14:25:37 -0800 Subject: [PATCH 1/4] refactor: limit channel search depth to not be very slow and dumb --- channel/channel.go | 16 +++++++---- channel/read.go | 18 +++++++++++- driver/options/channel.go | 19 +++++++++++++ driver/options/channel_test.go | 52 ++++++++++++++++++++++++++++++++++ 4 files changed, 98 insertions(+), 7 deletions(-) diff --git a/channel/channel.go b/channel/channel.go index de261fc..b28c0b0 100644 --- a/channel/channel.go +++ b/channel/channel.go @@ -21,8 +21,10 @@ const ( DefaultReadDelayMicroSeconds = 5 // DefaultReturnChar is the character used to send an "enter" key to the device, "\n". DefaultReturnChar = "\n" - - redacted = "redacted" + // DefaultPromptSearchDepth -- is the default depth to search for the prompt in the received + // bytes. + DefaultPromptSearchDepth = 1_000 + redacted = "redacted" ) var ( @@ -57,8 +59,9 @@ func NewChannel( PasswordPattern: patterns.password, PassphrasePattern: patterns.passphrase, - PromptPattern: getPromptPattern(), - ReturnChar: []byte(DefaultReturnChar), + PromptSearchDepth: DefaultPromptSearchDepth, + PromptPattern: getPromptPattern(), + ReturnChar: []byte(DefaultReturnChar), done: make(chan bool), @@ -96,8 +99,9 @@ type Channel struct { PasswordPattern *regexp.Regexp PassphrasePattern *regexp.Regexp - PromptPattern *regexp.Regexp - ReturnChar []byte + PromptSearchDepth int + PromptPattern *regexp.Regexp + ReturnChar []byte done chan bool diff --git a/channel/read.go b/channel/read.go index 1cd4e97..ffb3a1b 100644 --- a/channel/read.go +++ b/channel/read.go @@ -94,6 +94,22 @@ func (c *Channel) ReadUntilInput(b []byte) ([]byte, error) { return c.ReadUntilExplicit(b) } +func (c *Channel) processReadBuf(rb []byte) []byte { + if len(rb) <= c.PromptSearchDepth { + return rb + } + + prb := rb[len(rb)-c.PromptSearchDepth:] + + partitionIdx := bytes.Index(prb, []byte("\n")) + + if partitionIdx > 0 { + prb = prb[partitionIdx:] + } + + return prb +} + // ReadUntilPrompt reads bytes out of the channel Q object until the channel PromptPattern regex // pattern is seen in the output. Once that pattern is seen, all read bytes are returned. func (c *Channel) ReadUntilPrompt() ([]byte, error) { @@ -114,7 +130,7 @@ func (c *Channel) ReadUntilPrompt() ([]byte, error) { rb = append(rb, nb...) - if c.PromptPattern.Match(rb) { + if c.PromptPattern.Match(c.processReadBuf(rb)) { c.l.Debugf("channel read %#v", string(rb)) return rb, nil diff --git a/driver/options/channel.go b/driver/options/channel.go index 5a6ae8c..58edeab 100644 --- a/driver/options/channel.go +++ b/driver/options/channel.go @@ -9,6 +9,25 @@ import ( "github.com/scrapli/scrapligo/util" ) +// WithPromptSearchDepth accepts an int that can be used to set the depth of the Channel prompt +// search -- that is, the approximate amount of characters to search when trying to find the channel +// prompt. The smaller this number is the faster the regex search operation will be, but the higher +// the risk of accidentally missing the prompt, and thereby causing the connection to eventually +// fail. Best to leave this default in most cases. +func WithPromptSearchDepth(i int) util.Option { + return func(o interface{}) error { + c, ok := o.(*channel.Channel) + + if !ok { + return util.ErrIgnoredOption + } + + c.PromptSearchDepth = i + + return nil + } +} + // WithPromptPattern allows for providing a custom regex pattern to use for the channel // PromptPattern. func WithPromptPattern(p *regexp.Regexp) util.Option { diff --git a/driver/options/channel_test.go b/driver/options/channel_test.go index e9328b5..6e76e3a 100644 --- a/driver/options/channel_test.go +++ b/driver/options/channel_test.go @@ -18,6 +18,58 @@ import ( "github.com/google/go-cmp/cmp" ) +func testWithPromptSearchDepth(testName string, testCase *optionsIntTestCase) func(t *testing.T) { + return func(t *testing.T) { + t.Logf("%s: starting", testName) + + err := options.WithPromptSearchDepth(testCase.i)(testCase.o) + if err != nil { + if errors.Is(err, util.ErrIgnoredOption) && !testCase.isignored { + t.Fatalf( + "%s: option should be ignored, but returned different error", + testName, + ) + } + + return + } + + oo, _ := testCase.o.(*channel.Channel) + + if !cmp.Equal(oo.PromptSearchDepth, testCase.i) { + t.Fatalf( + "%s: actual and expected prompt search depths do not match\nactual: %d\nexpected:%d", + testName, + oo.PromptSearchDepth, + testCase.i, + ) + } + } +} + +func TestWithPromptSearchDepth(t *testing.T) { + cases := map[string]*optionsIntTestCase{ + "set-prompt-pattern": { + description: "simple set option test", + i: 1, + o: &channel.Channel{}, + isignored: false, + }, + "ignored": { + description: "skipped due to ignored type", + i: 1, + o: &network.Driver{}, + isignored: true, + }, + } + + for testName, testCase := range cases { + f := testWithPromptSearchDepth(testName, testCase) + + t.Run(testName, f) + } +} + func testWithPromptPattern(testName string, testCase *optionsRegexpTestCase) func(t *testing.T) { return func(t *testing.T) { t.Logf("%s: starting", testName) From 471a39fe627082fd0811ba634a3b9dbc100a1b4b Mon Sep 17 00:00:00 2001 From: Carl Montanari Date: Fri, 3 Feb 2023 13:56:47 -0800 Subject: [PATCH 2/4] refactor: way improve defaults for read(delay), dont use selects with default so carelessly --- channel/channel.go | 5 +++-- channel/read.go | 3 +++ go.mod | 2 +- go.sum | 25 ++++++++----------------- transport/transport.go | 2 +- util/queue.go | 17 ++++++++++------- 6 files changed, 26 insertions(+), 28 deletions(-) diff --git a/channel/channel.go b/channel/channel.go index b28c0b0..e6b970a 100644 --- a/channel/channel.go +++ b/channel/channel.go @@ -17,8 +17,9 @@ const ( // DefaultTimeoutOpsSeconds is the default time value for operations -- 60 seconds. DefaultTimeoutOpsSeconds = 60 // DefaultReadDelayMicroSeconds is the default value for the delay between reads of the - // transport -- 5 microseconds. - DefaultReadDelayMicroSeconds = 5 + // transport -- 100 microseconds. Going very low is likely to lead to very high cpu and not + // yield any recognizable gains, so be careful changing this! + DefaultReadDelayMicroSeconds = 250 // DefaultReturnChar is the character used to send an "enter" key to the device, "\n". DefaultReturnChar = "\n" // DefaultPromptSearchDepth -- is the default depth to search for the prompt in the received diff --git a/channel/read.go b/channel/read.go index ffb3a1b..4fc468e 100644 --- a/channel/read.go +++ b/channel/read.go @@ -120,6 +120,7 @@ func (c *Channel) ReadUntilPrompt() ([]byte, error) { case err := <-c.Errs: return nil, err default: + time.Sleep(c.ReadDelay) } nb := c.Q.Dequeue() @@ -148,6 +149,7 @@ func (c *Channel) ReadUntilAnyPrompt(prompts []*regexp.Regexp) ([]byte, error) { case err := <-c.Errs: return nil, err default: + time.Sleep(c.ReadDelay) } nb := c.Q.Dequeue() @@ -178,6 +180,7 @@ func (c *Channel) ReadUntilExplicit(b []byte) ([]byte, error) { case err := <-c.Errs: return nil, err default: + time.Sleep(c.ReadDelay) } nb := c.Q.Dequeue() diff --git a/go.mod b/go.mod index fe6515c..bf09948 100644 --- a/go.mod +++ b/go.mod @@ -6,6 +6,6 @@ require ( github.com/creack/pty v1.1.18 github.com/google/go-cmp v0.5.9 github.com/sirikothe/gotextfsm v1.0.1-0.20200816110946-6aa2cfd355e4 - golang.org/x/crypto v0.1.0 + golang.org/x/crypto v0.5.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/go.sum b/go.sum index 91efd81..f382b97 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,5 @@ github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY= github.com/creack/pty v1.1.18/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4= -github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/sirikothe/gotextfsm v1.0.1-0.20200816110946-6aa2cfd355e4 h1:FHUL2HofYJuslFOQdy/JjjP36zxqIpd/dcoiwLMIs7k= @@ -9,42 +7,35 @@ github.com/sirikothe/gotextfsm v1.0.1-0.20200816110946-6aa2cfd355e4/go.mod h1:CJ github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 h1:SLP7Q4Di66FONjDJbCYrCRrh97focO6sLogHO7/g8F0= -golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.1.0 h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU= -golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= +golang.org/x/crypto v0.5.0 h1:U/0M97KRkSFvyD/3FSmdP5W5swImpNgle/EHFhOsQPE= +golang.org/x/crypto v0.5.0/go.mod h1:NK/OQwhpMQP3MwtdjgLlYHnH9ebylxKWv3e0fK+mkQU= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= +golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 h1:SrN+KX8Art/Sf4HNj6Zcz06G7VEz+7w9tdXTPOZ7+l4= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E= +golang.org/x/sys v0.4.0 h1:Zr2JFtRQNX3BCZ8YtxRE9hNJYC8J6I1MVbMg6owUp18= +golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.4.0 h1:O7UWfv5+A2qiuulQk30kVinPoMtoIPeVaKLEgLpVkvg= +golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/yaml.v3 v3.0.0 h1:hjy8E9ON/egN1tAYqKb61G10WtihqetD4sz2H+8nIeA= -gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/transport/transport.go b/transport/transport.go index f4c3bf5..7c242be 100644 --- a/transport/transport.go +++ b/transport/transport.go @@ -23,7 +23,7 @@ const ( defaultPort = 22 defaultTimeoutSocketSeconds = 30 - defaultReadSize = 65_535 + defaultReadSize = 8_192 defaultTermHeight = 255 defaultTermWidth = 80 defaultSSHStrictKey = true diff --git a/util/queue.go b/util/queue.go index afdbf89..de654ea 100644 --- a/util/queue.go +++ b/util/queue.go @@ -93,6 +93,16 @@ func (q *Queue) DequeueAll() []byte { return bytes.Join(b, []byte{}) } +func (q *Queue) getDepth() int { + // rather than locking/unlocking to access the q.depth, we simply grab the depth from the + // depthChan and then put it back in and return the value we got. this should be slightly faster + // and less cpu than locking/unlocking + d := <-q.depthChan + q.depthChan <- d + + return d +} + // GetDepth returns the depth of the queue. func (q *Queue) GetDepth() int { q.lock.RLock() @@ -100,10 +110,3 @@ func (q *Queue) GetDepth() int { return q.depth } - -func (q *Queue) getDepth() int { - d := <-q.depthChan - q.depthChan <- d - - return d -} From 7e74432e9b45710e1633fc34512455bab6f99cb7 Mon Sep 17 00:00:00 2001 From: Carl Montanari Date: Fri, 3 Feb 2023 14:39:26 -0800 Subject: [PATCH 3/4] test: add test for giant clab config --- .clab/configs/srl-startup.json | 51618 ++++++++++++++++ .clab/topo-ci.yaml | 3 +- .clab/topo-full.yaml | 1 + driver/network/sendcommand_test.go | 72 + ...d-command-giant-nokia_srl-standard-out.txt | 42292 +++++++++++++ ...end-command-giant-nokia_srl-system-out.txt | 42292 +++++++++++++ 6 files changed, 136277 insertions(+), 1 deletion(-) create mode 100644 .clab/configs/srl-startup.json create mode 100644 driver/network/test-fixtures/golden/send-command-giant-nokia_srl-standard-out.txt create mode 100644 driver/network/test-fixtures/golden/send-command-giant-nokia_srl-system-out.txt diff --git a/.clab/configs/srl-startup.json b/.clab/configs/srl-startup.json new file mode 100644 index 0000000..f05e0c7 --- /dev/null +++ b/.clab/configs/srl-startup.json @@ -0,0 +1,51618 @@ +{ + "_preamble": { + "header": { + "generated-by": "SRLINUX", + "name": "", + "comment": "", + "created": "2023-01-31T20:15:28.397Z", + "release": "v22.11.1", + "enabled-yang-features": ["srl_nokia-features:anycast-gw", "srl_nokia-features:bgp-ipv6-next-hop-tunnel-resolution", "srl_nokia-features:bgp-single-hop-connected-check", "srl_nokia-features:bgp-unnumbered-peers", "srl_nokia-features:bridged", "srl_nokia-features:bt-evpn-vlan-aware-bundle-interop", "srl_nokia-features:cam-cammgr-thread-programming", "srl_nokia-features:cam-multithread-programming", "srl_nokia-features:dac-link-training", "srl_nokia-features:dot1p-classifier-rewrite", "srl_nokia-features:dot1q-vlan-ranges", "srl_nokia-features:dynamic-tcam", "srl_nokia-features:event-handler", "srl_nokia-features:evpn", "srl_nokia-features:evpn-advertise-arp-nd-only-with-mac-table-entry", "srl_nokia-features:evpn-mh-ip-aliasing", "srl_nokia-features:evpn-mh-manual-alg", "srl_nokia-features:evpn-mh-pref-alg", "srl_nokia-features:evpn-mh-single-active", "srl_nokia-features:evpn-mh-virtual-es", "srl_nokia-features:fixed", "srl_nokia-features:future-22-11", "srl_nokia-features:ingress-subif-policing", "srl_nokia-features:ip-acl-dscp-set", "srl_nokia-features:ip-qos-multifield", "srl_nokia-features:irb-interface", "srl_nokia-features:isis-nsf", "srl_nokia-features:l2-proxy-arp", "srl_nokia-features:l2-proxy-nd", "srl_nokia-features:l2cp-transparency", "srl_nokia-features:l3-proxy-arp", "srl_nokia-features:l3-proxy-nd", "srl_nokia-features:lacp-fallback", "srl_nokia-features:lag", "srl_nokia-features:license", "srl_nokia-features:mirroring", "srl_nokia-features:mirroring-intf-stats", "srl_nokia-features:named-queues-and-named-fcs", "srl_nokia-features:platform-7220-d2", "srl_nokia-features:ra-guard", "srl_nokia-features:reload-delay", "srl_nokia-features:segment-routing-adjacency-sid", "srl_nokia-features:segment-routing-shared-sid", "srl_nokia-features:storm-control", "srl_nokia-features:trident3", "srl_nokia-features:virtual-ip-discovery", "srl_nokia-features:vlan-tpid", "srl_nokia-features:vxlan", "srl_nokia-features:warm-reboot"], + "checksum": "b8080cf69bc55e98$8edb353eb7a554761668c344744aea62052725e2" + }, + "build": { + "git-branch": "SRL_22_11_B1", + "git-tag": "v22.11.1-184-g6eeaa254f7", + "git-sha": "6eeaa254f7ce2b03da73c5c8851b37b4eb3e66be" + }, + "application": [ + { + "name": "aaa_mgr", + "path": "/opt/srlinux/bin/sr_aaa_mgr", + "version": "2022-12-02T20:32:02.000Z" + }, + { + "name": "acl_mgr", + "path": "/opt/srlinux/bin/sr_acl_mgr", + "version": "2022-12-02T20:29:19.000Z" + }, + { + "name": "app_mgr", + "path": "/opt/srlinux/bin/sr_app_mgr", + "version": "2022-12-02T20:29:38.000Z" + }, + { + "name": "arp_nd_mgr", + "path": "/opt/srlinux/bin/sr_arp_nd_mgr", + "version": "2022-12-02T20:32:13.000Z" + }, + { + "name": "bfd_mgr", + "path": "/opt/srlinux/bin/sr_bfd_mgr", + "version": "2022-12-02T20:28:33.000Z" + }, + { + "name": "bgp_mgr", + "path": "/opt/srlinux/bin/sr_bgp_mgr", + "version": "2022-12-02T20:32:32.000Z" + }, + { + "name": "chassis_mgr", + "path": "/opt/srlinux/bin/sr_chassis_mgr", + "version": "2022-12-02T20:27:57.000Z" + }, + { + "name": "dev_mgr", + "path": "/opt/srlinux/bin/sr_device_mgr", + "version": "2022-12-02T20:33:09.000Z" + }, + { + "name": "dhcp_client_mgr", + "path": "/opt/srlinux/bin/sr_dhcp_client_mgr", + "version": "2022-12-02T20:30:51.000Z" + }, + { + "name": "dhcp_relay_mgr", + "path": "/opt/srlinux/bin/sr_dhcp_relay_mgr", + "version": "2022-12-02T20:32:02.000Z" + }, + { + "name": "dhcp_server_mgr", + "path": "/opt/srlinux/bin/sr_dhcp_server_mgr", + "version": "2022-12-02T20:30:50.000Z" + }, + { + "name": "ethcfm_mgr", + "path": "/opt/srlinux/bin/sr_ethcfm_mgr", + "version": "2022-12-02T20:26:40.000Z" + }, + { + "name": "event_mgr", + "path": "/opt/srlinux/bin/sr_event_mgr", + "version": "2022-12-02T20:28:20.000Z" + }, + { + "name": "evpn_mgr", + "path": "/opt/srlinux/bin/sr_evpn_mgr", + "version": "2022-12-02T20:32:14.000Z" + }, + { + "name": "fhs_mgr", + "path": "/opt/srlinux/bin/sr_fhs_mgr", + "version": "2022-12-02T20:27:37.000Z" + }, + { + "name": "fib_mgr", + "path": "/opt/srlinux/bin/sr_fib_mgr", + "version": "2022-12-02T20:28:05.000Z" + }, + { + "name": "gnmi_server", + "path": "/opt/srlinux/bin/sr_gnmi_server", + "version": "2022-12-02T20:28:45.000Z" + }, + { + "name": "gribi_server", + "path": "/opt/srlinux/bin/sr_gribi_server", + "version": "2022-12-02T20:29:07.000Z" + }, + { + "name": "idb_server", + "path": "/opt/srlinux/bin/sr_idb_server", + "version": "2022-12-02T20:23:28.000Z" + }, + { + "name": "igmp_mgr", + "path": "/opt/srlinux/bin/sr_igmp_mgr", + "version": "2022-12-02T20:32:30.000Z" + }, + { + "name": "isis_mgr", + "path": "/opt/srlinux/bin/sr_isis_mgr", + "version": "2022-12-02T20:32:29.000Z" + }, + { + "name": "json_rpc", + "path": "/opt/srlinux/bin/sr_json_rpc", + "version": "2022-12-02T20:28:10.000Z" + }, + { + "name": "l2_mac_learn_mgr", + "path": "/opt/srlinux/bin/sr_l2_mac_learn_mgr", + "version": "2022-12-02T20:28:06.000Z" + }, + { + "name": "l2_mac_mgr", + "path": "/opt/srlinux/bin/sr_l2_mac_mgr", + "version": "2022-12-02T20:28:17.000Z" + }, + { + "name": "l2_proxy_arp_nd_mgr", + "path": "/opt/srlinux/bin/sr_l2_proxy_arp_nd_mgr", + "version": "2022-12-02T20:32:14.000Z" + }, + { + "name": "l2_static_mac_mgr", + "path": "/opt/srlinux/bin/sr_l2_static_mac_mgr", + "version": "2022-12-02T20:28:04.000Z" + }, + { + "name": "label_mgr", + "path": "/opt/srlinux/bin/sr_label_mgr", + "version": "2022-12-02T20:30:47.000Z" + }, + { + "name": "lag_mgr", + "path": "/opt/srlinux/bin/sr_lag_mgr", + "version": "2022-12-02T20:27:33.000Z" + }, + { + "name": "ldp_mgr", + "path": "/opt/srlinux/bin/sr_ldp_mgr", + "version": "2022-12-02T20:32:14.000Z" + }, + { + "name": "license_mgr", + "path": "/opt/srlinux/bin/sr_license_mgr", + "version": "2022-12-02T20:26:11.000Z" + }, + { + "name": "linux_mgr", + "path": "/opt/srlinux/bin/sr_linux_mgr", + "version": "2022-12-02T20:32:06.000Z" + }, + { + "name": "dnsmasq", + "path": "/usr/sbin/dnsmasq", + "version": "2022-08-02T07:07:17.000Z" + }, + { + "name": "sshd", + "path": "/usr/sbin/sshd", + "version": "2022-07-02T01:10:39.000Z" + }, + { + "name": "ntpd", + "path": "/usr/sbin/chronyd", + "version": "2022-07-15T15:07:12.000Z" + }, + { + "name": "vsftpd", + "path": "/usr/sbin/vsftpd", + "version": "2022-01-27T07:36:21.000Z" + }, + { + "name": "snmp_server", + "path": "/opt/srlinux/bin/sr_snmp_server", + "version": "2022-12-02T20:23:48.000Z" + }, + { + "name": "timesrv", + "path": "/usr/sbin/chronyd", + "version": "2022-07-15T15:07:12.000Z" + }, + { + "name": "lldp_mgr", + "path": "/opt/srlinux/bin/sr_lldp_mgr", + "version": "2022-12-02T20:28:25.000Z" + }, + { + "name": "log_mgr", + "path": "/opt/srlinux/bin/sr_log_mgr", + "version": "2022-12-02T20:27:08.000Z" + }, + { + "name": "macsec_mgr", + "path": "/opt/srlinux/bin/sr_macsec_mgr", + "version": "2022-12-02T20:26:56.000Z" + }, + { + "name": "mcid_mgr", + "path": "/opt/srlinux/bin/sr_mcid_mgr", + "version": "2022-12-02T20:28:08.000Z" + }, + { + "name": "mfib_mgr", + "path": "/opt/srlinux/bin/sr_mfib_mgr", + "version": "2022-12-02T20:30:47.000Z" + }, + { + "name": "mgmt_server", + "path": "/opt/srlinux/bin/sr_mgmt_server", + "version": "2022-12-02T20:32:14.000Z" + }, + { + "name": "common", + "path": "n/a", + "version": "n/a" + }, + { + "name": "mirror_mgr", + "path": "/opt/srlinux/bin/sr_mirror_mgr", + "version": "2022-12-02T20:27:07.000Z" + }, + { + "name": "mpls_mgr", + "path": "/opt/srlinux/bin/sr_mpls_mgr", + "version": "2022-12-02T20:29:52.000Z" + }, + { + "name": "net_inst_mgr", + "path": "/opt/srlinux/bin/sr_net_inst_mgr", + "version": "2022-12-02T20:26:45.000Z" + }, + { + "name": "oam_mgr", + "path": "/opt/srlinux/bin/sr_oam_mgr", + "version": "2022-12-02T20:27:53.000Z" + }, + { + "name": "oc_mgmt_server", + "path": "/opt/srlinux/bin/sr_oc_mgmt_server", + "version": "2022-12-02T20:32:15.000Z" + }, + { + "name": "ospf_mgr", + "path": "/opt/srlinux/bin/sr_ospf_mgr", + "version": "2022-12-02T20:32:29.000Z" + }, + { + "name": "p4rt_server", + "path": "/opt/srlinux/bin/sr_p4rt_server", + "version": "2022-12-02T20:28:26.000Z" + }, + { + "name": "pim_mgr", + "path": "/opt/srlinux/bin/sr_pim_mgr", + "version": "2022-12-02T20:32:28.000Z" + }, + { + "name": "plcy_mgr", + "path": "/opt/srlinux/bin/sr_plcy_mgr", + "version": "2022-12-02T20:32:17.000Z" + }, + { + "name": "maint_mode_mgr", + "path": "n/a", + "version": "n/a" + }, + { + "name": "qos_mgr", + "path": "/opt/srlinux/bin/sr_qos_mgr", + "version": "2022-12-02T20:28:17.000Z" + }, + { + "name": "sdk_mgr", + "path": "/opt/srlinux/bin/sr_sdk_mgr", + "version": "2022-12-02T20:27:49.000Z" + }, + { + "name": "segrt_mgr", + "path": "/opt/srlinux/bin/sr_segrt_mgr", + "version": "2022-12-02T20:31:18.000Z" + }, + { + "name": "sflow_sample_mgr", + "path": "/opt/srlinux/bin/sr_sflow_sample_mgr", + "version": "2022-12-02T20:28:15.000Z" + }, + { + "name": "srpolicy_mgr", + "path": "/opt/srlinux/bin/sr_srpolicy_mgr", + "version": "2022-12-02T20:30:58.000Z" + }, + { + "name": "static_route_mgr", + "path": "/opt/srlinux/bin/sr_static_route_mgr", + "version": "2022-12-02T20:32:16.000Z" + }, + { + "name": "supportd", + "path": "/opt/srlinux/bin/sr_supportd", + "version": "2022-12-02T20:24:32.000Z" + }, + { + "name": "te_mgr", + "path": "/opt/srlinux/bin/sr_te_mgr", + "version": "2022-12-02T20:32:14.000Z" + }, + { + "name": "timing_stack", + "path": "/opt/srlinux/bin/sr_timing_stack", + "version": "2022-12-02T20:32:28.000Z" + }, + { + "name": "twamp_mgr", + "path": "/opt/srlinux/bin/sr_twamp_mgr", + "version": "2022-12-02T20:31:58.000Z" + }, + { + "name": "vrrp_mgr", + "path": "/opt/srlinux/bin/sr_vrrp_mgr", + "version": "2022-12-02T20:32:08.000Z" + }, + { + "name": "vxlan_mgr", + "path": "/opt/srlinux/bin/sr_vxlan_mgr", + "version": "2022-12-02T20:28:22.000Z" + }, + { + "name": "xdp_cpm", + "path": "/opt/srlinux/bin/sr_xdp_cpm", + "version": "2022-12-02T20:25:22.000Z" + }, + { + "name": "xdp_lc", + "path": "/opt/srlinux/bin/sr_xdp_lc", + "version": "2022-12-02T20:28:04.000Z" + } + ], + "yang-module": [ + { + "name": "srl_nokia-aaa", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-aaa-password", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-aaa-types", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-acl", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-acl-qos", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-aggregate-routes", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-app-mgmt", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-bfd", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-bgp", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-bgp-evpn", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-multicast-destinations", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-statistics", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-unicast-destinations", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-bgp-vpn", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-boot", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-bridge-table", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-bridge-table-mac-duplication", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-bridge-table-mac-duplication-entries", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-bridge-table-mac-learning", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-bridge-table-mac-learning-entries", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-bridge-table-mac-limit", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-bridge-table-mac-table", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-bridge-table-proxy-arp-nd", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-bridge-table-reserved-macs", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-bridge-table-static-mac", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-configuration", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-configuration-role", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-dhcp-server", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-dns", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-ethcfm", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-ethcfm-pm", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-event-handler", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-ftp", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-gnmi-server", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-gribi-server", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-icmp", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-if-ip", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-if-mpls", + "revision": "2021-06-30" + }, + { + "name": "srl_nokia-igmp", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-igmp-snooping", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-igmp-types", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-interfaces", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-interfaces-bridge-table", + "revision": "2021-06-30" + }, + { + "name": "srl_nokia-interfaces-bridge-table-mac-duplication-entries", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-interfaces-bridge-table-mac-learning-entries", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-interfaces-bridge-table-mac-table", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-interfaces-bridge-table-statistics", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-interfaces-ethernet-segment-association", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-interfaces-ip-dhcp", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-interfaces-ip-dhcp-relay", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-interfaces-ip-dhcp-server", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-interfaces-ip-vrrp", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-interfaces-l2cp", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-interfaces-lag", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-interfaces-local-mirror-destination", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-interfaces-nbr", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-interfaces-nbr-evpn", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-interfaces-nbr-virtual-ip-discovery", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-interfaces-p4rt", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-interfaces-router-adv", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-interfaces-vlans", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-interfaces-vxdp", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-ip-route-tables", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-isis", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-json-rpc", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-keychains", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-lacp", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-ldp", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-license", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-linux", + "revision": "2019-11-30" + }, + { + "name": "srl_nokia-lldp", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-lldp-types", + "revision": "2019-11-30" + }, + { + "name": "srl_nokia-load-balancing", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-logging", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-macsec", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-maintenance-mode", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-micro-bfd", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-mirroring", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-mld", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-mld-snooping", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-mpls", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-mpls-label-management", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-mpls-route-tables", + "revision": "2021-06-30" + }, + { + "name": "srl_nokia-mpls-services-evpn-label-management", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-mtu", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-network-instance", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-network-instance-mtu", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-next-hop-groups", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-ntp", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-oam", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-openconfig", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-ospf", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-p4rt-server", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-packet-match-types", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-pim", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-acl", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-cgroup", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-platform-chassis", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-control", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-cpu", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-platform-datapath-resources", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-disk", + "revision": "2019-11-30" + }, + { + "name": "srl_nokia-platform-fabric", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-platform-fan", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-platform-lc", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-memory", + "revision": "2019-11-30" + }, + { + "name": "srl_nokia-platform-mtu", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-platform-p4rt", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-platform-pipeline-counters", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-psu", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-platform-qos", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-redundancy", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-platform-resource-mgmt", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-resource-monitoring", + "revision": "2019-11-30" + }, + { + "name": "srl_nokia-platform-tcam", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-platform-vxdp", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-policy-forwarding", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-qos", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-qos-policers", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-ra_guard", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-rib-bgp", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-routing-policy", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-segment-routing", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-sflow", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-snmp", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-sr-policies", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-ssh", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-static-routes", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-system", + "revision": "2022-03-31" + }, + { + "name": "srl_nokia-system-banner", + "revision": "2019-11-30" + }, + { + "name": "srl_nokia-system-bridge-table", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-system-bridge-table-proxy-arp", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-system-info", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-system-name", + "revision": "2019-11-30" + }, + { + "name": "srl_nokia-system-network-instance", + "revision": "2021-06-30" + }, + { + "name": "srl_nokia-system-network-instance-bgp-evpn-ethernet-segments", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-system-network-instance-bgp-vpn", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-system-reboot", + "revision": "2021-06-30" + }, + { + "name": "srl_nokia-tcp-udp", + "revision": "2019-11-30" + }, + { + "name": "srl_nokia-timezone", + "revision": "2020-06-30" + }, + { + "name": "srl_nokia-tls", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-traffic-engineering", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-tunnel", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-tunnel-interfaces", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-tunnel-interfaces-vxlan-interface-bridge-table", + "revision": "2021-06-30" + }, + { + "name": "srl_nokia-tunnel-interfaces-vxlan-interface-bridge-table-multicast-destinations", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-tunnel-interfaces-vxlan-interface-bridge-table-unicast-destinations", + "revision": "2021-11-30" + }, + { + "name": "srl_nokia-tunnel-interfaces-vxlan-interface-bridge-table-unicast-es-destination-vteps", + "revision": "2021-03-31" + }, + { + "name": "srl_nokia-tunnel-tables", + "revision": "2022-11-30" + }, + { + "name": "srl_nokia-twamp", + "revision": "2022-06-30" + }, + { + "name": "srl_nokia-vxlan-tunnel-vtep", + "revision": "2021-11-30" + } + ] + }, + "srl_nokia-acl:acl": { + "cpm-filter": { + "ipv4-filter": { + "statistics-per-entry": true, + "entry": [ + { + "sequence-id": 10, + "description": "Accept incoming ICMP unreachable messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "protocol": "icmp", + "icmp": { + "type": "dest-unreachable", + "code": [ + 0, + 1, + 2, + 3, + 4, + 13 + ] + } + } + }, + { + "sequence-id": 20, + "description": "Accept incoming ICMP time-exceeded messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "protocol": "icmp", + "icmp": { + "type": "time-exceeded" + } + } + }, + { + "sequence-id": 30, + "description": "Accept incoming ICMP parameter problem messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "protocol": "icmp", + "icmp": { + "type": "param-problem" + } + } + }, + { + "sequence-id": 40, + "description": "Accept incoming ICMP echo messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "protocol": "icmp", + "icmp": { + "type": "echo" + } + } + }, + { + "sequence-id": 50, + "description": "Accept incoming ICMP echo-reply messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "protocol": "icmp", + "icmp": { + "type": "echo-reply" + } + } + }, + { + "sequence-id": 60, + "description": "Accept incoming SSH when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 22 + } + } + }, + { + "sequence-id": 70, + "description": "Accept incoming SSH when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "source-port": { + "operator": "eq", + "value": 22 + } + } + }, + { + "sequence-id": 80, + "description": "Accept incoming Telnet when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 23 + } + } + }, + { + "sequence-id": 90, + "description": "Accept incoming Telnet when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "source-port": { + "operator": "eq", + "value": 23 + } + } + }, + { + "sequence-id": 100, + "description": "Accept incoming TACACS+ when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 49 + } + } + }, + { + "sequence-id": 110, + "description": "Accept incoming TACACS+ when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "source-port": { + "operator": "eq", + "value": 49 + } + } + }, + { + "sequence-id": 120, + "description": "Accept incoming DNS response messages", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "source-port": { + "operator": "eq", + "value": 53 + } + } + }, + { + "sequence-id": 130, + "description": "Accept incoming DHCP messages targeted for BOOTP/DHCP client", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "destination-port": { + "operator": "eq", + "value": 68 + } + } + }, + { + "sequence-id": 140, + "description": "Accept incoming TFTP read-request and write-request messages", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "destination-port": { + "operator": "eq", + "value": 69 + } + } + }, + { + "sequence-id": 150, + "description": "Accept incoming HTTP(JSON-RPC) when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 80 + } + } + }, + { + "sequence-id": 160, + "description": "Accept incoming HTTP(JSON-RPC) when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "source-port": { + "operator": "eq", + "value": 80 + } + } + }, + { + "sequence-id": 170, + "description": "Accept incoming NTP messages from servers", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "source-port": { + "operator": "eq", + "value": 123 + } + } + }, + { + "sequence-id": 180, + "description": "Accept incoming SNMP GET/GETNEXT messages from servers", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "destination-port": { + "operator": "eq", + "value": 161 + } + } + }, + { + "sequence-id": 190, + "description": "Accept incoming BGP when the other router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 179 + } + } + }, + { + "sequence-id": 200, + "description": "Accept incoming BGP when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "source-port": { + "operator": "eq", + "value": 179 + } + } + }, + { + "sequence-id": 210, + "description": "Accept incoming HTTPS(JSON-RPC) when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 443 + } + } + }, + { + "sequence-id": 220, + "description": "Accept incoming HTTPS(JSON-RPC) when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "source-port": { + "operator": "eq", + "value": 443 + } + } + }, + { + "sequence-id": 230, + "description": "Accept incoming single-hop BFD session messages", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "destination-port": { + "operator": "eq", + "value": 3784 + } + } + }, + { + "sequence-id": 240, + "description": "Accept incoming multi-hop BFD session messages", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "destination-port": { + "operator": "eq", + "value": 4784 + } + } + }, + { + "sequence-id": 250, + "description": "Accept incoming uBFD session messages", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "destination-port": { + "operator": "eq", + "value": 6784 + } + } + }, + { + "sequence-id": 260, + "description": "Accept incoming gNMI messages when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 57400 + } + } + }, + { + "sequence-id": 270, + "description": "Accept incoming UDP traceroute messages", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "destination-port": { + "range": { + "start": 33434, + "end": 33464 + } + } + } + }, + { + "sequence-id": 280, + "description": "Accept incoming ICMP timestamp messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "protocol": "icmp", + "icmp": { + "type": "timestamp" + } + } + }, + { + "sequence-id": 290, + "description": "Accept incoming OSPF messages", + "action": { + "accept": { + + } + }, + "match": { + "protocol": 89 + } + }, + { + "sequence-id": 300, + "description": "Accept incoming DHCP relay messages targeted for BOOTP/DHCP server", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "destination-port": { + "operator": "eq", + "value": 67 + } + } + }, + { + "sequence-id": 310, + "description": "Accept ICMP fragment packets", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "fragment": true, + "protocol": "icmp" + } + }, + { + "sequence-id": 320, + "description": "Accept incoming LDP packets", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "udp", + "source-port": { + "operator": "eq", + "value": 646 + } + } + }, + { + "sequence-id": 330, + "description": "Accept incoming LDP packets with source-port 646", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "source-port": { + "operator": "eq", + "value": 646 + } + } + }, + { + "sequence-id": 340, + "description": "Accept incoming LDP packets with destination-port 646", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 646 + } + } + }, + { + "sequence-id": 350, + "description": "Accept incoming gRIBI packets with destination-port 57401", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 57401 + } + } + }, + { + "sequence-id": 360, + "description": "Accept incoming p4rt packets with destination-port 9559", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "tcp", + "destination-port": { + "operator": "eq", + "value": 9559 + } + } + }, + { + "sequence-id": 370, + "description": "Accept incoming IGMP packets", + "action": { + "accept": { + + } + }, + "match": { + "protocol": "igmp" + } + }, + { + "sequence-id": 380, + "description": "Drop all else", + "action": { + "drop": { + "log": true + } + } + } + ] + }, + "ipv6-filter": { + "statistics-per-entry": true, + "entry": [ + { + "sequence-id": 10, + "description": "Accept incoming ICMPv6 unreachable messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "dest-unreachable", + "code": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + } + }, + { + "sequence-id": 20, + "description": "Accept incoming ICMPv6 packet-too-big messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "packet-too-big" + } + } + }, + { + "sequence-id": 30, + "description": "Accept incoming ICMPv6 time-exceeded messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "time-exceeded" + } + } + }, + { + "sequence-id": 40, + "description": "Accept incoming ICMPv6 parameter problem messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "param-problem" + } + } + }, + { + "sequence-id": 50, + "description": "Accept incoming ICMPv6 echo-request messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "echo-request" + } + } + }, + { + "sequence-id": 60, + "description": "Accept incoming ICMPv6 echo-reply messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "echo-reply" + } + } + }, + { + "sequence-id": 70, + "description": "Accept incoming ICMPv6 router-advertisement messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "router-advertise" + } + } + }, + { + "sequence-id": 80, + "description": "Accept incoming ICMPv6 neighbor-solicitation messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "neighbor-solicit" + } + } + }, + { + "sequence-id": 90, + "description": "Accept incoming ICMPv6 neighbor-advertisement messages", + "action": { + "accept": { + "rate-limit": { + "system-cpu-policer": "icmp" + } + } + }, + "match": { + "next-header": "icmp6", + "icmp6": { + "type": "neighbor-advertise" + } + } + }, + { + "sequence-id": 100, + "description": "Accept incoming SSH when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 22 + } + } + }, + { + "sequence-id": 110, + "description": "Accept incoming SSH when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "source-port": { + "operator": "eq", + "value": 22 + } + } + }, + { + "sequence-id": 120, + "description": "Accept incoming Telnet when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 23 + } + } + }, + { + "sequence-id": 130, + "description": "Accept incoming Telnet when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "source-port": { + "operator": "eq", + "value": 23 + } + } + }, + { + "sequence-id": 140, + "description": "Accept incoming TACACS+ when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 49 + } + } + }, + { + "sequence-id": 150, + "description": "Accept incoming TACACS+ when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "source-port": { + "operator": "eq", + "value": 49 + } + } + }, + { + "sequence-id": 160, + "description": "Accept incoming DNS response messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "source-port": { + "operator": "eq", + "value": 53 + } + } + }, + { + "sequence-id": 170, + "description": "Accept incoming TFTP read-request and write-request messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "destination-port": { + "operator": "eq", + "value": 69 + } + } + }, + { + "sequence-id": 180, + "description": "Accept incoming HTTP(JSON-RPC) when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 80 + } + } + }, + { + "sequence-id": 190, + "description": "Accept incoming HTTP(JSON-RPC) when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "source-port": { + "operator": "eq", + "value": 80 + } + } + }, + { + "sequence-id": 200, + "description": "Accept incoming NTP messages from servers", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "source-port": { + "operator": "eq", + "value": 123 + } + } + }, + { + "sequence-id": 210, + "description": "Accept incoming SNMP GET/GETNEXT messages from servers", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "destination-port": { + "operator": "eq", + "value": 161 + } + } + }, + { + "sequence-id": 220, + "description": "Accept incoming BGP when the other router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 179 + } + } + }, + { + "sequence-id": 230, + "description": "Accept incoming BGP when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "source-port": { + "operator": "eq", + "value": 179 + } + } + }, + { + "sequence-id": 240, + "description": "Accept incoming HTTPS(JSON-RPC) when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 443 + } + } + }, + { + "sequence-id": 250, + "description": "Accept incoming HTTPS(JSON-RPC) when this router initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "source-port": { + "operator": "eq", + "value": 443 + } + } + }, + { + "sequence-id": 260, + "description": "Accept incoming DHCPv6 client messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "destination-port": { + "operator": "eq", + "value": 546 + } + } + }, + { + "sequence-id": 270, + "description": "Accept incoming single-hop BFD session messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "destination-port": { + "operator": "eq", + "value": 3784 + } + } + }, + { + "sequence-id": 280, + "description": "Accept incoming multi-hop BFD session messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "destination-port": { + "operator": "eq", + "value": 4784 + } + } + }, + { + "sequence-id": 290, + "description": "Accept incoming uBFD session messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "destination-port": { + "operator": "eq", + "value": 6784 + } + } + }, + { + "sequence-id": 300, + "description": "Accept incoming gNMI messages when the other host initiates the TCP connection", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 57400 + } + } + }, + { + "sequence-id": 310, + "description": "Accept incoming UDP traceroute messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "destination-port": { + "range": { + "start": 33434, + "end": 33464 + } + } + } + }, + { + "sequence-id": 320, + "description": "Accept incoming IPV6 hop-in-hop messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": 0 + } + }, + { + "sequence-id": 330, + "description": "Accept incoming IPV6 fragment header messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": 44 + } + }, + { + "sequence-id": 340, + "description": "Accept incoming OSPF messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": 89 + } + }, + { + "sequence-id": 350, + "description": "Accept incoming DHCPv6 relay messages", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "udp", + "destination-port": { + "operator": "eq", + "value": 547 + } + } + }, + { + "sequence-id": 360, + "description": "Accept incoming gRIBI packets with destination-port 57401", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 57401 + } + } + }, + { + "sequence-id": 370, + "description": "Accept incoming p4rt packets with destination-port 9559", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "tcp", + "destination-port": { + "operator": "eq", + "value": 9559 + } + } + }, + { + "sequence-id": 380, + "description": "Accept incoming IGMP packets", + "action": { + "accept": { + + } + }, + "match": { + "next-header": "igmp" + } + }, + { + "sequence-id": 390, + "description": "Drop all else", + "action": { + "drop": { + "log": true + } + } + } + ] + } + }, + "policers": { + "system-cpu-policer": [ + { + "name": "icmp", + "entry-specific": false, + "peak-packet-rate": 1000, + "max-packet-burst": 1000 + } + ] + } + }, + "srl_nokia-interfaces:interface": [ + { + "name": "mgmt0", + "admin-state": "enable", + "subinterface": [ + { + "index": 0, + "admin-state": "enable", + "ipv4": { + "srl_nokia-interfaces-ip-dhcp:dhcp-client": { + + } + }, + "ipv6": { + "srl_nokia-interfaces-ip-dhcp:dhcp-client": { + + } + } + } + ] + } + ], + "srl_nokia-system:system": { + "srl_nokia-aaa:aaa": { + "authentication": { + "idle-timeout": 7200, + "authentication-method": [ + "local" + ] + }, + "server-group": [ + { + "name": "local", + "type": "srl_nokia-aaa-types:local" + } + ] + }, + "srl_nokia-lldp:lldp": { + "admin-state": "enable" + }, + "srl_nokia-gnmi-server:gnmi-server": { + "admin-state": "enable", + "network-instance": [ + { + "name": "mgmt", + "admin-state": "enable", + "tls-profile": "clab-profile" + } + ], + "unix-socket": { + "admin-state": "enable" + } + }, + "srl_nokia-tls:tls": { + "server-profile": [ + { + "name": "clab-profile", + "key": "$aes$b1L+gy1OoNjo=$DgEPaj8Cg2OzIbK5Zi+mNutfn87F2zyffNuuT3qEiayG7I6nP9+hN1R51mFC1wp9K6cTpYLpEOfqHMVkv0z9wz/PzKCvfTV3sMW+xq9PeHyVGHnYbWit84DvvBba2qa7Ki6M69MLFvOKf3O8omjyX6Y7QgwzfO2neAjMMB67CfNOhpfqtzcR7oBNKK+GQa08rv5SyU/n7XQvDSe25PLnFoJ4Z+Qw4XVny96HGYRq07zPfH+EfMGb3gnUmUhpEtJRwKQM4LKVS3dLFLJEKp0qUbKGzTnw5dHaFkVqxSRkRE/Q6wMQnO4Wtsrb7O/Gc+jWPJqTr54sOuJ1E+hDmmXw1MP02onyGeMid6IZfZmAHwa14IIce3BJAaSMtc5LVy6ZVj3jTZXh1u2wrpCvZYLPxzkeaiKdGtUgVzNBF9MSvmjkuHoqaXkxqyCsm9mxXLARJvyQN+3EGXHzcvNx1rWPDsrl8foNw6UtX5zPLnsvg8exndj51AZrB7EsnCvCAI0Xj/ns11YMM+Q/LWDU8uKaHrFGdk8EsJ6qwwGadJCkmxiwYe6J6Sd9ln5dY+/5zNlspZMJBQ+5H0OBQ4yAowa5Uw82GGMXS0UoTb+M8uKvMiQBxCc+MNY6xR0tWZx1JworkvDfzaE3BvSA3o+yKq9I6Sikr8ZSA3AcQMG1hVwfOJcgXQuO1o4Tq6n8znj/KFwtwzEODkDTnF60vf05+UNY2C7q5wGM32td/BgEgTpcgR0AvyGKPWGZTKR8Za7pI+pc3J639TnKWIKBz55vo0zWOSI37WZmZg92+kBXCp7OZrq1V+GBKEjxsMm33reHC9mL1zNOd1hjFY0umRPCEjpXGOPmzJRbSVyw2eDFg3vhL4H6VZgh2pASXlm2NsrLSVrUOftltLqjbwSNouJ4l2jgxINTlXPfnG5WLoogiXlrpM7AwDpwXFreyzWUQemqbSjq2iey7EyiUQvTQtOCJIu1V0luVSJJ20r5mY+t7gwo29FOcag3h+m33z+Kzi6RFTl7C0pnd+UuPGZ6dH9S2zJggSHPH8ssjLxDkffu8OKDQUYSD0w4ZHp6k/3TxudybtWZQz9fWr9+oVs21Shg1NUkke+U4gIgSnV+W5aZYuUFyt1ESOhjR+ksUozt8/BodrV2uhSMUJtjPmBFVQbqYl/opk5/lLefzy6BRU8I/JdIIhzgcVxJF4Njb7UhQIR03+WXLRjxQ7ehM2zwm/Y/eNuk7v6Frf0SdNjOeDVbcKGtGCzSR7Hj9M+unREiDt+z+e9pGJxjRUX7O1DGU/DyOKWhstemXmCJ4cQ8HwvfXQxJoELRNWb2G2OWJ+rr8u0j/jYuPc9S3xyrvr5yebz21hRCILlZuyCebUzhGaIW62hZwaA1x3CBsgpycO4VP87gdVDAo5mgv9zbJRiy0skILw2mCM1JhG3z6CuFASOgyXSGvt/J76N20iflW1FR+04ZEhNoy7brrIuVBO090bN7nSZk7opBxM+SqU8SEcOXV0rt6JGa2pHiIc+B9LdsDCfwmth7NA0muURF35nXVVMGq65gWpHKHvbhgoF4k6LBVCPT9M/bIrjXGzK4gWr7dAlMURL7rQ+Y3S6EqBHBvgF1s2x0dwUpbjeoVThjqSSSAAVdTJ9Hs5fuxWzmkuCqSuOc70dOxOlWH0xZVCTKEm/m7EloRhisYmNAoKUHr6JrcKEhIcKH9lm1elrINNp8fhpBnWaqzX56EK6dG6L1pFDKXX5sEWoYgWOLpok5sfnCU3NxWTTEvRMfco3T5wlkaUD6HtCdnzhGh8FQ+aKLzUyYKBrSUMWSEBW1yhjziFLzY2INeN/z8VsIXwWnZh/IFf34pCXhCOmAr3aBW+gKNuqwgEZN0Vo3d0qNRAZpgdSxj3AhO/o3oRksj0bcflOO/4NiZy6rjBmqAP8Mbo0WneiDuvjQms7rIwuO7waVvXVtieuEaWyWab+PoX4Er340CQTDtJaVaATQFDOgzz4PJFyr078T7oRNyfzaJXh44NgsxW7FQqdo8zzGMb/aAbf4GYs1VVMrvQ9XDhPHHQsLNvrF0hMlLsbT5XM7k2MWHNFHVKzuobpHZbpzYOUWjSqKiIO8PinCtzRmFT8Ms0xWoChSbCheBZfz1JqXx1Kx2ws4N/7boLGJ/CVMpH8DNuS8KII9hEgwe9hZI8MWV37HPa4wuRRVy0bHNRuV0dF58FzTGUUNtXDji0BtN9sL5e2vpcfCrMnx", + "certificate": "-----BEGIN CERTIFICATE-----\nMIID8jCCAtqgAwIBAgIUEc2RnwCnuLpgdYBvyiWoA6mILcUwDQYJKoZIhvcNAQEL\nBQAwXTELMAkGA1UEBhMCQkUxEDAOBgNVBAcTB0FudHdlcnAxDjAMBgNVBAoTBU5v\na2lhMRYwFAYDVQQLEw1Db250YWluZXIgbGFiMRQwEgYDVQQDEwtzcmwgUm9vdCBD\nQTAeFw0yMzAxMzEyMDAxMDBaFw0yNDAxMzEyMDAxMDBaMFwxCzAJBgNVBAYTAkJF\nMRAwDgYDVQQHEwdBbnR3ZXJwMQ4wDAYDVQQKEwVOb2tpYTEWMBQGA1UECxMNQ29u\ndGFpbmVyIGxhYjETMBEGA1UEAxMKc3JsLnNybC5pbzCCASIwDQYJKoZIhvcNAQEB\nBQADggEPADCCAQoCggEBAMrue28sWGLoMhPozVtt/Z8KrVMysJW7753aDf9sOseO\nrHqH7CPKOr3TEwFO39d7id6mqLc7dxpUVWdXSsdBxBnW/XA4hx5IEP+vjJS6vzBf\n/jQhgaMpcvyZ6HmldzZZ54yx91L7W80KMbQJ17+WSbXxuUPVEQehCPVgrS9FyCKv\nqCc8iJmk/oTXYJckD3mF0lYuGJFTcnc/HdTMjLsJ6dVAl+SyEJXzMSRaKwAr5aHP\nHQ2enWaR0+bJltFC369REA9ni8qQ+OIXZyNyj37tVBlIY3ws3+NoHIMkjScoRgaQ\nC0xhY+McYKGfsYR3l3nno6B6Axvi74EZK6CDazKuE4UCAwEAAaOBqjCBpzAOBgNV\nHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1Ud\nEwEB/wQCMAAwHQYDVR0OBBYEFJR1h8HJM4CWUAfRKvROrWXnmjQMMB8GA1UdIwQY\nMBaAFPzZSIYYJqoFFINeOCLtlqCnfCTPMCgGA1UdEQQhMB+CA3NybIIMY2xhYi1z\ncmwtc3Jsggpzcmwuc3JsLmlvMA0GCSqGSIb3DQEBCwUAA4IBAQCQxBOqqorPUNK+\niwFSPZ9UjDjNFwJlm7blg8cJ7y9sNLi5gfl/gjgzA5fSOxoPpNKAn9jWPMIu2yUr\n9vEho8l0pitjry+RpgglX//wcdyoTrQBNrA6fZmY/XGjvlWPtfqiSdhhFO2hduJZ\ny+b1P8IjA8fd/odpD3cPWRLbedtvUSZ3R7onngDaLCNu4BaryVwupau+HeVTd8iO\nhLNNOPVX4mlAyJOmjGcH3x2XZEGSLVAKbIDbsvqgj0QkIWoXqJgPjwPhP8/TMKNG\nLEKz+Oa+8boGhcZcgfVslUZaHJGar2jv2C2wpSENThxXh5nDYWWyx6/qkzqzW6YH\no+phN+pt\n-----END CERTIFICATE-----\n", + "authenticate-client": false + } + ] + }, + "srl_nokia-json-rpc:json-rpc-server": { + "admin-state": "enable", + "network-instance": [ + { + "name": "mgmt", + "http": { + "admin-state": "enable" + }, + "https": { + "admin-state": "enable", + "tls-profile": "clab-profile" + } + } + ] + }, + "srl_nokia-ssh:ssh-server": { + "network-instance": [ + { + "name": "mgmt", + "admin-state": "enable" + } + ] + }, + "srl_nokia-system-banner:banner": { + "login-banner": "................................................................\n: Welcome to Nokia SR Linux! :\n: Open Network OS for the NetOps era. :\n: :\n: This is a freely distributed official container image. :\n: Use it - Share it :\n: :\n: Get started: https://learn.srlinux.dev :\n: Container: https://go.srlinux.dev/container-image :\n: Docs: https://doc.srlinux.dev/22-11 :\n: Rel. notes: https://doc.srlinux.dev/rn22-11-1 :\n: YANG: https://yang.srlinux.dev/v22.11.1 :\n: Discord: https://go.srlinux.dev/discord :\n: Contact: https://go.srlinux.dev/contact-sales :\n................................................................\n" + }, + "srl_nokia-logging:logging": { + "buffer": [ + { + "buffer-name": "messages", + "rotate": 3, + "size": "10000000", + "facility": [ + { + "facility-name": "local6", + "priority": { + "match-above": "informational" + } + } + ] + }, + { + "buffer-name": "system", + "facility": [ + { + "facility-name": "auth", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "cron", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "daemon", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "ftp", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "kern", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "lpr", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "mail", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "news", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "syslog", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "user", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "uucp", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "local0", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "local1", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "local2", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "local3", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "local4", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "local5", + "priority": { + "match-above": "warning" + } + }, + { + "facility-name": "local7", + "priority": { + "match-above": "warning" + } + } + ] + } + ], + "file": [ + { + "file-name": "messages", + "rotate": 3, + "size": "10000000", + "facility": [ + { + "facility-name": "local6", + "priority": { + "match-above": "warning" + } + } + ] + } + ] + } + }, + "srl_nokia-network-instance:network-instance": [ + { + "name": "ipvrf1", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf10", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf100", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1000", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1001", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1002", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1003", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1004", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1005", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1006", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1007", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1008", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1009", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf101", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1010", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1011", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1012", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1013", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1014", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1015", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1016", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1017", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1018", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1019", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf102", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1020", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1021", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1022", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1023", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1024", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1025", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1026", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1027", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1028", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1029", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf103", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1030", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1031", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1032", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1033", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1034", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1035", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1036", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1037", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1038", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1039", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf104", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1040", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1041", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1042", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1043", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1044", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1045", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1046", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1047", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1048", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1049", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf105", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1050", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1051", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1052", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1053", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1054", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1055", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1056", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1057", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1058", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1059", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf106", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1060", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1061", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1062", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1063", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1064", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1065", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1066", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1067", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1068", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1069", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf107", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1070", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1071", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1072", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1073", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1074", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1075", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1076", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1077", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1078", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1079", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf108", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1080", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1081", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1082", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1083", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1084", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1085", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1086", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1087", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1088", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1089", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf109", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1090", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1091", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1092", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1093", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1094", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1095", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1096", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1097", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1098", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1099", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf11", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf110", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1100", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1101", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1102", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1103", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1104", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1105", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1106", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1107", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1108", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1109", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf111", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1110", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1111", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1112", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1113", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1114", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1115", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1116", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1117", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1118", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1119", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf112", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1120", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1121", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1122", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1123", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1124", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1125", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1126", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1127", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1128", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1129", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf113", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1130", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1131", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1132", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1133", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1134", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1135", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1136", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1137", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1138", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1139", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf114", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1140", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1141", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1142", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1143", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1144", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1145", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1146", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1147", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1148", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1149", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf115", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1150", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1151", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1152", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1153", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1154", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1155", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1156", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1157", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1158", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1159", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf116", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1160", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1161", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1162", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1163", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1164", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1165", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1166", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1167", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1168", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1169", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf117", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1170", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1171", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1172", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1173", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1174", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1175", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1176", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1177", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1178", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1179", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf118", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1180", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1181", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1182", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1183", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1184", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1185", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1186", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1187", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1188", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1189", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf119", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1190", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1191", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1192", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1193", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1194", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1195", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1196", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1197", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1198", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1199", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf12", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf120", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1200", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1201", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1202", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1203", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1204", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1205", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1206", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1207", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1208", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1209", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf121", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1210", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1211", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1212", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1213", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1214", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1215", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1216", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1217", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1218", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1219", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf122", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1220", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1221", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1222", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1223", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1224", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1225", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1226", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1227", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1228", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1229", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf123", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1230", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1231", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1232", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1233", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1234", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1235", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1236", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1237", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1238", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1239", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf124", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1240", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1241", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1242", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1243", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1244", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1245", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1246", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1247", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1248", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1249", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf125", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1250", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1251", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1252", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1253", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1254", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1255", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1256", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1257", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1258", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1259", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf126", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1260", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1261", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1262", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1263", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1264", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1265", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1266", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1267", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1268", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1269", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf127", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1270", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1271", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1272", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1273", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1274", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1275", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1276", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1277", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1278", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1279", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf128", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1280", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1281", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1282", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1283", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1284", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1285", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1286", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1287", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1288", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1289", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf129", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1290", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1291", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1292", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1293", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1294", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1295", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1296", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1297", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1298", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1299", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf13", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf130", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1300", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1301", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1302", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1303", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1304", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1305", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1306", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1307", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1308", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1309", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf131", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1310", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1311", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1312", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1313", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1314", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1315", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1316", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1317", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1318", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1319", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf132", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1320", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1321", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1322", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1323", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1324", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1325", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1326", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1327", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1328", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1329", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf133", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1330", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1331", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1332", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1333", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1334", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1335", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1336", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1337", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1338", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1339", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf134", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1340", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1341", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1342", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1343", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1344", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1345", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1346", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1347", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1348", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1349", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf135", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1350", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1351", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1352", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1353", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1354", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1355", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1356", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1357", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1358", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1359", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf136", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1360", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1361", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1362", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1363", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1364", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1365", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1366", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1367", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1368", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1369", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf137", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1370", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1371", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1372", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1373", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1374", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1375", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1376", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1377", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1378", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1379", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf138", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1380", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1381", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1382", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1383", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1384", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1385", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1386", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1387", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1388", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1389", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf139", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1390", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1391", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1392", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1393", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1394", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1395", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1396", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1397", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1398", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1399", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf14", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf140", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1400", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1401", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1402", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1403", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1404", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1405", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1406", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1407", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1408", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1409", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf141", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1410", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1411", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1412", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1413", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1414", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1415", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1416", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1417", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1418", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1419", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf142", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1420", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1421", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1422", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1423", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1424", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1425", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1426", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1427", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1428", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1429", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf143", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1430", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1431", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1432", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1433", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1434", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1435", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1436", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1437", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1438", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1439", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf144", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1440", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1441", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1442", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1443", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1444", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1445", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1446", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1447", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1448", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1449", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf145", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1450", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1451", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1452", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1453", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1454", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1455", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1456", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1457", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1458", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1459", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf146", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1460", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1461", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1462", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1463", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1464", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1465", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1466", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1467", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1468", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1469", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf147", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1470", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1471", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1472", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1473", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1474", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1475", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1476", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1477", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1478", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1479", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf148", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1480", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1481", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1482", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1483", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1484", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1485", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1486", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1487", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1488", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1489", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf149", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1490", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1491", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1492", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1493", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1494", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1495", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1496", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1497", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1498", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1499", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf15", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf150", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1500", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1501", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1502", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1503", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1504", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1505", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1506", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1507", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1508", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1509", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf151", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1510", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1511", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1512", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1513", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1514", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1515", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1516", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1517", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1518", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1519", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf152", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1520", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1521", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1522", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1523", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1524", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1525", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1526", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1527", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1528", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1529", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf153", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1530", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1531", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1532", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1533", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1534", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1535", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1536", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1537", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1538", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1539", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf154", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1540", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1541", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1542", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1543", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1544", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1545", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1546", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1547", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1548", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1549", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf155", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1550", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1551", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1552", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1553", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1554", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1555", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1556", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1557", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1558", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1559", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf156", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1560", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1561", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1562", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1563", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1564", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1565", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1566", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1567", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1568", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1569", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf157", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1570", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1571", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1572", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1573", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1574", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1575", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1576", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1577", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1578", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1579", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf158", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1580", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1581", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1582", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1583", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1584", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1585", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1586", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1587", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1588", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1589", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf159", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1590", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1591", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1592", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1593", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1594", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1595", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1596", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1597", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1598", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1599", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf16", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf160", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1600", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1601", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1602", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1603", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1604", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1605", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1606", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1607", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1608", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1609", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf161", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1610", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1611", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1612", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1613", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1614", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1615", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1616", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1617", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1618", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1619", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf162", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1620", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1621", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1622", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1623", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1624", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1625", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1626", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1627", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1628", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1629", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf163", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1630", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1631", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1632", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1633", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1634", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1635", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1636", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1637", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1638", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1639", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf164", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1640", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1641", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1642", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1643", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1644", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1645", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1646", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1647", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1648", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1649", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf165", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1650", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1651", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1652", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1653", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1654", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1655", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1656", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1657", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1658", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1659", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf166", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1660", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1661", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1662", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1663", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1664", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1665", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1666", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1667", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1668", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1669", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf167", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1670", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1671", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1672", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1673", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1674", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1675", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1676", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1677", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1678", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1679", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf168", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1680", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1681", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1682", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1683", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1684", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1685", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1686", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1687", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1688", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1689", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf169", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1690", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1691", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1692", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1693", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1694", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1695", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1696", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1697", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1698", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1699", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf17", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf170", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1700", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1701", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1702", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1703", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1704", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1705", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1706", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1707", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1708", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1709", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf171", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1710", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1711", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1712", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1713", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1714", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1715", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1716", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1717", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1718", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1719", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf172", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1720", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1721", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1722", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1723", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1724", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1725", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1726", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1727", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1728", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1729", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf173", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1730", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1731", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1732", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1733", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1734", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1735", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1736", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1737", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1738", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1739", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf174", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1740", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1741", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1742", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1743", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1744", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1745", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1746", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1747", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1748", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1749", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf175", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1750", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1751", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1752", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1753", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1754", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1755", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1756", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1757", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1758", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1759", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf176", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1760", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1761", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1762", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1763", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1764", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1765", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1766", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1767", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1768", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1769", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf177", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1770", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1771", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1772", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1773", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1774", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1775", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1776", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1777", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1778", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1779", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf178", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1780", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1781", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1782", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1783", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1784", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1785", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1786", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1787", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1788", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1789", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf179", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1790", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1791", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1792", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1793", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1794", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1795", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1796", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1797", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1798", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1799", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf18", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf180", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1800", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1801", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1802", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1803", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1804", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1805", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1806", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1807", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1808", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1809", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf181", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1810", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1811", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1812", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1813", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1814", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1815", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1816", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1817", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1818", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1819", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf182", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1820", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1821", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1822", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1823", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1824", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1825", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1826", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1827", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1828", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1829", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf183", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1830", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1831", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1832", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1833", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1834", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1835", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1836", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1837", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1838", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1839", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf184", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1840", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1841", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1842", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1843", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1844", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1845", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1846", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1847", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1848", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1849", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf185", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1850", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1851", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1852", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1853", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1854", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1855", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1856", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1857", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1858", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1859", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf186", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1860", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1861", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1862", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1863", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1864", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1865", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1866", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1867", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1868", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1869", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf187", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1870", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1871", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1872", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1873", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1874", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1875", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1876", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1877", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1878", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1879", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf188", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1880", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1881", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1882", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1883", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1884", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1885", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1886", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1887", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1888", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1889", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf189", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1890", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1891", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1892", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1893", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1894", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1895", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1896", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1897", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1898", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1899", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf19", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf190", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1900", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1901", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1902", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1903", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1904", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1905", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1906", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1907", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1908", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1909", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf191", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1910", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1911", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1912", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1913", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1914", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1915", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1916", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1917", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1918", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1919", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf192", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1920", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1921", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1922", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1923", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1924", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1925", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1926", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1927", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1928", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1929", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf193", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1930", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1931", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1932", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1933", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1934", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1935", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1936", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1937", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1938", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1939", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf194", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1940", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1941", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1942", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1943", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1944", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1945", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1946", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1947", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1948", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1949", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf195", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1950", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1951", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1952", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1953", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1954", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1955", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1956", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1957", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1958", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1959", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf196", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1960", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1961", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1962", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1963", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1964", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1965", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1966", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1967", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1968", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1969", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf197", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1970", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1971", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1972", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1973", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1974", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1975", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1976", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1977", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1978", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1979", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf198", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1980", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1981", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1982", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1983", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1984", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1985", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1986", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1987", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1988", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1989", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf199", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1990", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1991", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1992", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1993", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1994", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1995", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1996", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1997", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1998", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf1999", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf20", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf200", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2000", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2001", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2002", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2003", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2004", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2005", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2006", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2007", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2008", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2009", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf201", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2010", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2011", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2012", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2013", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2014", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2015", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2016", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2017", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2018", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2019", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf202", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2020", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2021", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2022", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2023", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2024", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2025", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2026", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2027", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2028", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2029", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf203", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2030", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2031", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2032", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2033", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2034", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2035", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2036", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2037", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2038", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2039", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf204", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2040", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2041", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2042", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2043", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2044", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2045", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2046", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2047", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2048", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2049", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf205", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2050", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2051", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2052", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2053", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2054", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2055", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2056", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2057", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2058", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2059", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf206", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2060", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2061", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2062", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2063", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2064", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2065", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2066", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2067", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2068", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2069", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf207", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2070", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2071", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2072", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2073", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2074", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2075", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2076", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2077", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2078", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2079", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf208", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2080", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2081", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2082", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2083", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2084", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2085", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2086", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2087", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2088", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2089", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf209", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2090", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2091", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2092", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2093", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2094", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2095", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2096", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2097", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2098", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2099", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf21", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf210", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2100", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2101", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2102", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2103", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2104", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2105", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2106", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2107", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2108", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2109", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf211", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2110", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2111", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2112", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2113", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2114", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2115", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2116", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2117", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2118", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2119", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf212", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2120", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2121", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2122", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2123", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2124", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2125", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2126", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2127", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2128", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2129", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf213", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2130", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2131", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2132", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2133", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2134", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2135", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2136", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2137", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2138", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2139", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf214", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2140", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2141", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2142", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2143", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2144", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2145", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2146", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2147", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2148", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2149", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf215", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2150", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2151", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2152", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2153", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2154", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2155", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2156", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2157", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2158", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2159", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf216", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2160", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2161", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2162", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2163", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2164", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2165", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2166", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2167", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2168", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2169", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf217", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2170", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2171", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2172", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2173", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2174", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2175", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2176", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2177", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2178", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2179", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf218", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2180", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2181", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2182", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2183", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2184", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2185", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2186", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2187", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2188", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2189", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf219", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2190", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2191", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2192", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2193", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2194", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2195", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2196", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2197", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2198", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2199", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf22", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf220", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2200", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2201", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2202", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2203", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2204", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2205", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2206", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2207", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2208", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2209", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf221", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2210", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2211", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2212", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2213", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2214", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2215", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2216", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2217", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2218", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2219", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf222", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2220", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2221", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2222", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2223", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2224", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2225", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2226", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2227", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2228", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2229", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf223", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2230", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2231", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2232", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2233", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2234", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2235", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2236", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2237", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2238", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2239", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf224", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2240", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2241", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2242", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2243", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2244", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2245", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2246", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2247", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2248", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2249", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf225", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2250", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2251", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2252", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2253", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2254", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2255", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2256", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2257", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2258", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2259", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf226", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2260", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2261", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2262", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2263", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2264", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2265", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2266", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2267", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2268", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2269", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf227", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2270", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2271", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2272", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2273", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2274", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2275", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2276", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2277", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2278", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2279", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf228", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2280", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2281", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2282", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2283", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2284", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2285", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2286", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2287", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2288", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2289", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf229", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2290", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2291", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2292", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2293", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2294", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2295", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2296", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2297", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2298", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2299", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf23", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf230", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2300", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2301", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2302", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2303", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2304", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2305", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2306", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2307", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2308", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2309", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf231", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2310", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2311", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2312", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2313", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2314", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2315", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2316", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2317", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2318", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2319", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf232", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2320", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2321", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2322", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2323", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2324", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2325", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2326", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2327", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2328", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2329", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf233", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2330", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2331", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2332", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2333", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2334", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2335", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2336", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2337", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2338", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2339", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf234", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2340", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2341", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2342", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2343", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2344", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2345", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2346", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2347", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2348", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2349", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf235", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2350", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2351", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2352", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2353", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2354", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2355", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2356", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2357", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2358", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2359", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf236", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2360", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2361", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2362", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2363", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2364", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2365", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2366", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2367", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2368", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2369", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf237", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2370", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2371", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2372", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2373", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2374", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2375", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2376", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2377", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2378", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2379", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf238", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2380", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2381", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2382", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2383", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2384", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2385", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2386", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2387", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2388", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2389", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf239", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2390", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2391", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2392", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2393", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2394", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2395", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2396", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2397", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2398", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2399", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf24", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf240", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2400", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2401", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2402", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2403", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2404", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2405", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2406", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2407", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2408", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2409", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf241", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2410", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2411", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2412", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2413", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2414", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2415", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2416", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2417", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2418", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2419", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf242", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2420", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2421", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2422", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2423", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2424", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2425", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2426", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2427", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2428", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2429", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf243", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2430", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2431", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2432", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2433", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2434", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2435", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2436", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2437", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2438", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2439", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf244", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2440", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2441", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2442", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2443", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2444", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2445", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2446", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2447", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2448", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2449", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf245", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2450", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2451", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2452", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2453", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2454", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2455", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2456", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2457", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2458", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2459", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf246", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2460", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2461", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2462", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2463", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2464", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2465", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2466", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2467", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2468", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2469", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf247", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2470", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2471", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2472", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2473", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2474", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2475", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2476", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2477", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2478", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2479", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf248", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2480", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2481", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2482", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2483", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2484", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2485", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2486", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2487", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2488", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2489", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf249", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2490", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2491", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2492", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2493", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2494", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2495", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2496", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2497", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2498", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2499", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf25", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf250", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2500", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2501", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2502", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2503", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2504", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2505", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2506", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2507", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2508", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2509", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf251", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2510", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2511", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2512", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2513", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2514", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2515", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2516", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2517", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2518", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2519", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf252", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2520", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2521", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2522", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2523", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2524", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2525", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2526", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2527", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2528", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2529", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf253", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2530", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2531", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2532", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2533", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2534", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2535", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2536", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2537", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2538", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2539", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf254", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2540", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2541", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2542", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2543", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2544", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2545", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2546", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2547", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2548", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2549", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf255", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2550", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2551", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2552", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2553", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2554", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2555", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2556", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2557", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2558", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2559", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf256", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2560", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2561", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2562", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2563", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2564", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2565", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2566", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2567", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2568", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2569", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf257", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2570", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2571", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2572", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2573", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2574", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2575", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2576", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2577", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2578", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2579", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf258", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2580", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2581", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2582", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2583", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2584", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2585", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2586", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2587", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2588", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2589", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf259", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2590", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2591", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2592", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2593", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2594", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2595", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2596", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2597", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2598", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2599", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf26", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf260", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2600", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2601", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2602", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2603", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2604", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2605", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2606", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2607", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2608", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2609", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf261", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2610", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2611", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2612", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2613", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2614", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2615", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2616", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2617", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2618", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2619", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf262", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2620", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2621", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2622", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2623", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2624", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2625", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2626", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2627", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2628", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2629", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf263", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2630", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2631", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2632", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2633", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2634", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2635", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2636", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2637", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2638", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2639", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf264", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2640", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2641", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2642", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2643", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2644", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2645", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2646", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2647", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2648", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2649", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf265", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2650", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2651", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2652", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2653", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2654", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2655", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2656", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2657", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2658", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2659", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf266", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2660", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2661", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2662", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2663", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2664", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2665", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2666", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2667", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2668", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2669", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf267", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2670", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2671", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2672", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2673", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2674", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2675", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2676", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2677", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2678", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2679", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf268", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2680", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2681", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2682", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2683", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2684", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2685", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2686", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2687", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2688", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2689", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf269", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2690", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2691", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2692", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2693", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2694", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2695", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2696", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2697", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2698", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2699", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf27", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf270", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2700", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2701", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2702", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2703", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2704", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2705", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2706", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2707", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2708", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2709", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf271", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2710", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2711", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2712", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2713", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2714", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2715", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2716", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2717", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2718", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2719", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf272", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2720", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2721", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2722", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2723", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2724", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2725", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2726", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2727", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2728", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2729", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf273", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2730", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2731", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2732", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2733", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2734", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2735", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2736", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2737", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2738", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2739", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf274", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2740", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2741", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2742", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2743", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2744", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2745", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2746", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2747", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2748", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2749", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf275", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2750", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2751", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2752", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2753", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2754", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2755", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2756", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2757", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2758", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2759", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf276", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2760", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2761", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2762", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2763", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2764", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2765", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2766", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2767", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2768", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2769", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf277", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2770", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2771", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2772", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2773", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2774", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2775", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2776", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2777", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2778", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2779", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf278", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2780", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2781", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2782", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2783", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2784", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2785", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2786", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2787", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2788", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2789", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf279", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2790", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2791", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2792", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2793", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2794", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2795", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2796", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2797", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2798", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2799", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf28", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf280", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2800", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2801", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2802", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2803", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2804", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2805", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2806", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2807", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2808", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2809", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf281", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2810", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2811", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2812", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2813", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2814", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2815", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2816", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2817", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2818", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2819", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf282", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2820", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2821", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2822", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2823", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2824", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2825", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2826", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2827", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2828", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2829", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf283", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2830", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2831", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2832", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2833", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2834", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2835", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2836", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2837", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2838", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2839", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf284", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2840", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2841", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2842", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2843", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2844", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2845", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2846", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2847", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2848", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2849", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf285", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2850", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2851", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2852", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2853", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2854", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2855", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2856", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2857", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2858", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2859", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf286", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2860", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2861", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2862", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2863", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2864", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2865", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2866", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2867", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2868", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2869", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf287", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2870", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2871", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2872", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2873", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2874", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2875", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2876", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2877", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2878", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2879", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf288", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2880", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2881", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2882", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2883", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2884", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2885", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2886", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2887", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2888", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2889", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf289", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2890", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2891", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2892", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2893", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2894", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2895", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2896", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2897", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2898", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2899", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf29", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf290", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2900", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2901", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2902", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2903", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2904", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2905", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2906", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2907", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2908", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2909", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf291", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2910", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2911", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2912", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2913", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2914", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2915", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2916", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2917", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2918", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2919", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf292", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2920", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2921", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2922", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2923", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2924", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2925", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2926", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2927", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2928", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2929", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf293", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2930", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2931", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2932", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2933", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2934", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2935", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2936", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2937", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2938", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2939", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf294", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2940", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2941", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2942", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2943", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2944", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2945", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2946", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2947", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2948", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2949", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf295", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2950", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2951", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2952", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2953", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2954", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2955", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2956", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2957", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2958", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2959", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf296", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2960", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2961", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2962", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2963", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2964", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2965", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2966", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2967", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2968", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2969", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf297", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2970", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2971", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2972", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2973", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2974", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2975", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2976", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2977", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2978", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2979", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf298", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2980", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2981", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2982", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2983", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2984", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2985", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2986", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2987", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2988", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2989", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf299", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2990", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2991", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2992", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2993", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2994", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2995", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2996", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2997", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2998", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf2999", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf30", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf300", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3000", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3001", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3002", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3003", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3004", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3005", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3006", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3007", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3008", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3009", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf301", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3010", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3011", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3012", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3013", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3014", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3015", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3016", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3017", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3018", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3019", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf302", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3020", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3021", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3022", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3023", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3024", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3025", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3026", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3027", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3028", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3029", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf303", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3030", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3031", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3032", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3033", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3034", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3035", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3036", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3037", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3038", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3039", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf304", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3040", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3041", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3042", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3043", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3044", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3045", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3046", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3047", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3048", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3049", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf305", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3050", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3051", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3052", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3053", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3054", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3055", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3056", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3057", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3058", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3059", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf306", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3060", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3061", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3062", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3063", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3064", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3065", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3066", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3067", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3068", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3069", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf307", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3070", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3071", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3072", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3073", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3074", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3075", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3076", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3077", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3078", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3079", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf308", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3080", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3081", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3082", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3083", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3084", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3085", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3086", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3087", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3088", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3089", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf309", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3090", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3091", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3092", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3093", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3094", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3095", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3096", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3097", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3098", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3099", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf31", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf310", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3100", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3101", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3102", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3103", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3104", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3105", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3106", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3107", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3108", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3109", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf311", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3110", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3111", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3112", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3113", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3114", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3115", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3116", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3117", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3118", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3119", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf312", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3120", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3121", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3122", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3123", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3124", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3125", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3126", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3127", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3128", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3129", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf313", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3130", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3131", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3132", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3133", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3134", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3135", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3136", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3137", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3138", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3139", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf314", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3140", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3141", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3142", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3143", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3144", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3145", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3146", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3147", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3148", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3149", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf315", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3150", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3151", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3152", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3153", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3154", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3155", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3156", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3157", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3158", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3159", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf316", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3160", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3161", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3162", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3163", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3164", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3165", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3166", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3167", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3168", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3169", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf317", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3170", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3171", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3172", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3173", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3174", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3175", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3176", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3177", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3178", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3179", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf318", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3180", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3181", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3182", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3183", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3184", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3185", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3186", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3187", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3188", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3189", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf319", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3190", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3191", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3192", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3193", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3194", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3195", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3196", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3197", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3198", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3199", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf32", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf320", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3200", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3201", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3202", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3203", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3204", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3205", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3206", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3207", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3208", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3209", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf321", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3210", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3211", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3212", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3213", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3214", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3215", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3216", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3217", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3218", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3219", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf322", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3220", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3221", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3222", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3223", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3224", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3225", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3226", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3227", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3228", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3229", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf323", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3230", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3231", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3232", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3233", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3234", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3235", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3236", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3237", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3238", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3239", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf324", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3240", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3241", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3242", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3243", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3244", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3245", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3246", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3247", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3248", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3249", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf325", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3250", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3251", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3252", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3253", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3254", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3255", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3256", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3257", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3258", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3259", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf326", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3260", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3261", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3262", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3263", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3264", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3265", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3266", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3267", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3268", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3269", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf327", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3270", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3271", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3272", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3273", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3274", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3275", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3276", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3277", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3278", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3279", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf328", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3280", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3281", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3282", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3283", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3284", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3285", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3286", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3287", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3288", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3289", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf329", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3290", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3291", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3292", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3293", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3294", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3295", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3296", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3297", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3298", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3299", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf33", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf330", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3300", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3301", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3302", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3303", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3304", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3305", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3306", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3307", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3308", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3309", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf331", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3310", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3311", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3312", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3313", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3314", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3315", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3316", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3317", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3318", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3319", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf332", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3320", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3321", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3322", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3323", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3324", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3325", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3326", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3327", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3328", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3329", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf333", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3330", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3331", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3332", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3333", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3334", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3335", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3336", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3337", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3338", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3339", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf334", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3340", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3341", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3342", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3343", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3344", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3345", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3346", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3347", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3348", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3349", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf335", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3350", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3351", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3352", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3353", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3354", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3355", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3356", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3357", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3358", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3359", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf336", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3360", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3361", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3362", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3363", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3364", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3365", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3366", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3367", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3368", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3369", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf337", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3370", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3371", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3372", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3373", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3374", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3375", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3376", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3377", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3378", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3379", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf338", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3380", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3381", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3382", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3383", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3384", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3385", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3386", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3387", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3388", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3389", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf339", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3390", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3391", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3392", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3393", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3394", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3395", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3396", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3397", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3398", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3399", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf34", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf340", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3400", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3401", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3402", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3403", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3404", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3405", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3406", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3407", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3408", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3409", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf341", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3410", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3411", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3412", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3413", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3414", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3415", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3416", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3417", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3418", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3419", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf342", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3420", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3421", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3422", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3423", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3424", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3425", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3426", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3427", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3428", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3429", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf343", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3430", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3431", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3432", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3433", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3434", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3435", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3436", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3437", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3438", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3439", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf344", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3440", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3441", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3442", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3443", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3444", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3445", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3446", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3447", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3448", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3449", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf345", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3450", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3451", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3452", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3453", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3454", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3455", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3456", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3457", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3458", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3459", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf346", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3460", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3461", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3462", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3463", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3464", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3465", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3466", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3467", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3468", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3469", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf347", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3470", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3471", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3472", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3473", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3474", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3475", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3476", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3477", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3478", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3479", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf348", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3480", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3481", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3482", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3483", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3484", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3485", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3486", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3487", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3488", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3489", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf349", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3490", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3491", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3492", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3493", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3494", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3495", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3496", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3497", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3498", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3499", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf35", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf350", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3500", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3501", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3502", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3503", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3504", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3505", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3506", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3507", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3508", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3509", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf351", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3510", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3511", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3512", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3513", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3514", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3515", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3516", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3517", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3518", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3519", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf352", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3520", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3521", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3522", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3523", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3524", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3525", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3526", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3527", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3528", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3529", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf353", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3530", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3531", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3532", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3533", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3534", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3535", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3536", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3537", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3538", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3539", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf354", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3540", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3541", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3542", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3543", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3544", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3545", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3546", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3547", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3548", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3549", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf355", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3550", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3551", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3552", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3553", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3554", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3555", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3556", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3557", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3558", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3559", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf356", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3560", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3561", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3562", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3563", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3564", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3565", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3566", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3567", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3568", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3569", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf357", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3570", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3571", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3572", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3573", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3574", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3575", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3576", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3577", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3578", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3579", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf358", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3580", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3581", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3582", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3583", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3584", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3585", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3586", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3587", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3588", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3589", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf359", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3590", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3591", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3592", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3593", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3594", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3595", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3596", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3597", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3598", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3599", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf36", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf360", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3600", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3601", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3602", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3603", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3604", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3605", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3606", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3607", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3608", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3609", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf361", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3610", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3611", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3612", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3613", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3614", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3615", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3616", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3617", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3618", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3619", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf362", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3620", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3621", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3622", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3623", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3624", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3625", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3626", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3627", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3628", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3629", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf363", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3630", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3631", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3632", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3633", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3634", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3635", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3636", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3637", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3638", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3639", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf364", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3640", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3641", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3642", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3643", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3644", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3645", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3646", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3647", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3648", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3649", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf365", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3650", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3651", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3652", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3653", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3654", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3655", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3656", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3657", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3658", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3659", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf366", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3660", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3661", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3662", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3663", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3664", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3665", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3666", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3667", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3668", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3669", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf367", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3670", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3671", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3672", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3673", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3674", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3675", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3676", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3677", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3678", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3679", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf368", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3680", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3681", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3682", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3683", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3684", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3685", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3686", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3687", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3688", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3689", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf369", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3690", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3691", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3692", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3693", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3694", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3695", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3696", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3697", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3698", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3699", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf37", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf370", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3700", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3701", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3702", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3703", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3704", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3705", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3706", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3707", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3708", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3709", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf371", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3710", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3711", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3712", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3713", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3714", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3715", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3716", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3717", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3718", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3719", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf372", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3720", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3721", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3722", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3723", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3724", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3725", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3726", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3727", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3728", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3729", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf373", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3730", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3731", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3732", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3733", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3734", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3735", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3736", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3737", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3738", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3739", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf374", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3740", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3741", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3742", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3743", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3744", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3745", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3746", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3747", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3748", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3749", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf375", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3750", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3751", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3752", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3753", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3754", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3755", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3756", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3757", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3758", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3759", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf376", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3760", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3761", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3762", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3763", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3764", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3765", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3766", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3767", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3768", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3769", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf377", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3770", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3771", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3772", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3773", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3774", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3775", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3776", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3777", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3778", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3779", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf378", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3780", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3781", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3782", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3783", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3784", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3785", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3786", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3787", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3788", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3789", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf379", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3790", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3791", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3792", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3793", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3794", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3795", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3796", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3797", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3798", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3799", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf38", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf380", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3800", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3801", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3802", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3803", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3804", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3805", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3806", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3807", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3808", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3809", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf381", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3810", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3811", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3812", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3813", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3814", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3815", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3816", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3817", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3818", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3819", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf382", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3820", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3821", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3822", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3823", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3824", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3825", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3826", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3827", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3828", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3829", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf383", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3830", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3831", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3832", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3833", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3834", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3835", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3836", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3837", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3838", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3839", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf384", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3840", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3841", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3842", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3843", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3844", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3845", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3846", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3847", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3848", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3849", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf385", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3850", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3851", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3852", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3853", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3854", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3855", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3856", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3857", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3858", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3859", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf386", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3860", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3861", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3862", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3863", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3864", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3865", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3866", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3867", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3868", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3869", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf387", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3870", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3871", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3872", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3873", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3874", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3875", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3876", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3877", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3878", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3879", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf388", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3880", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3881", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3882", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3883", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3884", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3885", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3886", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3887", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3888", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3889", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf389", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3890", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3891", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3892", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3893", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3894", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3895", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3896", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3897", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3898", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3899", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf39", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf390", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3900", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3901", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3902", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3903", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3904", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3905", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3906", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3907", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3908", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3909", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf391", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3910", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3911", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3912", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3913", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3914", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3915", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3916", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3917", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3918", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3919", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf392", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3920", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3921", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3922", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3923", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3924", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3925", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3926", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3927", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3928", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3929", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf393", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3930", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3931", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3932", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3933", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3934", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3935", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3936", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3937", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3938", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3939", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf394", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3940", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3941", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3942", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3943", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3944", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3945", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3946", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3947", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3948", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3949", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf395", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3950", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3951", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3952", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3953", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3954", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3955", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3956", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3957", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3958", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3959", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf396", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3960", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3961", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3962", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3963", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3964", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3965", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3966", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3967", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3968", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3969", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf397", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3970", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3971", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3972", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3973", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3974", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3975", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3976", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3977", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3978", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3979", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf398", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3980", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3981", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3982", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3983", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3984", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3985", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3986", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3987", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3988", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3989", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf399", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3990", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3991", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3992", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3993", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3994", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3995", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3996", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3997", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3998", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf3999", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf40", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf400", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4000", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4001", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4002", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4003", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4004", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4005", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4006", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4007", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4008", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4009", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf401", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4010", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4011", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4012", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4013", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4014", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4015", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4016", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4017", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4018", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4019", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf402", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4020", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4021", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4022", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4023", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4024", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4025", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4026", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4027", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4028", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4029", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf403", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4030", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4031", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4032", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4033", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4034", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4035", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4036", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4037", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4038", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4039", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf404", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4040", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4041", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4042", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4043", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4044", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4045", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4046", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4047", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4048", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4049", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf405", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4050", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4051", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4052", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4053", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4054", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4055", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4056", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4057", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4058", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4059", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf406", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4060", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4061", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4062", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4063", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4064", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4065", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4066", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4067", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4068", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4069", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf407", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4070", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4071", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4072", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4073", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4074", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4075", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4076", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4077", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4078", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4079", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf408", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4080", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4081", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4082", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4083", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4084", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4085", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4086", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4087", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4088", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4089", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf409", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4090", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4091", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4092", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4093", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf4094", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf41", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf410", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf411", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf412", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf413", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf414", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf415", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf416", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf417", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf418", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf419", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf42", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf420", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf421", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf422", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf423", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf424", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf425", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf426", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf427", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf428", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf429", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf43", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf430", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf431", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf432", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf433", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf434", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf435", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf436", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf437", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf438", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf439", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf44", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf440", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf441", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf442", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf443", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf444", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf445", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf446", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf447", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf448", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf449", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf45", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf450", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf451", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf452", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf453", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf454", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf455", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf456", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf457", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf458", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf459", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf46", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf460", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf461", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf462", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf463", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf464", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf465", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf466", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf467", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf468", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf469", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf47", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf470", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf471", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf472", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf473", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf474", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf475", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf476", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf477", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf478", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf479", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf48", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf480", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf481", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf482", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf483", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf484", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf485", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf486", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf487", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf488", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf489", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf49", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf490", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf491", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf492", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf493", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf494", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf495", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf496", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf497", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf498", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf499", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf5", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf50", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf500", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf501", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf502", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf503", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf504", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf505", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf506", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf507", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf508", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf509", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf51", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf510", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf511", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf512", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf513", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf514", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf515", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf516", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf517", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf518", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf519", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf52", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf520", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf521", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf522", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf523", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf524", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf525", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf526", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf527", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf528", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf529", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf53", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf530", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf531", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf532", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf533", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf534", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf535", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf536", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf537", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf538", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf539", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf54", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf540", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf541", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf542", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf543", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf544", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf545", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf546", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf547", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf548", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf549", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf55", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf550", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf551", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf552", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf553", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf554", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf555", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf556", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf557", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf558", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf559", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf56", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf560", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf561", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf562", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf563", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf564", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf565", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf566", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf567", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf568", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf569", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf57", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf570", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf571", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf572", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf573", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf574", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf575", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf576", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf577", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf578", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf579", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf58", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf580", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf581", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf582", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf583", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf584", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf585", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf586", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf587", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf588", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf589", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf59", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf590", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf591", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf592", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf593", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf594", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf595", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf596", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf597", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf598", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf599", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf6", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf60", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf600", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf601", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf602", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf603", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf604", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf605", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf606", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf607", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf608", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf609", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf61", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf610", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf611", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf612", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf613", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf614", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf615", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf616", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf617", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf618", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf619", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf62", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf620", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf621", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf622", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf623", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf624", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf625", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf626", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf627", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf628", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf629", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf63", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf630", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf631", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf632", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf633", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf634", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf635", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf636", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf637", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf638", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf639", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf64", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf640", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf641", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf642", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf643", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf644", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf645", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf646", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf647", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf648", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf649", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf65", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf650", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf651", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf652", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf653", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf654", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf655", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf656", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf657", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf658", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf659", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf66", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf660", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf661", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf662", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf663", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf664", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf665", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf666", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf667", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf668", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf669", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf67", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf670", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf671", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf672", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf673", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf674", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf675", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf676", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf677", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf678", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf679", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf68", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf680", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf681", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf682", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf683", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf684", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf685", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf686", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf687", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf688", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf689", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf69", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf690", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf691", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf692", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf693", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf694", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf695", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf696", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf697", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf698", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf699", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf7", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf70", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf700", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf701", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf702", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf703", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf704", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf705", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf706", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf707", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf708", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf709", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf71", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf710", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf711", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf712", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf713", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf714", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf715", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf716", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf717", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf718", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf719", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf72", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf720", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf721", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf722", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf723", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf724", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf725", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf726", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf727", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf728", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf729", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf73", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf730", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf731", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf732", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf733", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf734", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf735", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf736", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf737", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf738", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf739", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf74", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf740", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf741", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf742", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf743", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf744", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf745", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf746", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf747", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf748", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf749", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf75", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf750", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf751", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf752", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf753", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf754", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf755", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf756", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf757", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf758", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf759", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf76", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf760", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf761", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf762", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf763", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf764", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf765", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf766", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf767", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf768", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf769", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf77", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf770", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf771", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf772", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf773", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf774", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf775", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf776", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf777", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf778", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf779", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf78", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf780", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf781", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf782", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf783", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf784", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf785", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf786", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf787", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf788", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf789", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf79", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf790", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf791", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf792", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf793", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf794", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf795", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf796", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf797", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf798", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf799", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf8", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf80", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf800", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf801", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf802", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf803", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf804", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf805", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf806", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf807", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf808", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf809", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf81", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf810", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf811", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf812", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf813", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf814", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf815", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf816", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf817", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf818", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf819", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf82", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf820", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf821", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf822", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf823", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf824", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf825", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf826", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf827", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf828", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf829", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf83", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf830", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf831", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf832", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf833", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf834", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf835", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf836", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf837", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf838", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf839", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf84", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf840", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf841", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf842", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf843", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf844", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf845", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf846", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf847", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf848", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf849", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf85", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf850", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf851", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf852", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf853", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf854", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf855", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf856", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf857", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf858", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf859", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf86", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf860", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf861", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf862", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf863", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf864", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf865", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf866", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf867", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf868", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf869", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf87", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf870", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf871", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf872", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf873", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf874", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf875", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf876", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf877", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf878", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf879", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf88", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf880", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf881", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf882", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf883", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf884", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf885", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf886", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf887", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf888", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf889", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf89", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf890", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf891", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf892", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf893", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf894", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf895", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf896", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf897", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf898", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf899", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf9", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf90", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf900", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf901", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf902", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf903", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf904", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf905", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf906", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf907", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf908", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf909", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf91", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf910", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf911", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf912", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf913", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf914", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf915", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf916", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf917", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf918", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf919", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf92", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf920", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf921", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf922", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf923", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf924", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf925", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf926", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf927", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf928", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf929", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf93", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf930", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf931", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf932", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf933", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf934", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf935", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf936", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf937", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf938", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf939", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf94", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf940", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf941", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf942", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf943", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf944", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf945", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf946", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf947", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf948", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf949", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf95", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf950", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf951", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf952", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf953", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf954", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf955", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf956", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf957", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf958", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf959", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf96", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf960", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf961", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf962", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf963", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf964", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf965", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf966", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf967", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf968", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf969", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf97", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf970", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf971", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf972", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf973", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf974", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf975", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf976", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf977", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf978", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf979", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf98", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf980", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf981", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf982", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf983", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf984", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf985", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf986", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf987", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf988", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf989", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf99", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf990", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf991", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf992", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf993", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf994", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf995", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf996", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf997", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf998", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "ipvrf999", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf10", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf100", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1000", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1001", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1002", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1003", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1004", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1005", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1006", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1007", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1008", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1009", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf101", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1010", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1011", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1012", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1013", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1014", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1015", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1016", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1017", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1018", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1019", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf102", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1020", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1021", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1022", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1023", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1024", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1025", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1026", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1027", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1028", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1029", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf103", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1030", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1031", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1032", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1033", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1034", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1035", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1036", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1037", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1038", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1039", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf104", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1040", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1041", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1042", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1043", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1044", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1045", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1046", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1047", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1048", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1049", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf105", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1050", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1051", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1052", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1053", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1054", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1055", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1056", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1057", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1058", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1059", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf106", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1060", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1061", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1062", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1063", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1064", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1065", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1066", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1067", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1068", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1069", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf107", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1070", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1071", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1072", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1073", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1074", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1075", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1076", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1077", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1078", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1079", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf108", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1080", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1081", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1082", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1083", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1084", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1085", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1086", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1087", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1088", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1089", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf109", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1090", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1091", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1092", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1093", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1094", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1095", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1096", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1097", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1098", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1099", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf11", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf110", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1100", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1101", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1102", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1103", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1104", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1105", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1106", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1107", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1108", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1109", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf111", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1110", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1111", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1112", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1113", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1114", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1115", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1116", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1117", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1118", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1119", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf112", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1120", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1121", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1122", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1123", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1124", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1125", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1126", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1127", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1128", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1129", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf113", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1130", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1131", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1132", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1133", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1134", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1135", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1136", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1137", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1138", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1139", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf114", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1140", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1141", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1142", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1143", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1144", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1145", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1146", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1147", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1148", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1149", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf115", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1150", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1151", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1152", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1153", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1154", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1155", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1156", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1157", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1158", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1159", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf116", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1160", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1161", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1162", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1163", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1164", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1165", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1166", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1167", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1168", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1169", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf117", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1170", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1171", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1172", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1173", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1174", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1175", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1176", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1177", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1178", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1179", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf118", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1180", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1181", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1182", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1183", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1184", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1185", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1186", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1187", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1188", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1189", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf119", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1190", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1191", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1192", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1193", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1194", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1195", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1196", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1197", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1198", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1199", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf12", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf120", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1200", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1201", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1202", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1203", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1204", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1205", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1206", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1207", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1208", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1209", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf121", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1210", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1211", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1212", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1213", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1214", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1215", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1216", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1217", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1218", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1219", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf122", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1220", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1221", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1222", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1223", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1224", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1225", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1226", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1227", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1228", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1229", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf123", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1230", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1231", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1232", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1233", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1234", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1235", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1236", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1237", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1238", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1239", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf124", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1240", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1241", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1242", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1243", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1244", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1245", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1246", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1247", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1248", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1249", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf125", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1250", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1251", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1252", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1253", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1254", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1255", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1256", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1257", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1258", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1259", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf126", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1260", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1261", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1262", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1263", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1264", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1265", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1266", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1267", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1268", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1269", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf127", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1270", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1271", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1272", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1273", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1274", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1275", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1276", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1277", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1278", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1279", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf128", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1280", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1281", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1282", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1283", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1284", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1285", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1286", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1287", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1288", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1289", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf129", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1290", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1291", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1292", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1293", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1294", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1295", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1296", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1297", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1298", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1299", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf13", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf130", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1300", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1301", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1302", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1303", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1304", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1305", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1306", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1307", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1308", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1309", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf131", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1310", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1311", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1312", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1313", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1314", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1315", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1316", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1317", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1318", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1319", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf132", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1320", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1321", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1322", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1323", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1324", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1325", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1326", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1327", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1328", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1329", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf133", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1330", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1331", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1332", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1333", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1334", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1335", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1336", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1337", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1338", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1339", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf134", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1340", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1341", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1342", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1343", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1344", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1345", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1346", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1347", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1348", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1349", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf135", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1350", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1351", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1352", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1353", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1354", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1355", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1356", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1357", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1358", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1359", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf136", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1360", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1361", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1362", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1363", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1364", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1365", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1366", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1367", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1368", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1369", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf137", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1370", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1371", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1372", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1373", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1374", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1375", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1376", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1377", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1378", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1379", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf138", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1380", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1381", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1382", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1383", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1384", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1385", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1386", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1387", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1388", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1389", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf139", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1390", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1391", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1392", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1393", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1394", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1395", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1396", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1397", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1398", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1399", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf14", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf140", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1400", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1401", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1402", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1403", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1404", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1405", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1406", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1407", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1408", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1409", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf141", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1410", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1411", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1412", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1413", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1414", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1415", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1416", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1417", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1418", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1419", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf142", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1420", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1421", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1422", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1423", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1424", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1425", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1426", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1427", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1428", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1429", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf143", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1430", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1431", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1432", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1433", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1434", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1435", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1436", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1437", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1438", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1439", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf144", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1440", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1441", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1442", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1443", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1444", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1445", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1446", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1447", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1448", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1449", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf145", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1450", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1451", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1452", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1453", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1454", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1455", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1456", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1457", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1458", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1459", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf146", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1460", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1461", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1462", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1463", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1464", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1465", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1466", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1467", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1468", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1469", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf147", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1470", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1471", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1472", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1473", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1474", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1475", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1476", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1477", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1478", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1479", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf148", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1480", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1481", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1482", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1483", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1484", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1485", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1486", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1487", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1488", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1489", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf149", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1490", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1491", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1492", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1493", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1494", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1495", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1496", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1497", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1498", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1499", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf15", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf150", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1500", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1501", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1502", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1503", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1504", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1505", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1506", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1507", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1508", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1509", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf151", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1510", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1511", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1512", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1513", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1514", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1515", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1516", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1517", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1518", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1519", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf152", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1520", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1521", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1522", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1523", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1524", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1525", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1526", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1527", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1528", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1529", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf153", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1530", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1531", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1532", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1533", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1534", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1535", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1536", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1537", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1538", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1539", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf154", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1540", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1541", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1542", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1543", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1544", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1545", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1546", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1547", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1548", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1549", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf155", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1550", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1551", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1552", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1553", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1554", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1555", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1556", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1557", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1558", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1559", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf156", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1560", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1561", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1562", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1563", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1564", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1565", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1566", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1567", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1568", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1569", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf157", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1570", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1571", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1572", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1573", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1574", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1575", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1576", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1577", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1578", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1579", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf158", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1580", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1581", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1582", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1583", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1584", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1585", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1586", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1587", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1588", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1589", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf159", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1590", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1591", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1592", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1593", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1594", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1595", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1596", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1597", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1598", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1599", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf16", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf160", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1600", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1601", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1602", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1603", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1604", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1605", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1606", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1607", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1608", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1609", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf161", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1610", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1611", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1612", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1613", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1614", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1615", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1616", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1617", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1618", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1619", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf162", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1620", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1621", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1622", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1623", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1624", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1625", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1626", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1627", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1628", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1629", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf163", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1630", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1631", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1632", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1633", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1634", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1635", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1636", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1637", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1638", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1639", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf164", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1640", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1641", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1642", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1643", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1644", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1645", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1646", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1647", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1648", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1649", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf165", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1650", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1651", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1652", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1653", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1654", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1655", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1656", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1657", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1658", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1659", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf166", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1660", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1661", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1662", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1663", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1664", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1665", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1666", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1667", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1668", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1669", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf167", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1670", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1671", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1672", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1673", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1674", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1675", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1676", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1677", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1678", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1679", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf168", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1680", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1681", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1682", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1683", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1684", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1685", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1686", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1687", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1688", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1689", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf169", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1690", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1691", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1692", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1693", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1694", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1695", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1696", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1697", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1698", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1699", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf17", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf170", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1700", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1701", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1702", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1703", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1704", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1705", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1706", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1707", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1708", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1709", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf171", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1710", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1711", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1712", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1713", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1714", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1715", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1716", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1717", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1718", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1719", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf172", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1720", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1721", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1722", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1723", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1724", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1725", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1726", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1727", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1728", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1729", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf173", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1730", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1731", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1732", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1733", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1734", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1735", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1736", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1737", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1738", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1739", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf174", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1740", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1741", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1742", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1743", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1744", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1745", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1746", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1747", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1748", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1749", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf175", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1750", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1751", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1752", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1753", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1754", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1755", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1756", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1757", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1758", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1759", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf176", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1760", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1761", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1762", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1763", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1764", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1765", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1766", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1767", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1768", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1769", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf177", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1770", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1771", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1772", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1773", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1774", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1775", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1776", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1777", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1778", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1779", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf178", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1780", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1781", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1782", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1783", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1784", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1785", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1786", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1787", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1788", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1789", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf179", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1790", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1791", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1792", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1793", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1794", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1795", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1796", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1797", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1798", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1799", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf18", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf180", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1800", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1801", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1802", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1803", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1804", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1805", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1806", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1807", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1808", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1809", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf181", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1810", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1811", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1812", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1813", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1814", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1815", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1816", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1817", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1818", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1819", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf182", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1820", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1821", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1822", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1823", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1824", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1825", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1826", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1827", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1828", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1829", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf183", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1830", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1831", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1832", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1833", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1834", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1835", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1836", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1837", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1838", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1839", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf184", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1840", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1841", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1842", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1843", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1844", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1845", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1846", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1847", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1848", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1849", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf185", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1850", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1851", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1852", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1853", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1854", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1855", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1856", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1857", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1858", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1859", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf186", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1860", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1861", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1862", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1863", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1864", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1865", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1866", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1867", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1868", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1869", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf187", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1870", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1871", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1872", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1873", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1874", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1875", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1876", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1877", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1878", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1879", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf188", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1880", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1881", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1882", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1883", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1884", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1885", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1886", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1887", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1888", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1889", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf189", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1890", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1891", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1892", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1893", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1894", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1895", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1896", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1897", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1898", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1899", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf19", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf190", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1900", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1901", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1902", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1903", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1904", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1905", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1906", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1907", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1908", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1909", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf191", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1910", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1911", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1912", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1913", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1914", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1915", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1916", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1917", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1918", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1919", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf192", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1920", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1921", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1922", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1923", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1924", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1925", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1926", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1927", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1928", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1929", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf193", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1930", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1931", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1932", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1933", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1934", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1935", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1936", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1937", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1938", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1939", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf194", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1940", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1941", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1942", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1943", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1944", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1945", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1946", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1947", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1948", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1949", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf195", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1950", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1951", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1952", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1953", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1954", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1955", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1956", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1957", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1958", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1959", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf196", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1960", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1961", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1962", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1963", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1964", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1965", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1966", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1967", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1968", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1969", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf197", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1970", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1971", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1972", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1973", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1974", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1975", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1976", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1977", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1978", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1979", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf198", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1980", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1981", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1982", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1983", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1984", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1985", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1986", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1987", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1988", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1989", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf199", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1990", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1991", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1992", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1993", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1994", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1995", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1996", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1997", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1998", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf1999", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf20", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf200", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2000", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2001", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2002", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2003", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2004", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2005", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2006", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2007", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2008", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2009", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf201", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2010", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2011", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2012", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2013", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2014", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2015", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2016", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2017", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2018", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2019", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf202", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2020", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2021", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2022", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2023", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2024", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2025", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2026", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2027", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2028", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2029", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf203", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2030", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2031", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2032", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2033", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2034", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2035", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2036", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2037", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2038", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2039", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf204", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2040", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2041", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2042", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2043", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2044", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2045", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2046", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2047", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2048", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2049", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf205", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2050", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2051", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2052", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2053", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2054", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2055", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2056", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2057", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2058", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2059", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf206", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2060", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2061", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2062", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2063", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2064", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2065", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2066", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2067", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2068", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2069", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf207", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2070", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2071", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2072", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2073", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2074", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2075", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2076", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2077", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2078", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2079", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf208", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2080", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2081", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2082", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2083", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2084", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2085", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2086", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2087", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2088", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2089", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf209", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2090", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2091", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2092", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2093", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2094", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2095", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2096", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2097", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2098", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2099", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf21", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf210", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2100", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2101", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2102", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2103", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2104", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2105", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2106", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2107", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2108", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2109", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf211", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2110", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2111", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2112", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2113", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2114", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2115", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2116", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2117", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2118", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2119", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf212", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2120", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2121", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2122", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2123", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2124", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2125", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2126", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2127", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2128", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2129", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf213", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2130", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2131", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2132", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2133", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2134", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2135", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2136", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2137", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2138", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2139", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf214", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2140", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2141", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2142", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2143", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2144", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2145", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2146", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2147", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2148", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2149", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf215", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2150", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2151", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2152", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2153", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2154", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2155", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2156", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2157", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2158", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2159", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf216", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2160", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2161", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2162", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2163", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2164", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2165", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2166", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2167", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2168", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2169", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf217", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2170", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2171", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2172", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2173", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2174", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2175", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2176", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2177", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2178", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2179", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf218", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2180", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2181", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2182", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2183", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2184", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2185", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2186", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2187", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2188", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2189", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf219", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2190", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2191", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2192", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2193", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2194", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2195", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2196", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2197", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2198", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2199", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf22", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf220", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2200", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2201", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2202", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2203", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2204", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2205", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2206", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2207", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2208", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2209", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf221", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2210", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2211", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2212", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2213", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2214", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2215", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2216", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2217", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2218", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2219", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf222", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2220", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2221", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2222", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2223", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2224", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2225", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2226", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2227", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2228", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2229", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf223", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2230", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2231", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2232", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2233", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2234", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2235", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2236", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2237", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2238", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2239", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf224", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2240", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2241", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2242", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2243", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2244", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2245", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2246", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2247", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2248", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2249", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf225", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2250", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2251", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2252", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2253", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2254", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2255", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2256", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2257", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2258", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2259", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf226", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2260", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2261", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2262", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2263", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2264", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2265", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2266", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2267", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2268", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2269", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf227", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2270", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2271", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2272", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2273", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2274", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2275", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2276", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2277", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2278", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2279", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf228", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2280", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2281", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2282", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2283", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2284", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2285", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2286", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2287", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2288", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2289", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf229", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2290", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2291", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2292", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2293", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2294", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2295", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2296", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2297", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2298", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2299", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf23", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf230", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2300", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2301", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2302", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2303", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2304", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2305", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2306", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2307", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2308", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2309", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf231", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2310", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2311", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2312", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2313", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2314", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2315", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2316", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2317", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2318", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2319", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf232", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2320", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2321", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2322", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2323", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2324", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2325", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2326", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2327", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2328", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2329", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf233", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2330", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2331", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2332", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2333", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2334", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2335", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2336", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2337", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2338", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2339", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf234", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2340", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2341", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2342", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2343", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2344", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2345", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2346", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2347", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2348", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2349", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf235", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2350", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2351", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2352", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2353", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2354", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2355", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2356", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2357", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2358", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2359", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf236", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2360", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2361", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2362", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2363", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2364", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2365", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2366", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2367", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2368", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2369", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf237", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2370", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2371", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2372", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2373", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2374", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2375", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2376", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2377", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2378", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2379", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf238", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2380", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2381", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2382", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2383", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2384", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2385", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2386", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2387", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2388", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2389", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf239", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2390", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2391", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2392", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2393", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2394", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2395", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2396", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2397", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2398", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2399", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf24", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf240", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2400", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2401", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2402", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2403", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2404", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2405", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2406", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2407", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2408", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2409", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf241", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2410", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2411", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2412", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2413", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2414", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2415", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2416", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2417", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2418", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2419", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf242", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2420", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2421", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2422", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2423", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2424", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2425", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2426", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2427", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2428", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2429", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf243", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2430", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2431", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2432", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2433", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2434", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2435", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2436", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2437", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2438", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2439", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf244", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2440", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2441", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2442", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2443", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2444", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2445", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2446", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2447", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2448", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2449", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf245", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2450", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2451", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2452", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2453", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2454", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2455", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2456", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2457", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2458", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2459", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf246", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2460", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2461", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2462", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2463", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2464", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2465", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2466", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2467", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2468", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2469", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf247", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2470", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2471", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2472", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2473", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2474", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2475", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2476", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2477", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2478", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2479", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf248", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2480", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2481", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2482", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2483", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2484", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2485", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2486", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2487", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2488", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2489", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf249", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2490", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2491", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2492", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2493", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2494", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2495", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2496", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2497", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2498", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2499", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf25", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf250", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2500", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2501", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2502", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2503", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2504", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2505", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2506", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2507", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2508", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2509", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf251", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2510", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2511", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2512", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2513", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2514", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2515", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2516", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2517", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2518", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2519", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf252", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2520", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2521", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2522", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2523", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2524", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2525", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2526", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2527", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2528", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2529", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf253", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2530", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2531", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2532", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2533", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2534", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2535", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2536", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2537", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2538", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2539", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf254", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2540", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2541", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2542", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2543", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2544", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2545", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2546", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2547", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2548", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2549", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf255", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2550", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2551", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2552", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2553", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2554", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2555", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2556", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2557", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2558", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2559", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf256", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2560", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2561", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2562", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2563", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2564", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2565", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2566", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2567", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2568", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2569", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf257", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2570", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2571", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2572", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2573", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2574", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2575", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2576", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2577", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2578", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2579", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf258", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2580", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2581", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2582", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2583", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2584", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2585", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2586", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2587", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2588", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2589", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf259", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2590", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2591", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2592", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2593", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2594", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2595", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2596", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2597", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2598", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2599", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf26", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf260", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2600", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2601", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2602", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2603", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2604", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2605", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2606", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2607", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2608", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2609", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf261", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2610", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2611", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2612", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2613", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2614", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2615", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2616", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2617", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2618", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2619", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf262", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2620", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2621", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2622", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2623", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2624", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2625", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2626", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2627", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2628", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2629", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf263", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2630", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2631", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2632", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2633", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2634", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2635", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2636", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2637", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2638", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2639", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf264", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2640", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2641", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2642", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2643", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2644", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2645", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2646", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2647", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2648", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2649", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf265", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2650", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2651", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2652", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2653", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2654", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2655", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2656", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2657", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2658", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2659", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf266", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2660", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2661", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2662", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2663", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2664", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2665", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2666", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2667", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2668", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2669", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf267", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2670", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2671", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2672", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2673", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2674", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2675", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2676", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2677", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2678", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2679", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf268", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2680", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2681", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2682", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2683", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2684", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2685", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2686", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2687", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2688", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2689", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf269", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2690", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2691", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2692", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2693", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2694", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2695", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2696", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2697", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2698", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2699", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf27", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf270", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2700", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2701", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2702", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2703", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2704", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2705", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2706", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2707", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2708", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2709", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf271", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2710", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2711", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2712", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2713", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2714", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2715", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2716", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2717", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2718", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2719", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf272", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2720", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2721", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2722", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2723", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2724", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2725", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2726", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2727", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2728", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2729", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf273", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2730", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2731", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2732", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2733", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2734", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2735", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2736", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2737", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2738", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2739", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf274", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2740", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2741", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2742", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2743", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2744", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2745", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2746", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2747", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2748", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2749", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf275", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2750", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2751", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2752", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2753", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2754", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2755", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2756", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2757", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2758", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2759", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf276", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2760", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2761", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2762", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2763", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2764", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2765", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2766", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2767", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2768", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2769", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf277", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2770", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2771", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2772", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2773", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2774", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2775", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2776", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2777", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2778", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2779", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf278", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2780", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2781", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2782", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2783", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2784", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2785", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2786", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2787", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2788", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2789", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf279", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2790", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2791", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2792", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2793", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2794", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2795", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2796", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2797", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2798", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2799", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf28", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf280", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2800", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2801", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2802", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2803", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2804", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2805", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2806", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2807", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2808", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2809", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf281", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2810", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2811", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2812", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2813", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2814", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2815", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2816", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2817", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2818", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2819", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf282", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2820", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2821", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2822", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2823", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2824", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2825", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2826", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2827", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2828", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2829", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf283", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2830", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2831", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2832", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2833", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2834", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2835", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2836", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2837", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2838", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2839", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf284", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2840", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2841", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2842", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2843", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2844", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2845", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2846", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2847", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2848", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2849", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf285", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2850", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2851", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2852", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2853", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2854", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2855", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2856", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2857", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2858", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2859", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf286", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2860", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2861", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2862", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2863", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2864", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2865", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2866", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2867", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2868", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2869", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf287", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2870", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2871", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2872", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2873", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2874", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2875", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2876", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2877", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2878", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2879", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf288", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2880", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2881", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2882", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2883", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2884", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2885", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2886", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2887", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2888", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2889", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf289", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2890", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2891", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2892", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2893", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2894", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2895", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2896", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2897", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2898", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2899", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf29", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf290", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2900", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2901", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2902", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2903", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2904", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2905", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2906", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2907", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2908", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2909", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf291", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2910", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2911", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2912", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2913", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2914", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2915", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2916", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2917", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2918", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2919", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf292", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2920", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2921", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2922", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2923", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2924", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2925", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2926", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2927", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2928", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2929", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf293", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2930", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2931", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2932", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2933", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2934", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2935", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2936", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2937", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2938", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2939", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf294", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2940", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2941", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2942", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2943", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2944", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2945", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2946", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2947", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2948", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2949", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf295", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2950", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2951", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2952", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2953", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2954", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2955", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2956", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2957", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2958", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2959", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf296", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2960", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2961", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2962", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2963", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2964", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2965", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2966", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2967", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2968", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2969", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf297", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2970", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2971", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2972", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2973", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2974", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2975", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2976", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2977", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2978", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2979", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf298", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2980", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2981", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2982", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2983", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2984", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2985", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2986", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2987", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2988", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2989", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf299", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2990", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2991", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2992", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2993", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2994", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2995", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2996", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2997", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2998", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf2999", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf30", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf300", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3000", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3001", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3002", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3003", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3004", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3005", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3006", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3007", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3008", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3009", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf301", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3010", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3011", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3012", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3013", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3014", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3015", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3016", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3017", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3018", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3019", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf302", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3020", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3021", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3022", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3023", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3024", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3025", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3026", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3027", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3028", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3029", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf303", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3030", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3031", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3032", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3033", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3034", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3035", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3036", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3037", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3038", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3039", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf304", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3040", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3041", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3042", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3043", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3044", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3045", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3046", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3047", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3048", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3049", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf305", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3050", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3051", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3052", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3053", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3054", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3055", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3056", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3057", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3058", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3059", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf306", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3060", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3061", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3062", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3063", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3064", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3065", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3066", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3067", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3068", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3069", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf307", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3070", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3071", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3072", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3073", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3074", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3075", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3076", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3077", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3078", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3079", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf308", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3080", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3081", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3082", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3083", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3084", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3085", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3086", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3087", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3088", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3089", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf309", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3090", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3091", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3092", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3093", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3094", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3095", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3096", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3097", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3098", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3099", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf31", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf310", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3100", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3101", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3102", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3103", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3104", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3105", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3106", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3107", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3108", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3109", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf311", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3110", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3111", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3112", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3113", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3114", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3115", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3116", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3117", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3118", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3119", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf312", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3120", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3121", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3122", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3123", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3124", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3125", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3126", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3127", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3128", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3129", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf313", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3130", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3131", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3132", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3133", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3134", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3135", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3136", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3137", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3138", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3139", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf314", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3140", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3141", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3142", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3143", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3144", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3145", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3146", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3147", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3148", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3149", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf315", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3150", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3151", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3152", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3153", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3154", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3155", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3156", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3157", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3158", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3159", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf316", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3160", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3161", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3162", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3163", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3164", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3165", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3166", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3167", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3168", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3169", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf317", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3170", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3171", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3172", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3173", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3174", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3175", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3176", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3177", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3178", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3179", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf318", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3180", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3181", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3182", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3183", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3184", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3185", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3186", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3187", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3188", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3189", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf319", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3190", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3191", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3192", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3193", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3194", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3195", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3196", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3197", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3198", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3199", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf32", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf320", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3200", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3201", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3202", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3203", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3204", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3205", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3206", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3207", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3208", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3209", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf321", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3210", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3211", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3212", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3213", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3214", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3215", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3216", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3217", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3218", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3219", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf322", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3220", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3221", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3222", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3223", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3224", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3225", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3226", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3227", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3228", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3229", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf323", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3230", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3231", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3232", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3233", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3234", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3235", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3236", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3237", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3238", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3239", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf324", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3240", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3241", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3242", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3243", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3244", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3245", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3246", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3247", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3248", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3249", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf325", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3250", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3251", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3252", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3253", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3254", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3255", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3256", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3257", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3258", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3259", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf326", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3260", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3261", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3262", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3263", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3264", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3265", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3266", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3267", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3268", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3269", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf327", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3270", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3271", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3272", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3273", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3274", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3275", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3276", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3277", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3278", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3279", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf328", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3280", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3281", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3282", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3283", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3284", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3285", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3286", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3287", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3288", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3289", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf329", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3290", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3291", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3292", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3293", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3294", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3295", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3296", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3297", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3298", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3299", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf33", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf330", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3300", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3301", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3302", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3303", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3304", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3305", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3306", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3307", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3308", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3309", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf331", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3310", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3311", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3312", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3313", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3314", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3315", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3316", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3317", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3318", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3319", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf332", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3320", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3321", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3322", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3323", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3324", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3325", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3326", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3327", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3328", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3329", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf333", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3330", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3331", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3332", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3333", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3334", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3335", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3336", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3337", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3338", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3339", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf334", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3340", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3341", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3342", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3343", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3344", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3345", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3346", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3347", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3348", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3349", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf335", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3350", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3351", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3352", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3353", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3354", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3355", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3356", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3357", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3358", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3359", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf336", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3360", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3361", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3362", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3363", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3364", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3365", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3366", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3367", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3368", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3369", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf337", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3370", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3371", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3372", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3373", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3374", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3375", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3376", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3377", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3378", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3379", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf338", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3380", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3381", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3382", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3383", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3384", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3385", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3386", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3387", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3388", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3389", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf339", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3390", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3391", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3392", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3393", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3394", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3395", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3396", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3397", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3398", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3399", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf34", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf340", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3400", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3401", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3402", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3403", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3404", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3405", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3406", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3407", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3408", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3409", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf341", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3410", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3411", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3412", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3413", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3414", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3415", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3416", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3417", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3418", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3419", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf342", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3420", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3421", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3422", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3423", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3424", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3425", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3426", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3427", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3428", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3429", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf343", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3430", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3431", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3432", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3433", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3434", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3435", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3436", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3437", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3438", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3439", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf344", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3440", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3441", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3442", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3443", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3444", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3445", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3446", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3447", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3448", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3449", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf345", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3450", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3451", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3452", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3453", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3454", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3455", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3456", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3457", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3458", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3459", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf346", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3460", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3461", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3462", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3463", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3464", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3465", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3466", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3467", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3468", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3469", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf347", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3470", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3471", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3472", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3473", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3474", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3475", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3476", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3477", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3478", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3479", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf348", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3480", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3481", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3482", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3483", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3484", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3485", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3486", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3487", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3488", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3489", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf349", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3490", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3491", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3492", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3493", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3494", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3495", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3496", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3497", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3498", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3499", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf35", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf350", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3500", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3501", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3502", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3503", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3504", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3505", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3506", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3507", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3508", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3509", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf351", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3510", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3511", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3512", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3513", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3514", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3515", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3516", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3517", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3518", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3519", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf352", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3520", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3521", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3522", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3523", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3524", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3525", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3526", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3527", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3528", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3529", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf353", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3530", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3531", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3532", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3533", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3534", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3535", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3536", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3537", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3538", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3539", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf354", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3540", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3541", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3542", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3543", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3544", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3545", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3546", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3547", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3548", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3549", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf355", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3550", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3551", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3552", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3553", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3554", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3555", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3556", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3557", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3558", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3559", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf356", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3560", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3561", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3562", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3563", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3564", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3565", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3566", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3567", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3568", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3569", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf357", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3570", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3571", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3572", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3573", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3574", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3575", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3576", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3577", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3578", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3579", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf358", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3580", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3581", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3582", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3583", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3584", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3585", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3586", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3587", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3588", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3589", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf359", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3590", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3591", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3592", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3593", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3594", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3595", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3596", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3597", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3598", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3599", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf36", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf360", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3600", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3601", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3602", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3603", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3604", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3605", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3606", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3607", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3608", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3609", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf361", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3610", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3611", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3612", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3613", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3614", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3615", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3616", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3617", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3618", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3619", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf362", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3620", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3621", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3622", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3623", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3624", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3625", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3626", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3627", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3628", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3629", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf363", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3630", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3631", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3632", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3633", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3634", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3635", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3636", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3637", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3638", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3639", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf364", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3640", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3641", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3642", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3643", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3644", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3645", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3646", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3647", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3648", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3649", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf365", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3650", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3651", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3652", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3653", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3654", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3655", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3656", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3657", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3658", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3659", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf366", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3660", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3661", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3662", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3663", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3664", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3665", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3666", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3667", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3668", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3669", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf367", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3670", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3671", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3672", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3673", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3674", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3675", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3676", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3677", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3678", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3679", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf368", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3680", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3681", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3682", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3683", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3684", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3685", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3686", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3687", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3688", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3689", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf369", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3690", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3691", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3692", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3693", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3694", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3695", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3696", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3697", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3698", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3699", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf37", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf370", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3700", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3701", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3702", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3703", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3704", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3705", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3706", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3707", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3708", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3709", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf371", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3710", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3711", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3712", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3713", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3714", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3715", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3716", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3717", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3718", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3719", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf372", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3720", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3721", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3722", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3723", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3724", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3725", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3726", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3727", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3728", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3729", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf373", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3730", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3731", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3732", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3733", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3734", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3735", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3736", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3737", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3738", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3739", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf374", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3740", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3741", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3742", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3743", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3744", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3745", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3746", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3747", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3748", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3749", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf375", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3750", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3751", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3752", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3753", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3754", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3755", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3756", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3757", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3758", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3759", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf376", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3760", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3761", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3762", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3763", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3764", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3765", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3766", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3767", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3768", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3769", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf377", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3770", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3771", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3772", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3773", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3774", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3775", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3776", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3777", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3778", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3779", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf378", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3780", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3781", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3782", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3783", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3784", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3785", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3786", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3787", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3788", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3789", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf379", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3790", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3791", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3792", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3793", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3794", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3795", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3796", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3797", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3798", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3799", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf38", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf380", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3800", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3801", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3802", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3803", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3804", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3805", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3806", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3807", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3808", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3809", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf381", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3810", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3811", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3812", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3813", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3814", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3815", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3816", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3817", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3818", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3819", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf382", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3820", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3821", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3822", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3823", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3824", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3825", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3826", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3827", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3828", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3829", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf383", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3830", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3831", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3832", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3833", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3834", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3835", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3836", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3837", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3838", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3839", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf384", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3840", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3841", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3842", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3843", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3844", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3845", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3846", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3847", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3848", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3849", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf385", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3850", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3851", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3852", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3853", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3854", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3855", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3856", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3857", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3858", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3859", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf386", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3860", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3861", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3862", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3863", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3864", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3865", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3866", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3867", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3868", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3869", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf387", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3870", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3871", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3872", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3873", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3874", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3875", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3876", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3877", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3878", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3879", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf388", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3880", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3881", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3882", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3883", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3884", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3885", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3886", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3887", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3888", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3889", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf389", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3890", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3891", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3892", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3893", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3894", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3895", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3896", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3897", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3898", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3899", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf39", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf390", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3900", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3901", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3902", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3903", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3904", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3905", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3906", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3907", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3908", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3909", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf391", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3910", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3911", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3912", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3913", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3914", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3915", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3916", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3917", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3918", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3919", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf392", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3920", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3921", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3922", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3923", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3924", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3925", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3926", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3927", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3928", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3929", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf393", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3930", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3931", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3932", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3933", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3934", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3935", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3936", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3937", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3938", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3939", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf394", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3940", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3941", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3942", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3943", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3944", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3945", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3946", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3947", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3948", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3949", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf395", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3950", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3951", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3952", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3953", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3954", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3955", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3956", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3957", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3958", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3959", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf396", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3960", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3961", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3962", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3963", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3964", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3965", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3966", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3967", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3968", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3969", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf397", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3970", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3971", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3972", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3973", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3974", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3975", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3976", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3977", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3978", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3979", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf398", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3980", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3981", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3982", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3983", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3984", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3985", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3986", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3987", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3988", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3989", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf399", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3990", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3991", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3992", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3993", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3994", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3995", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3996", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3997", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3998", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf3999", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf40", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf400", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4000", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4001", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4002", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4003", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4004", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4005", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4006", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4007", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4008", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4009", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf401", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4010", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4011", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4012", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4013", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4014", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4015", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4016", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4017", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4018", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4019", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf402", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4020", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4021", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4022", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4023", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4024", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4025", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4026", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4027", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4028", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4029", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf403", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4030", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4031", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4032", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4033", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4034", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4035", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4036", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4037", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4038", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4039", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf404", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4040", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4041", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4042", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4043", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4044", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4045", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4046", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4047", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4048", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4049", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf405", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4050", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4051", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4052", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4053", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4054", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4055", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4056", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4057", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4058", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4059", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf406", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4060", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4061", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4062", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4063", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4064", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4065", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4066", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4067", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4068", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4069", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf407", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4070", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4071", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4072", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4073", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4074", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4075", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4076", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4077", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4078", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4079", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf408", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4080", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4081", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4082", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4083", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4084", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4085", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4086", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4087", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4088", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4089", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf409", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4090", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4091", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4092", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4093", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4094", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4095", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf4096", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf41", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf410", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf411", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf412", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf413", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf414", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf415", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf416", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf417", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf418", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf419", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf42", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf420", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf421", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf422", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf423", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf424", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf425", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf426", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf427", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf428", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf429", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf43", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf430", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf431", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf432", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf433", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf434", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf435", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf436", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf437", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf438", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf439", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf44", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf440", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf441", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf442", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf443", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf444", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf445", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf446", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf447", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf448", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf449", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf45", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf450", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf451", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf452", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf453", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf454", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf455", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf456", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf457", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf458", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf459", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf46", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf460", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf461", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf462", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf463", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf464", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf465", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf466", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf467", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf468", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf469", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf47", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf470", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf471", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf472", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf473", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf474", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf475", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf476", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf477", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf478", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf479", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf48", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf480", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf481", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf482", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf483", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf484", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf485", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf486", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf487", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf488", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf489", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf49", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf490", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf491", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf492", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf493", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf494", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf495", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf496", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf497", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf498", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf499", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf5", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf50", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf500", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf501", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf502", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf503", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf504", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf505", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf506", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf507", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf508", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf509", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf51", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf510", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf511", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf512", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf513", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf514", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf515", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf516", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf517", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf518", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf519", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf52", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf520", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf521", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf522", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf523", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf524", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf525", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf526", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf527", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf528", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf529", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf53", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf530", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf531", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf532", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf533", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf534", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf535", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf536", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf537", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf538", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf539", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf54", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf540", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf541", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf542", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf543", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf544", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf545", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf546", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf547", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf548", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf549", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf55", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf550", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf551", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf552", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf553", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf554", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf555", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf556", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf557", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf558", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf559", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf56", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf560", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf561", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf562", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf563", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf564", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf565", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf566", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf567", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf568", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf569", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf57", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf570", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf571", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf572", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf573", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf574", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf575", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf576", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf577", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf578", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf579", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf58", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf580", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf581", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf582", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf583", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf584", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf585", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf586", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf587", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf588", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf589", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf59", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf590", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf591", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf592", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf593", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf594", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf595", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf596", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf597", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf598", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf599", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf6", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf60", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf600", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf601", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf602", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf603", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf604", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf605", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf606", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf607", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf608", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf609", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf61", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf610", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf611", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf612", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf613", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf614", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf615", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf616", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf617", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf618", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf619", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf62", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf620", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf621", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf622", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf623", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf624", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf625", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf626", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf627", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf628", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf629", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf63", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf630", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf631", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf632", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf633", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf634", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf635", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf636", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf637", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf638", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf639", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf64", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf640", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf641", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf642", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf643", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf644", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf645", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf646", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf647", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf648", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf649", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf65", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf650", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf651", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf652", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf653", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf654", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf655", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf656", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf657", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf658", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf659", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf66", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf660", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf661", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf662", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf663", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf664", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf665", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf666", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf667", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf668", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf669", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf67", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf670", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf671", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf672", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf673", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf674", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf675", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf676", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf677", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf678", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf679", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf68", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf680", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf681", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf682", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf683", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf684", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf685", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf686", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf687", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf688", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf689", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf69", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf690", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf691", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf692", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf693", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf694", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf695", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf696", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf697", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf698", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf699", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf7", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf70", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf700", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf701", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf702", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf703", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf704", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf705", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf706", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf707", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf708", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf709", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf71", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf710", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf711", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf712", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf713", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf714", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf715", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf716", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf717", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf718", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf719", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf72", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf720", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf721", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf722", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf723", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf724", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf725", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf726", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf727", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf728", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf729", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf73", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf730", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf731", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf732", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf733", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf734", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf735", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf736", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf737", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf738", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf739", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf74", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf740", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf741", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf742", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf743", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf744", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf745", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf746", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf747", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf748", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf749", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf75", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf750", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf751", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf752", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf753", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf754", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf755", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf756", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf757", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf758", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf759", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf76", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf760", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf761", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf762", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf763", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf764", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf765", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf766", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf767", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf768", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf769", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf77", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf770", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf771", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf772", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf773", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf774", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf775", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf776", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf777", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf778", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf779", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf78", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf780", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf781", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf782", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf783", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf784", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf785", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf786", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf787", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf788", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf789", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf79", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf790", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf791", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf792", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf793", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf794", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf795", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf796", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf797", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf798", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf799", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf8", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf80", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf800", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf801", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf802", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf803", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf804", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf805", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf806", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf807", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf808", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf809", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf81", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf810", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf811", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf812", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf813", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf814", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf815", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf816", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf817", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf818", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf819", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf82", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf820", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf821", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf822", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf823", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf824", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf825", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf826", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf827", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf828", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf829", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf83", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf830", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf831", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf832", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf833", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf834", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf835", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf836", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf837", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf838", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf839", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf84", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf840", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf841", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf842", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf843", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf844", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf845", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf846", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf847", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf848", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf849", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf85", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf850", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf851", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf852", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf853", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf854", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf855", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf856", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf857", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf858", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf859", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf86", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf860", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf861", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf862", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf863", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf864", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf865", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf866", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf867", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf868", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf869", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf87", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf870", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf871", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf872", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf873", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf874", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf875", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf876", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf877", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf878", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf879", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf88", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf880", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf881", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf882", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf883", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf884", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf885", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf886", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf887", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf888", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf889", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf89", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf890", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf891", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf892", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf893", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf894", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf895", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf896", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf897", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf898", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf899", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf9", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf90", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf900", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf901", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf902", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf903", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf904", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf905", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf906", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf907", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf908", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf909", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf91", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf910", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf911", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf912", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf913", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf914", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf915", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf916", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf917", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf918", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf919", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf92", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf920", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf921", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf922", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf923", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf924", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf925", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf926", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf927", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf928", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf929", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf93", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf930", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf931", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf932", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf933", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf934", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf935", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf936", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf937", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf938", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf939", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf94", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf940", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf941", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf942", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf943", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf944", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf945", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf946", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf947", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf948", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf949", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf95", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf950", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf951", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf952", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf953", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf954", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf955", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf956", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf957", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf958", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf959", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf96", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf960", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf961", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf962", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf963", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf964", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf965", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf966", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf967", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf968", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf969", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf97", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf970", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf971", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf972", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf973", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf974", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf975", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf976", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf977", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf978", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf979", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf98", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf980", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf981", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf982", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf983", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf984", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf985", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf986", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf987", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf988", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf989", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf99", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf990", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf991", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf992", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf993", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf994", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf995", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf996", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf997", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf998", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "macvrf999", + "type": "srl_nokia-network-instance:mac-vrf", + "admin-state": "disable", + "description": "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + }, + { + "name": "mgmt", + "type": "srl_nokia-network-instance:ip-vrf", + "admin-state": "enable", + "description": "Management network instance", + "interface": [ + { + "name": "mgmt0.0" + } + ], + "protocols": { + "srl_nokia-linux:linux": { + "import-routes": true, + "export-routes": true, + "export-neighbors": true + } + } + } + ] +} \ No newline at end of file diff --git a/.clab/topo-ci.yaml b/.clab/topo-ci.yaml index 4b4d50c..e247d6e 100644 --- a/.clab/topo-ci.yaml +++ b/.clab/topo-ci.yaml @@ -9,4 +9,5 @@ topology: srl: kind: srl mgmt_ipv4: 172.20.20.16 - mgmt_ipv6: 2001:172:20:20::16 \ No newline at end of file + mgmt_ipv6: 2001:172:20:20::16 + startup-config: configs/srl-startup.json \ No newline at end of file diff --git a/.clab/topo-full.yaml b/.clab/topo-full.yaml index 95e1d8f..1ae8849 100644 --- a/.clab/topo-full.yaml +++ b/.clab/topo-full.yaml @@ -45,6 +45,7 @@ topology: kind: srl mgmt_ipv4: 172.20.20.16 mgmt_ipv6: 2001:172:20:20::16 + startup-config: configs/srl-startup.json links: # forces "front panel port" for ceos, without this there is no ip routing - endpoints: ["ceos:eth1", "ceos:eth2"] diff --git a/driver/network/sendcommand_test.go b/driver/network/sendcommand_test.go index bcaef96..b87f6c3 100644 --- a/driver/network/sendcommand_test.go +++ b/driver/network/sendcommand_test.go @@ -226,3 +226,75 @@ func TestSendCommandFunctional(t *testing.T) { } } } + +func TestSendCommandFunctionalGiant(t *testing.T) { + testName := "send-command-giant" + platformName := platform.NokiaSrl + + if !*functional { + t.Skip("skip: functional tests skipped without the '-functional' flag being passed") + } + + t.Logf("%s: starting", testName) + + for _, transportName := range []string{transport.SystemTransport, transport.StandardTransport} { + d := prepareFunctionalDriver(t, testName, platformName, transportName) + + r, err := d.SendCommand("info from running") + if err != nil { + t.Errorf( + "%s: encountered error running network Driver SendCommand (giant), error: %s", + testName, + err, + ) + } + + if r.Failed != nil { + t.Fatalf("%s: response object indicates failure", + testName) + } + + err = d.Close() + if err != nil { + t.Fatalf("%s: failed closing connection", + testName) + } + + actualOut := r.Result + + if *update { + writeGoldenFunctional( + t, + fmt.Sprintf("%s-%s-%s", testName, platformName, transportName), + actualOut, + ) + } + + cleanF := util.GetCleanFunc(platformName) + + expectedOut := readFile( + t, + fmt.Sprintf("golden/%s-%s-%s-out.txt", testName, platformName, transportName), + ) + + if !cmp.Equal( + cleanF(actualOut), + cleanF(string(expectedOut)), + ) { + t.Fatalf( + "%s: actual and expected outputs do not match\nactual: %s\nexpected:%s", + testName, + cleanF(actualOut), + cleanF(string(expectedOut)), + ) + } + + // in seconds; realistically this looks like it finishes in ~10-12s pretty consistently in + // local tests, but we need to make sure it doesn't go kaboom in ci as well. also note that + // this is usually ran w/ race flag so that slows things down even more. + if r.ElapsedTime > 20 { + t.Fatalf("%s: test completed but was greater than maximum expected duration", + testName) + } + } +} diff --git a/driver/network/test-fixtures/golden/send-command-giant-nokia_srl-standard-out.txt b/driver/network/test-fixtures/golden/send-command-giant-nokia_srl-standard-out.txt new file mode 100644 index 0000000..81e811f --- /dev/null +++ b/driver/network/test-fixtures/golden/send-command-giant-nokia_srl-standard-out.txt @@ -0,0 +1,42292 @@ + acl { + cpm-filter { + ipv4-filter { + statistics-per-entry true + entry 10 { + description "Accept incoming ICMP unreachable messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type dest-unreachable + code [ + 0 + 1 + 2 + 3 + 4 + 13 + ] + } + } + } + entry 20 { + description "Accept incoming ICMP time-exceeded messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type time-exceeded + } + } + } + entry 30 { + description "Accept incoming ICMP parameter problem messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type param-problem + } + } + } + entry 40 { + description "Accept incoming ICMP echo messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type echo + } + } + } + entry 50 { + description "Accept incoming ICMP echo-reply messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type echo-reply + } + } + } + entry 60 { + description "Accept incoming SSH when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 22 + } + } + } + entry 70 { + description "Accept incoming SSH when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 22 + } + } + } + entry 80 { + description "Accept incoming Telnet when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 23 + } + } + } + entry 90 { + description "Accept incoming Telnet when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 23 + } + } + } + entry 100 { + description "Accept incoming TACACS+ when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 49 + } + } + } + entry 110 { + description "Accept incoming TACACS+ when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 49 + } + } + } + entry 120 { + description "Accept incoming DNS response messages" + action { + accept { + } + } + match { + protocol udp + source-port { + operator eq + value 53 + } + } + } + entry 130 { + description "Accept incoming DHCP messages targeted for BOOTP/DHCP client" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 68 + } + } + } + entry 140 { + description "Accept incoming TFTP read-request and write-request messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 69 + } + } + } + entry 150 { + description "Accept incoming HTTP(JSON-RPC) when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 80 + } + } + } + entry 160 { + description "Accept incoming HTTP(JSON-RPC) when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 80 + } + } + } + entry 170 { + description "Accept incoming NTP messages from servers" + action { + accept { + } + } + match { + protocol udp + source-port { + operator eq + value 123 + } + } + } + entry 180 { + description "Accept incoming SNMP GET/GETNEXT messages from servers" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 161 + } + } + } + entry 190 { + description "Accept incoming BGP when the other router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 179 + } + } + } + entry 200 { + description "Accept incoming BGP when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 179 + } + } + } + entry 210 { + description "Accept incoming HTTPS(JSON-RPC) when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 443 + } + } + } + entry 220 { + description "Accept incoming HTTPS(JSON-RPC) when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 443 + } + } + } + entry 230 { + description "Accept incoming single-hop BFD session messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 3784 + } + } + } + entry 240 { + description "Accept incoming multi-hop BFD session messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 4784 + } + } + } + entry 250 { + description "Accept incoming uBFD session messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 6784 + } + } + } + entry 260 { + description "Accept incoming gNMI messages when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 57400 + } + } + } + entry 270 { + description "Accept incoming UDP traceroute messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + range { + start 33434 + end 33464 + } + } + } + } + entry 280 { + description "Accept incoming ICMP timestamp messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type timestamp + } + } + } + entry 290 { + description "Accept incoming OSPF messages" + action { + accept { + } + } + match { + protocol 89 + } + } + entry 300 { + description "Accept incoming DHCP relay messages targeted for BOOTP/DHCP server" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 67 + } + } + } + entry 310 { + description "Accept ICMP fragment packets" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + fragment true + protocol icmp + } + } + entry 320 { + description "Accept incoming LDP packets" + action { + accept { + } + } + match { + protocol udp + source-port { + operator eq + value 646 + } + } + } + entry 330 { + description "Accept incoming LDP packets with source-port 646" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 646 + } + } + } + entry 340 { + description "Accept incoming LDP packets with destination-port 646" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 646 + } + } + } + entry 350 { + description "Accept incoming gRIBI packets with destination-port 57401" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 57401 + } + } + } + entry 360 { + description "Accept incoming p4rt packets with destination-port 9559" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 9559 + } + } + } + entry 370 { + description "Accept incoming IGMP packets" + action { + accept { + } + } + match { + protocol igmp + } + } + entry 380 { + description "Drop all else" + action { + drop { + log true + } + } + } + } + ipv6-filter { + statistics-per-entry true + entry 10 { + description "Accept incoming ICMPv6 unreachable messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type dest-unreachable + code [ + 0 + 1 + 2 + 3 + 4 + 5 + 6 + ] + } + } + } + entry 20 { + description "Accept incoming ICMPv6 packet-too-big messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type packet-too-big + } + } + } + entry 30 { + description "Accept incoming ICMPv6 time-exceeded messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type time-exceeded + } + } + } + entry 40 { + description "Accept incoming ICMPv6 parameter problem messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type param-problem + } + } + } + entry 50 { + description "Accept incoming ICMPv6 echo-request messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type echo-request + } + } + } + entry 60 { + description "Accept incoming ICMPv6 echo-reply messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type echo-reply + } + } + } + entry 70 { + description "Accept incoming ICMPv6 router-advertisement messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type router-advertise + } + } + } + entry 80 { + description "Accept incoming ICMPv6 neighbor-solicitation messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type neighbor-solicit + } + } + } + entry 90 { + description "Accept incoming ICMPv6 neighbor-advertisement messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type neighbor-advertise + } + } + } + entry 100 { + description "Accept incoming SSH when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 22 + } + } + } + entry 110 { + description "Accept incoming SSH when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 22 + } + } + } + entry 120 { + description "Accept incoming Telnet when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 23 + } + } + } + entry 130 { + description "Accept incoming Telnet when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 23 + } + } + } + entry 140 { + description "Accept incoming TACACS+ when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 49 + } + } + } + entry 150 { + description "Accept incoming TACACS+ when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 49 + } + } + } + entry 160 { + description "Accept incoming DNS response messages" + action { + accept { + } + } + match { + next-header udp + source-port { + operator eq + value 53 + } + } + } + entry 170 { + description "Accept incoming TFTP read-request and write-request messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 69 + } + } + } + entry 180 { + description "Accept incoming HTTP(JSON-RPC) when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 80 + } + } + } + entry 190 { + description "Accept incoming HTTP(JSON-RPC) when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 80 + } + } + } + entry 200 { + description "Accept incoming NTP messages from servers" + action { + accept { + } + } + match { + next-header udp + source-port { + operator eq + value 123 + } + } + } + entry 210 { + description "Accept incoming SNMP GET/GETNEXT messages from servers" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 161 + } + } + } + entry 220 { + description "Accept incoming BGP when the other router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 179 + } + } + } + entry 230 { + description "Accept incoming BGP when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 179 + } + } + } + entry 240 { + description "Accept incoming HTTPS(JSON-RPC) when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 443 + } + } + } + entry 250 { + description "Accept incoming HTTPS(JSON-RPC) when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 443 + } + } + } + entry 260 { + description "Accept incoming DHCPv6 client messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 546 + } + } + } + entry 270 { + description "Accept incoming single-hop BFD session messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 3784 + } + } + } + entry 280 { + description "Accept incoming multi-hop BFD session messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 4784 + } + } + } + entry 290 { + description "Accept incoming uBFD session messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 6784 + } + } + } + entry 300 { + description "Accept incoming gNMI messages when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 57400 + } + } + } + entry 310 { + description "Accept incoming UDP traceroute messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + range { + start 33434 + end 33464 + } + } + } + } + entry 320 { + description "Accept incoming IPV6 hop-in-hop messages" + action { + accept { + } + } + match { + next-header 0 + } + } + entry 330 { + description "Accept incoming IPV6 fragment header messages" + action { + accept { + } + } + match { + next-header 44 + } + } + entry 340 { + description "Accept incoming OSPF messages" + action { + accept { + } + } + match { + next-header 89 + } + } + entry 350 { + description "Accept incoming DHCPv6 relay messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 547 + } + } + } + entry 360 { + description "Accept incoming gRIBI packets with destination-port 57401" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 57401 + } + } + } + entry 370 { + description "Accept incoming p4rt packets with destination-port 9559" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 9559 + } + } + } + entry 380 { + description "Accept incoming IGMP packets" + action { + accept { + } + } + match { + next-header igmp + } + } + entry 390 { + description "Drop all else" + action { + drop { + log true + } + } + } + } + } + policers { + system-cpu-policer icmp { + entry-specific false + peak-packet-rate 1000 + max-packet-burst 1000 + } + } + } + interface mgmt0 { + admin-state enable + subinterface 0 { + admin-state enable + ipv4 { + dhcp-client { + } + } + ipv6 { + dhcp-client { + } + } + } + } + system { + aaa { + authentication { + idle-timeout 7200 + authentication-method [ + local + ] + } + server-group local { + type local + } + } + gnmi-server { + admin-state enable + network-instance mgmt { + admin-state enable + tls-profile clab-profile + } + unix-socket { + admin-state enable + } + } + tls { + server-profile clab-profile { + key $aes$b1L+gy1OoNjo=$DgEPaj8Cg2OzIbK5Zi+mNutfn87F2zyffNuuT3qEiayG7I6nP9+hN1R51mFC1wp9K6cTpYLpEOfqHMVkv0z9wz/PzKCvfTV3sMW+xq9PeHyVGHnYbWit84DvvBba2qa7Ki6M69MLFvOKf3O8omjyX6Y7QgwzfO2neAjMMB67CfNOhpfqtzcR7oBNKK+GQa08rv5SyU/n7XQvDSe25PLnFoJ4Z+Qw4XVny96HGYRq07zPfH+EfMGb3gnUmUhpEtJRwKQM4LKVS3dLFLJEKp0qUbKGzTnw5dHaFkVqxSRkRE/Q6wMQnO4Wtsrb7O/Gc+jWPJqTr54sOuJ1E+hDmmXw1MP02onyGeMid6IZfZmAHwa14IIce3BJAaSMtc5LVy6ZVj3jTZXh1u2wrpCvZYLPxzkeaiKdGtUgVzNBF9MSvmjkuHoqaXkxqyCsm9mxXLARJvyQN+3EGXHzcvNx1rWPDsrl8foNw6UtX5zPLnsvg8exndj51AZrB7EsnCvCAI0Xj/ns11YMM+Q/LWDU8uKaHrFGdk8EsJ6qwwGadJCkmxiwYe6J6Sd9ln5dY+/5zNlspZMJBQ+5H0OBQ4yAowa5Uw82GGMXS0UoTb+M8uKvMiQBxCc+MNY6xR0tWZx1JworkvDfzaE3BvSA3o+yKq9I6Sikr8ZSA3AcQMG1hVwfOJcgXQuO1o4Tq6n8znj/KFwtwzEODkDTnF60vf05+UNY2C7q5wGM32td/BgEgTpcgR0AvyGKPWGZTKR8Za7pI+pc3J639TnKWIKBz55vo0zWOSI37WZmZg92+kBXCp7OZrq1V+GBKEjxsMm33reHC9mL1zNOd1hjFY0umRPCEjpXGOPmzJRbSVyw2eDFg3vhL4H6VZgh2pASXlm2NsrLSVrUOftltLqjbwSNouJ4l2jgxINTlXPfnG5WLoogiXlrpM7AwDpwXFreyzWUQemqbSjq2iey7EyiUQvTQtOCJIu1V0luVSJJ20r5mY+t7gwo29FOcag3h+m33z+Kzi6RFTl7C0pnd+UuPGZ6dH9S2zJggSHPH8ssjLxDkffu8OKDQUYSD0w4ZHp6k/3TxudybtWZQz9fWr9+oVs21Shg1NUkke+U4gIgSnV+W5aZYuUFyt1ESOhjR+ksUozt8/BodrV2uhSMUJtjPmBFVQbqYl/opk5/lLefzy6BRU8I/JdIIhzgcVxJF4Njb7UhQIR03+WXLRjxQ7ehM2zwm/Y/eNuk7v6Frf0SdNjOeDVbcKGtGCzSR7Hj9M+unREiDt+z+e9pGJxjRUX7O1DGU/DyOKWhstemXmCJ4cQ8HwvfXQxJoELRNWb2G2OWJ+rr8u0j/jYuPc9S3xyrvr5yebz21hRCILlZuyCebUzhGaIW62hZwaA1x3CBsgpycO4VP87gdVDAo5mgv9zbJRiy0skILw2mCM1JhG3z6CuFASOgyXSGvt/J76N20iflW1FR+04ZEhNoy7brrIuVBO090bN7nSZk7opBxM+SqU8SEcOXV0rt6JGa2pHiIc+B9LdsDCfwmth7NA0muURF35nXVVMGq65gWpHKHvbhgoF4k6LBVCPT9M/bIrjXGzK4gWr7dAlMURL7rQ+Y3S6EqBHBvgF1s2x0dwUpbjeoVThjqSSSAAVdTJ9Hs5fuxWzmkuCqSuOc70dOxOlWH0xZVCTKEm/m7EloRhisYmNAoKUHr6JrcKEhIcKH9lm1elrINNp8fhpBnWaqzX56EK6dG6L1pFDKXX5sEWoYgWOLpok5sfnCU3NxWTTEvRMfco3T5wlkaUD6HtCdnzhGh8FQ+aKLzUyYKBrSUMWSEBW1yhjziFLzY2INeN/z8VsIXwWnZh/IFf34pCXhCOmAr3aBW+gKNuqwgEZN0Vo3d0qNRAZpgdSxj3AhO/o3oRksj0bcflOO/4NiZy6rjBmqAP8Mbo0WneiDuvjQms7rIwuO7waVvXVtieuEaWyWab+PoX4Er340CQTDtJaVaATQFDOgzz4PJFyr078T7oRNyfzaJXh44NgsxW7FQqdo8zzGMb/aAbf4GYs1VVMrvQ9XDhPHHQsLNvrF0hMlLsbT5XM7k2MWHNFHVKzuobpHZbpzYOUWjSqKiIO8PinCtzRmFT8Ms0xWoChSbCheBZfz1JqXx1Kx2ws4N/7boLGJ/CVMpH8DNuS8KII9hEgwe9hZI8MWV37HPa4wuRRVy0bHNRuV0dF58FzTGUUNtXDji0BtN9sL5e2vpcfCrMnx + certificate "-----BEGIN CERTIFICATE----- +MIID8jCCAtqgAwIBAgIUEc2RnwCnuLpgdYBvyiWoA6mILcUwDQYJKoZIhvcNAQEL +BQAwXTELMAkGA1UEBhMCQkUxEDAOBgNVBAcTB0FudHdlcnAxDjAMBgNVBAoTBU5v +a2lhMRYwFAYDVQQLEw1Db250YWluZXIgbGFiMRQwEgYDVQQDEwtzcmwgUm9vdCBD +QTAeFw0yMzAxMzEyMDAxMDBaFw0yNDAxMzEyMDAxMDBaMFwxCzAJBgNVBAYTAkJF +MRAwDgYDVQQHEwdBbnR3ZXJwMQ4wDAYDVQQKEwVOb2tpYTEWMBQGA1UECxMNQ29u +dGFpbmVyIGxhYjETMBEGA1UEAxMKc3JsLnNybC5pbzCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAMrue28sWGLoMhPozVtt/Z8KrVMysJW7753aDf9sOseO +rHqH7CPKOr3TEwFO39d7id6mqLc7dxpUVWdXSsdBxBnW/XA4hx5IEP+vjJS6vzBf +/jQhgaMpcvyZ6HmldzZZ54yx91L7W80KMbQJ17+WSbXxuUPVEQehCPVgrS9FyCKv +qCc8iJmk/oTXYJckD3mF0lYuGJFTcnc/HdTMjLsJ6dVAl+SyEJXzMSRaKwAr5aHP +HQ2enWaR0+bJltFC369REA9ni8qQ+OIXZyNyj37tVBlIY3ws3+NoHIMkjScoRgaQ +C0xhY+McYKGfsYR3l3nno6B6Axvi74EZK6CDazKuE4UCAwEAAaOBqjCBpzAOBgNV +HQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1Ud +EwEB/wQCMAAwHQYDVR0OBBYEFJR1h8HJM4CWUAfRKvROrWXnmjQMMB8GA1UdIwQY +MBaAFPzZSIYYJqoFFINeOCLtlqCnfCTPMCgGA1UdEQQhMB+CA3NybIIMY2xhYi1z +cmwtc3Jsggpzcmwuc3JsLmlvMA0GCSqGSIb3DQEBCwUAA4IBAQCQxBOqqorPUNK+ +iwFSPZ9UjDjNFwJlm7blg8cJ7y9sNLi5gfl/gjgzA5fSOxoPpNKAn9jWPMIu2yUr +9vEho8l0pitjry+RpgglX//wcdyoTrQBNrA6fZmY/XGjvlWPtfqiSdhhFO2hduJZ +y+b1P8IjA8fd/odpD3cPWRLbedtvUSZ3R7onngDaLCNu4BaryVwupau+HeVTd8iO +hLNNOPVX4mlAyJOmjGcH3x2XZEGSLVAKbIDbsvqgj0QkIWoXqJgPjwPhP8/TMKNG +LEKz+Oa+8boGhcZcgfVslUZaHJGar2jv2C2wpSENThxXh5nDYWWyx6/qkzqzW6YH +o+phN+pt +-----END CERTIFICATE----- +" + authenticate-client false + } + } + json-rpc-server { + admin-state enable + network-instance mgmt { + http { + admin-state enable + } + https { + admin-state enable + tls-profile clab-profile + } + } + } + ssh-server { + network-instance mgmt { + admin-state enable + } + } + banner { + login-banner "................................................................ +: Welcome to Nokia SR Linux! : +: Open Network OS for the NetOps era. : +: : +: This is a freely distributed official container image. : +: Use it - Share it : +: : +: Get started: https://learn.srlinux.dev : +: Container: https://go.srlinux.dev/container-image : +: Docs: https://doc.srlinux.dev/22-11 : +: Rel. notes: https://doc.srlinux.dev/rn22-11-1 : +: YANG: https://yang.srlinux.dev/v22.11.1 : +: Discord: https://go.srlinux.dev/discord : +: Contact: https://go.srlinux.dev/contact-sales : +................................................................ +" + } + lldp { + admin-state enable + } + logging { + buffer messages { + rotate 3 + size 10000000 + facility local6 { + priority { + match-above informational + } + } + } + buffer system { + facility auth { + priority { + match-above warning + } + } + facility cron { + priority { + match-above warning + } + } + facility daemon { + priority { + match-above warning + } + } + facility ftp { + priority { + match-above warning + } + } + facility kern { + priority { + match-above warning + } + } + facility lpr { + priority { + match-above warning + } + } + facility mail { + priority { + match-above warning + } + } + facility news { + priority { + match-above warning + } + } + facility syslog { + priority { + match-above warning + } + } + facility user { + priority { + match-above warning + } + } + facility uucp { + priority { + match-above warning + } + } + facility local0 { + priority { + match-above warning + } + } + facility local1 { + priority { + match-above warning + } + } + facility local2 { + priority { + match-above warning + } + } + facility local3 { + priority { + match-above warning + } + } + facility local4 { + priority { + match-above warning + } + } + facility local5 { + priority { + match-above warning + } + } + facility local7 { + priority { + match-above warning + } + } + } + file messages { + rotate 3 + size 10000000 + facility local6 { + priority { + match-above warning + } + } + } + } + } + network-instance ipvrf1 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf10 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf100 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1000 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1001 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1002 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1003 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1004 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1005 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1006 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1007 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1008 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1009 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf101 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1010 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1011 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1012 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1013 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1014 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1015 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1016 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1017 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1018 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1019 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf102 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1020 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1021 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1022 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1023 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1024 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1025 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1026 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1027 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1028 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1029 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf103 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1030 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1031 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1032 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1033 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1034 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1035 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1036 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1037 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1038 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1039 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf104 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1040 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1041 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1042 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1043 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1044 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1045 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1046 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1047 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1048 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1049 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf105 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1050 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1051 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1052 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1053 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1054 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1055 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1056 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1057 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1058 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1059 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf106 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1060 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1061 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1062 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1063 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1064 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1065 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1066 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1067 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1068 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1069 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf107 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1070 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1071 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1072 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1073 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1074 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1075 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1076 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1077 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1078 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1079 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf108 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1080 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1081 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1082 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1083 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1084 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1085 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1086 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1087 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1088 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1089 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf109 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1090 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1091 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1092 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1093 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1094 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1095 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1096 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1097 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1098 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1099 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf11 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf110 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1100 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1101 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1102 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1103 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1104 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1105 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1106 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1107 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1108 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1109 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf111 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1110 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1111 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1112 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1113 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1114 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1115 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1116 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1117 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1118 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1119 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf112 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1120 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1121 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1122 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1123 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1124 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1125 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1126 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1127 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1128 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1129 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf113 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1130 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1131 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1132 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1133 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1134 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1135 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1136 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1137 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1138 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1139 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf114 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1140 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1141 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1142 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1143 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1144 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1145 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1146 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1147 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1148 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1149 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf115 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1150 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1151 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1152 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1153 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1154 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1155 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1156 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1157 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1158 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1159 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf116 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1160 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1161 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1162 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1163 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1164 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1165 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1166 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1167 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1168 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1169 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf117 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1170 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1171 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1172 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1173 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1174 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1175 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1176 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1177 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1178 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1179 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf118 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1180 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1181 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1182 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1183 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1184 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1185 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1186 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1187 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1188 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1189 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf119 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1190 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1191 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1192 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1193 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1194 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1195 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1196 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1197 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1198 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1199 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf12 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf120 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1200 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1201 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1202 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1203 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1204 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1205 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1206 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1207 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1208 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1209 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf121 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1210 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1211 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1212 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1213 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1214 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1215 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1216 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1217 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1218 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1219 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf122 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1220 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1221 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1222 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1223 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1224 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1225 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1226 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1227 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1228 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1229 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf123 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1230 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1231 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1232 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1233 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1234 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1235 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1236 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1237 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1238 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1239 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf124 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1240 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1241 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1242 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1243 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1244 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1245 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1246 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1247 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1248 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1249 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf125 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1250 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1251 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1252 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1253 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1254 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1255 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1256 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1257 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1258 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1259 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf126 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1260 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1261 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1262 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1263 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1264 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1265 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1266 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1267 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1268 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1269 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf127 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1270 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1271 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1272 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1273 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1274 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1275 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1276 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1277 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1278 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1279 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf128 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1280 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1281 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1282 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1283 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1284 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1285 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1286 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1287 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1288 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1289 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf129 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1290 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1291 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1292 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1293 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1294 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1295 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1296 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1297 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1298 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1299 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf13 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf130 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1300 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1301 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1302 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1303 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1304 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1305 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1306 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1307 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1308 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1309 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf131 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1310 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1311 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1312 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1313 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1314 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1315 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1316 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1317 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1318 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1319 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf132 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1320 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1321 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1322 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1323 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1324 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1325 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1326 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1327 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1328 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1329 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf133 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1330 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1331 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1332 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1333 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1334 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1335 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1336 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1337 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1338 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1339 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf134 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1340 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1341 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1342 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1343 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1344 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1345 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1346 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1347 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1348 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1349 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf135 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1350 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1351 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1352 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1353 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1354 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1355 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1356 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1357 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1358 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1359 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf136 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1360 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1361 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1362 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1363 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1364 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1365 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1366 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1367 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1368 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1369 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf137 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1370 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1371 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1372 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1373 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1374 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1375 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1376 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1377 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1378 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1379 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf138 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1380 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1381 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1382 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1383 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1384 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1385 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1386 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1387 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1388 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1389 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf139 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1390 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1391 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1392 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1393 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1394 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1395 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1396 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1397 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1398 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1399 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf14 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf140 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1400 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1401 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1402 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1403 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1404 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1405 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1406 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1407 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1408 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1409 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf141 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1410 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1411 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1412 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1413 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1414 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1415 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1416 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1417 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1418 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1419 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf142 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1420 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1421 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1422 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1423 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1424 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1425 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1426 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1427 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1428 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1429 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf143 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1430 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1431 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1432 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1433 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1434 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1435 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1436 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1437 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1438 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1439 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf144 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1440 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1441 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1442 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1443 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1444 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1445 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1446 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1447 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1448 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1449 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf145 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1450 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1451 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1452 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1453 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1454 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1455 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1456 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1457 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1458 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1459 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf146 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1460 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1461 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1462 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1463 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1464 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1465 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1466 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1467 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1468 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1469 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf147 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1470 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1471 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1472 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1473 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1474 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1475 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1476 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1477 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1478 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1479 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf148 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1480 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1481 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1482 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1483 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1484 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1485 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1486 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1487 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1488 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1489 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf149 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1490 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1491 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1492 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1493 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1494 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1495 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1496 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1497 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1498 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1499 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf15 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf150 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1500 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1501 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1502 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1503 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1504 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1505 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1506 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1507 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1508 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1509 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf151 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1510 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1511 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1512 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1513 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1514 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1515 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1516 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1517 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1518 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1519 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf152 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1520 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1521 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1522 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1523 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1524 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1525 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1526 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1527 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1528 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1529 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf153 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1530 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1531 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1532 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1533 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1534 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1535 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1536 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1537 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1538 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1539 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf154 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1540 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1541 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1542 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1543 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1544 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1545 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1546 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1547 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1548 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1549 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf155 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1550 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1551 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1552 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1553 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1554 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1555 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1556 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1557 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1558 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1559 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf156 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1560 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1561 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1562 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1563 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1564 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1565 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1566 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1567 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1568 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1569 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf157 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1570 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1571 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1572 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1573 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1574 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1575 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1576 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1577 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1578 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1579 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf158 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1580 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1581 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1582 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1583 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1584 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1585 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1586 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1587 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1588 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1589 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf159 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1590 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1591 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1592 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1593 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1594 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1595 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1596 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1597 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1598 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1599 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf16 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf160 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1600 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1601 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1602 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1603 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1604 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1605 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1606 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1607 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1608 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1609 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf161 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1610 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1611 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1612 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1613 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1614 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1615 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1616 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1617 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1618 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1619 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf162 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1620 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1621 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1622 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1623 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1624 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1625 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1626 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1627 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1628 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1629 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf163 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1630 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1631 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1632 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1633 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1634 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1635 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1636 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1637 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1638 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1639 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf164 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1640 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1641 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1642 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1643 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1644 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1645 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1646 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1647 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1648 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1649 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf165 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1650 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1651 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1652 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1653 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1654 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1655 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1656 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1657 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1658 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1659 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf166 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1660 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1661 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1662 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1663 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1664 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1665 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1666 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1667 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1668 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1669 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf167 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1670 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1671 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1672 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1673 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1674 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1675 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1676 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1677 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1678 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1679 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf168 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1680 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1681 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1682 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1683 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1684 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1685 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1686 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1687 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1688 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1689 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf169 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1690 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1691 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1692 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1693 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1694 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1695 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1696 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1697 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1698 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1699 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf17 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf170 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1700 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1701 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1702 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1703 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1704 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1705 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1706 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1707 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1708 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1709 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf171 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1710 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1711 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1712 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1713 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1714 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1715 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1716 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1717 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1718 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1719 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf172 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1720 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1721 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1722 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1723 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1724 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1725 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1726 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1727 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1728 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1729 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf173 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1730 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1731 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1732 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1733 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1734 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1735 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1736 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1737 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1738 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1739 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf174 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1740 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1741 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1742 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1743 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1744 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1745 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1746 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1747 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1748 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1749 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf175 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1750 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1751 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1752 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1753 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1754 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1755 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1756 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1757 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1758 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1759 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf176 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1760 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1761 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1762 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1763 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1764 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1765 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1766 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1767 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1768 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1769 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf177 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1770 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1771 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1772 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1773 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1774 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1775 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1776 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1777 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1778 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1779 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf178 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1780 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1781 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1782 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1783 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1784 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1785 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1786 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1787 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1788 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1789 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf179 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1790 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1791 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1792 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1793 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1794 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1795 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1796 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1797 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1798 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1799 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf18 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf180 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1800 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1801 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1802 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1803 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1804 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1805 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1806 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1807 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1808 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1809 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf181 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1810 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1811 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1812 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1813 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1814 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1815 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1816 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1817 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1818 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1819 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf182 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1820 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1821 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1822 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1823 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1824 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1825 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1826 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1827 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1828 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1829 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf183 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1830 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1831 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1832 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1833 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1834 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1835 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1836 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1837 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1838 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1839 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf184 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1840 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1841 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1842 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1843 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1844 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1845 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1846 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1847 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1848 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1849 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf185 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1850 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1851 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1852 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1853 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1854 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1855 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1856 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1857 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1858 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1859 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf186 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1860 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1861 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1862 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1863 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1864 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1865 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1866 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1867 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1868 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1869 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf187 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1870 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1871 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1872 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1873 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1874 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1875 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1876 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1877 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1878 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1879 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf188 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1880 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1881 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1882 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1883 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1884 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1885 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1886 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1887 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1888 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1889 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf189 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1890 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1891 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1892 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1893 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1894 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1895 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1896 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1897 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1898 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1899 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf19 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf190 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1900 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1901 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1902 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1903 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1904 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1905 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1906 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1907 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1908 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1909 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf191 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1910 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1911 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1912 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1913 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1914 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1915 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1916 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1917 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1918 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1919 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf192 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1920 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1921 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1922 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1923 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1924 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1925 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1926 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1927 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1928 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1929 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf193 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1930 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1931 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1932 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1933 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1934 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1935 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1936 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1937 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1938 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1939 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf194 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1940 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1941 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1942 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1943 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1944 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1945 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1946 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1947 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1948 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1949 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf195 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1950 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1951 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1952 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1953 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1954 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1955 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1956 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1957 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1958 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1959 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf196 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1960 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1961 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1962 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1963 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1964 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1965 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1966 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1967 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1968 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1969 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf197 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1970 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1971 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1972 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1973 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1974 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1975 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1976 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1977 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1978 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1979 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf198 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1980 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1981 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1982 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1983 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1984 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1985 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1986 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1987 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1988 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1989 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf199 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1990 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1991 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1992 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1993 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1994 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1995 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1996 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1997 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1998 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1999 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf20 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf200 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2000 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2001 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2002 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2003 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2004 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2005 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2006 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2007 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2008 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2009 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf201 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2010 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2011 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2012 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2013 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2014 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2015 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2016 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2017 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2018 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2019 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf202 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2020 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2021 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2022 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2023 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2024 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2025 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2026 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2027 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2028 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2029 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf203 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2030 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2031 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2032 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2033 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2034 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2035 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2036 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2037 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2038 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2039 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf204 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2040 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2041 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2042 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2043 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2044 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2045 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2046 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2047 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2048 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2049 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf205 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2050 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2051 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2052 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2053 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2054 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2055 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2056 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2057 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2058 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2059 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf206 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2060 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2061 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2062 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2063 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2064 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2065 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2066 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2067 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2068 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2069 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf207 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2070 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2071 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2072 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2073 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2074 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2075 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2076 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2077 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2078 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2079 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf208 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2080 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2081 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2082 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2083 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2084 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2085 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2086 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2087 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2088 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2089 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf209 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2090 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2091 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2092 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2093 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2094 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2095 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2096 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2097 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2098 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2099 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf21 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf210 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2100 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2101 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2102 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2103 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2104 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2105 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2106 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2107 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2108 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2109 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf211 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2110 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2111 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2112 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2113 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2114 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2115 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2116 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2117 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2118 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2119 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf212 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2120 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2121 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2122 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2123 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2124 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2125 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2126 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2127 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2128 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2129 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf213 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2130 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2131 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2132 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2133 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2134 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2135 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2136 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2137 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2138 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2139 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf214 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2140 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2141 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2142 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2143 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2144 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2145 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2146 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2147 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2148 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2149 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf215 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2150 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2151 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2152 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2153 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2154 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2155 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2156 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2157 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2158 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2159 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf216 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2160 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2161 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2162 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2163 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2164 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2165 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2166 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2167 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2168 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2169 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf217 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2170 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2171 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2172 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2173 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2174 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2175 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2176 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2177 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2178 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2179 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf218 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2180 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2181 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2182 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2183 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2184 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2185 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2186 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2187 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2188 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2189 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf219 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2190 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2191 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2192 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2193 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2194 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2195 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2196 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2197 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2198 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2199 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf22 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf220 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2200 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2201 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2202 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2203 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2204 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2205 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2206 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2207 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2208 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2209 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf221 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2210 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2211 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2212 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2213 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2214 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2215 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2216 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2217 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2218 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2219 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf222 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2220 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2221 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2222 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2223 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2224 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2225 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2226 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2227 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2228 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2229 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf223 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2230 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2231 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2232 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2233 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2234 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2235 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2236 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2237 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2238 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2239 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf224 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2240 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2241 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2242 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2243 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2244 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2245 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2246 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2247 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2248 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2249 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf225 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2250 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2251 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2252 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2253 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2254 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2255 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2256 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2257 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2258 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2259 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf226 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2260 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2261 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2262 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2263 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2264 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2265 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2266 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2267 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2268 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2269 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf227 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2270 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2271 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2272 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2273 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2274 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2275 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2276 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2277 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2278 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2279 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf228 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2280 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2281 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2282 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2283 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2284 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2285 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2286 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2287 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2288 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2289 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf229 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2290 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2291 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2292 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2293 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2294 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2295 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2296 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2297 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2298 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2299 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf23 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf230 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2300 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2301 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2302 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2303 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2304 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2305 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2306 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2307 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2308 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2309 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf231 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2310 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2311 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2312 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2313 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2314 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2315 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2316 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2317 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2318 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2319 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf232 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2320 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2321 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2322 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2323 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2324 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2325 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2326 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2327 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2328 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2329 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf233 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2330 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2331 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2332 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2333 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2334 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2335 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2336 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2337 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2338 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2339 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf234 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2340 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2341 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2342 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2343 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2344 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2345 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2346 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2347 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2348 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2349 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf235 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2350 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2351 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2352 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2353 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2354 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2355 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2356 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2357 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2358 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2359 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf236 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2360 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2361 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2362 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2363 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2364 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2365 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2366 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2367 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2368 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2369 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf237 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2370 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2371 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2372 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2373 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2374 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2375 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2376 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2377 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2378 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2379 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf238 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2380 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2381 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2382 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2383 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2384 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2385 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2386 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2387 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2388 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2389 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf239 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2390 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2391 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2392 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2393 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2394 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2395 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2396 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2397 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2398 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2399 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf24 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf240 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2400 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2401 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2402 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2403 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2404 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2405 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2406 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2407 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2408 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2409 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf241 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2410 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2411 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2412 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2413 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2414 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2415 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2416 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2417 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2418 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2419 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf242 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2420 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2421 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2422 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2423 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2424 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2425 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2426 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2427 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2428 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2429 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf243 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2430 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2431 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2432 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2433 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2434 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2435 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2436 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2437 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2438 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2439 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf244 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2440 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2441 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2442 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2443 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2444 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2445 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2446 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2447 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2448 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2449 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf245 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2450 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2451 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2452 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2453 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2454 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2455 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2456 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2457 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2458 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2459 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf246 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2460 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2461 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2462 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2463 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2464 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2465 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2466 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2467 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2468 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2469 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf247 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2470 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2471 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2472 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2473 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2474 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2475 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2476 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2477 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2478 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2479 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf248 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2480 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2481 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2482 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2483 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2484 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2485 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2486 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2487 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2488 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2489 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf249 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2490 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2491 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2492 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2493 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2494 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2495 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2496 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2497 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2498 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2499 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf25 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf250 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2500 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2501 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2502 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2503 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2504 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2505 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2506 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2507 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2508 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2509 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf251 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2510 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2511 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2512 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2513 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2514 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2515 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2516 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2517 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2518 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2519 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf252 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2520 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2521 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2522 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2523 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2524 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2525 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2526 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2527 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2528 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2529 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf253 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2530 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2531 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2532 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2533 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2534 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2535 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2536 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2537 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2538 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2539 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf254 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2540 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2541 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2542 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2543 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2544 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2545 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2546 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2547 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2548 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2549 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf255 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2550 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2551 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2552 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2553 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2554 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2555 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2556 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2557 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2558 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2559 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf256 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2560 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2561 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2562 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2563 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2564 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2565 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2566 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2567 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2568 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2569 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf257 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2570 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2571 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2572 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2573 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2574 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2575 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2576 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2577 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2578 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2579 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf258 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2580 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2581 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2582 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2583 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2584 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2585 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2586 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2587 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2588 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2589 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf259 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2590 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2591 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2592 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2593 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2594 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2595 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2596 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2597 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2598 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2599 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf26 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf260 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2600 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2601 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2602 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2603 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2604 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2605 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2606 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2607 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2608 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2609 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf261 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2610 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2611 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2612 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2613 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2614 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2615 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2616 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2617 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2618 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2619 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf262 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2620 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2621 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2622 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2623 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2624 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2625 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2626 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2627 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2628 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2629 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf263 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2630 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2631 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2632 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2633 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2634 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2635 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2636 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2637 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2638 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2639 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf264 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2640 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2641 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2642 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2643 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2644 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2645 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2646 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2647 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2648 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2649 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf265 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2650 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2651 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2652 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2653 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2654 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2655 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2656 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2657 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2658 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2659 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf266 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2660 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2661 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2662 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2663 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2664 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2665 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2666 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2667 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2668 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2669 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf267 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2670 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2671 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2672 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2673 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2674 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2675 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2676 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2677 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2678 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2679 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf268 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2680 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2681 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2682 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2683 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2684 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2685 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2686 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2687 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2688 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2689 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf269 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2690 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2691 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2692 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2693 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2694 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2695 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2696 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2697 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2698 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2699 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf27 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf270 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2700 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2701 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2702 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2703 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2704 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2705 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2706 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2707 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2708 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2709 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf271 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2710 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2711 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2712 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2713 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2714 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2715 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2716 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2717 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2718 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2719 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf272 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2720 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2721 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2722 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2723 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2724 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2725 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2726 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2727 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2728 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2729 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf273 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2730 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2731 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2732 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2733 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2734 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2735 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2736 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2737 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2738 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2739 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf274 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2740 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2741 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2742 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2743 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2744 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2745 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2746 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2747 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2748 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2749 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf275 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2750 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2751 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2752 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2753 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2754 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2755 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2756 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2757 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2758 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2759 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf276 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2760 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2761 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2762 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2763 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2764 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2765 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2766 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2767 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2768 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2769 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf277 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2770 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2771 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2772 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2773 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2774 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2775 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2776 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2777 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2778 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2779 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf278 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2780 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2781 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2782 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2783 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2784 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2785 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2786 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2787 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2788 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2789 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf279 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2790 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2791 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2792 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2793 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2794 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2795 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2796 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2797 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2798 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2799 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf28 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf280 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2800 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2801 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2802 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2803 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2804 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2805 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2806 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2807 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2808 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2809 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf281 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2810 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2811 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2812 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2813 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2814 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2815 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2816 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2817 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2818 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2819 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf282 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2820 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2821 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2822 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2823 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2824 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2825 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2826 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2827 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2828 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2829 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf283 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2830 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2831 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2832 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2833 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2834 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2835 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2836 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2837 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2838 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2839 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf284 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2840 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2841 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2842 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2843 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2844 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2845 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2846 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2847 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2848 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2849 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf285 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2850 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2851 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2852 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2853 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2854 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2855 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2856 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2857 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2858 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2859 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf286 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2860 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2861 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2862 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2863 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2864 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2865 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2866 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2867 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2868 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2869 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf287 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2870 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2871 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2872 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2873 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2874 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2875 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2876 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2877 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2878 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2879 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf288 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2880 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2881 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2882 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2883 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2884 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2885 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2886 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2887 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2888 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2889 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf289 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2890 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2891 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2892 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2893 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2894 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2895 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2896 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2897 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2898 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2899 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf29 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf290 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2900 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2901 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2902 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2903 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2904 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2905 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2906 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2907 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2908 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2909 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf291 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2910 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2911 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2912 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2913 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2914 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2915 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2916 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2917 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2918 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2919 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf292 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2920 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2921 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2922 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2923 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2924 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2925 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2926 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2927 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2928 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2929 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf293 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2930 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2931 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2932 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2933 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2934 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2935 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2936 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2937 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2938 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2939 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf294 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2940 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2941 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2942 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2943 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2944 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2945 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2946 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2947 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2948 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2949 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf295 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2950 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2951 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2952 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2953 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2954 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2955 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2956 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2957 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2958 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2959 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf296 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2960 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2961 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2962 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2963 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2964 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2965 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2966 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2967 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2968 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2969 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf297 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2970 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2971 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2972 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2973 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2974 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2975 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2976 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2977 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2978 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2979 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf298 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2980 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2981 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2982 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2983 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2984 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2985 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2986 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2987 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2988 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2989 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf299 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2990 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2991 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2992 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2993 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2994 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2995 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2996 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2997 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2998 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2999 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf30 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf300 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3000 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3001 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3002 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3003 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3004 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3005 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3006 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3007 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3008 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3009 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf301 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3010 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3011 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3012 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3013 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3014 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3015 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3016 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3017 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3018 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3019 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf302 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3020 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3021 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3022 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3023 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3024 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3025 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3026 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3027 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3028 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3029 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf303 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3030 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3031 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3032 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3033 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3034 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3035 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3036 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3037 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3038 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3039 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf304 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3040 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3041 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3042 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3043 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3044 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3045 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3046 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3047 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3048 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3049 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf305 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3050 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3051 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3052 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3053 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3054 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3055 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3056 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3057 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3058 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3059 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf306 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3060 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3061 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3062 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3063 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3064 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3065 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3066 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3067 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3068 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3069 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf307 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3070 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3071 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3072 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3073 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3074 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3075 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3076 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3077 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3078 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3079 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf308 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3080 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3081 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3082 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3083 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3084 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3085 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3086 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3087 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3088 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3089 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf309 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3090 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3091 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3092 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3093 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3094 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3095 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3096 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3097 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3098 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3099 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf31 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf310 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3100 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3101 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3102 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3103 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3104 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3105 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3106 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3107 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3108 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3109 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf311 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3110 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3111 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3112 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3113 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3114 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3115 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3116 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3117 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3118 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3119 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf312 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3120 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3121 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3122 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3123 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3124 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3125 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3126 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3127 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3128 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3129 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf313 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3130 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3131 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3132 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3133 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3134 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3135 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3136 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3137 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3138 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3139 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf314 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3140 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3141 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3142 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3143 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3144 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3145 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3146 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3147 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3148 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3149 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf315 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3150 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3151 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3152 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3153 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3154 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3155 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3156 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3157 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3158 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3159 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf316 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3160 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3161 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3162 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3163 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3164 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3165 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3166 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3167 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3168 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3169 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf317 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3170 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3171 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3172 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3173 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3174 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3175 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3176 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3177 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3178 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3179 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf318 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3180 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3181 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3182 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3183 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3184 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3185 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3186 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3187 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3188 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3189 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf319 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3190 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3191 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3192 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3193 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3194 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3195 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3196 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3197 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3198 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3199 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf32 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf320 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3200 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3201 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3202 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3203 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3204 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3205 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3206 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3207 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3208 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3209 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf321 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3210 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3211 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3212 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3213 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3214 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3215 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3216 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3217 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3218 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3219 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf322 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3220 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3221 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3222 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3223 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3224 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3225 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3226 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3227 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3228 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3229 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf323 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3230 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3231 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3232 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3233 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3234 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3235 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3236 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3237 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3238 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3239 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf324 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3240 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3241 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3242 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3243 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3244 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3245 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3246 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3247 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3248 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3249 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf325 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3250 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3251 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3252 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3253 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3254 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3255 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3256 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3257 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3258 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3259 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf326 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3260 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3261 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3262 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3263 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3264 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3265 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3266 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3267 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3268 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3269 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf327 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3270 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3271 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3272 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3273 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3274 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3275 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3276 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3277 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3278 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3279 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf328 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3280 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3281 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3282 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3283 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3284 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3285 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3286 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3287 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3288 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3289 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf329 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3290 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3291 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3292 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3293 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3294 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3295 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3296 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3297 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3298 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3299 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf33 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf330 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3300 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3301 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3302 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3303 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3304 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3305 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3306 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3307 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3308 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3309 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf331 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3310 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3311 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3312 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3313 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3314 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3315 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3316 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3317 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3318 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3319 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf332 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3320 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3321 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3322 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3323 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3324 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3325 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3326 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3327 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3328 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3329 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf333 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3330 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3331 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3332 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3333 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3334 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3335 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3336 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3337 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3338 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3339 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf334 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3340 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3341 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3342 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3343 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3344 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3345 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3346 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3347 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3348 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3349 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf335 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3350 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3351 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3352 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3353 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3354 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3355 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3356 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3357 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3358 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3359 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf336 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3360 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3361 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3362 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3363 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3364 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3365 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3366 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3367 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3368 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3369 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf337 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3370 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3371 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3372 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3373 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3374 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3375 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3376 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3377 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3378 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3379 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf338 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3380 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3381 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3382 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3383 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3384 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3385 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3386 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3387 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3388 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3389 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf339 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3390 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3391 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3392 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3393 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3394 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3395 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3396 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3397 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3398 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3399 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf34 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf340 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3400 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3401 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3402 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3403 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3404 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3405 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3406 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3407 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3408 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3409 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf341 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3410 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3411 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3412 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3413 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3414 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3415 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3416 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3417 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3418 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3419 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf342 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3420 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3421 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3422 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3423 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3424 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3425 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3426 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3427 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3428 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3429 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf343 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3430 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3431 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3432 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3433 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3434 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3435 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3436 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3437 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3438 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3439 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf344 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3440 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3441 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3442 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3443 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3444 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3445 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3446 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3447 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3448 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3449 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf345 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3450 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3451 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3452 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3453 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3454 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3455 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3456 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3457 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3458 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3459 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf346 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3460 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3461 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3462 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3463 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3464 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3465 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3466 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3467 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3468 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3469 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf347 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3470 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3471 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3472 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3473 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3474 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3475 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3476 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3477 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3478 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3479 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf348 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3480 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3481 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3482 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3483 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3484 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3485 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3486 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3487 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3488 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3489 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf349 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3490 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3491 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3492 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3493 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3494 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3495 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3496 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3497 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3498 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3499 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf35 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf350 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3500 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3501 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3502 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3503 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3504 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3505 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3506 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3507 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3508 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3509 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf351 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3510 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3511 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3512 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3513 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3514 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3515 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3516 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3517 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3518 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3519 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf352 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3520 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3521 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3522 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3523 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3524 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3525 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3526 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3527 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3528 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3529 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf353 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3530 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3531 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3532 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3533 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3534 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3535 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3536 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3537 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3538 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3539 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf354 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3540 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3541 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3542 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3543 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3544 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3545 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3546 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3547 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3548 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3549 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf355 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3550 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3551 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3552 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3553 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3554 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3555 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3556 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3557 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3558 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3559 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf356 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3560 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3561 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3562 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3563 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3564 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3565 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3566 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3567 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3568 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3569 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf357 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3570 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3571 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3572 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3573 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3574 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3575 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3576 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3577 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3578 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3579 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf358 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3580 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3581 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3582 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3583 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3584 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3585 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3586 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3587 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3588 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3589 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf359 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3590 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3591 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3592 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3593 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3594 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3595 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3596 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3597 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3598 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3599 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf36 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf360 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3600 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3601 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3602 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3603 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3604 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3605 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3606 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3607 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3608 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3609 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf361 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3610 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3611 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3612 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3613 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3614 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3615 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3616 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3617 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3618 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3619 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf362 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3620 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3621 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3622 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3623 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3624 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3625 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3626 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3627 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3628 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3629 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf363 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3630 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3631 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3632 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3633 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3634 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3635 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3636 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3637 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3638 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3639 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf364 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3640 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3641 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3642 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3643 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3644 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3645 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3646 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3647 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3648 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3649 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf365 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3650 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3651 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3652 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3653 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3654 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3655 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3656 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3657 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3658 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3659 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf366 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3660 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3661 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3662 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3663 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3664 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3665 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3666 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3667 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3668 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3669 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf367 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3670 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3671 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3672 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3673 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3674 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3675 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3676 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3677 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3678 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3679 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf368 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3680 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3681 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3682 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3683 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3684 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3685 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3686 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3687 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3688 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3689 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf369 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3690 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3691 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3692 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3693 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3694 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3695 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3696 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3697 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3698 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3699 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf37 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf370 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3700 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3701 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3702 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3703 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3704 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3705 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3706 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3707 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3708 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3709 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf371 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3710 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3711 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3712 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3713 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3714 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3715 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3716 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3717 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3718 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3719 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf372 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3720 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3721 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3722 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3723 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3724 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3725 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3726 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3727 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3728 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3729 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf373 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3730 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3731 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3732 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3733 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3734 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3735 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3736 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3737 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3738 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3739 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf374 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3740 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3741 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3742 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3743 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3744 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3745 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3746 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3747 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3748 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3749 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf375 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3750 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3751 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3752 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3753 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3754 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3755 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3756 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3757 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3758 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3759 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf376 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3760 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3761 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3762 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3763 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3764 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3765 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3766 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3767 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3768 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3769 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf377 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3770 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3771 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3772 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3773 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3774 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3775 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3776 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3777 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3778 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3779 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf378 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3780 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3781 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3782 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3783 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3784 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3785 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3786 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3787 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3788 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3789 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf379 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3790 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3791 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3792 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3793 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3794 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3795 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3796 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3797 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3798 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3799 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf38 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf380 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3800 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3801 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3802 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3803 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3804 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3805 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3806 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3807 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3808 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3809 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf381 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3810 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3811 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3812 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3813 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3814 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3815 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3816 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3817 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3818 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3819 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf382 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3820 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3821 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3822 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3823 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3824 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3825 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3826 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3827 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3828 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3829 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf383 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3830 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3831 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3832 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3833 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3834 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3835 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3836 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3837 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3838 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3839 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf384 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3840 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3841 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3842 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3843 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3844 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3845 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3846 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3847 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3848 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3849 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf385 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3850 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3851 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3852 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3853 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3854 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3855 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3856 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3857 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3858 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3859 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf386 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3860 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3861 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3862 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3863 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3864 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3865 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3866 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3867 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3868 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3869 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf387 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3870 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3871 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3872 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3873 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3874 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3875 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3876 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3877 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3878 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3879 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf388 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3880 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3881 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3882 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3883 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3884 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3885 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3886 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3887 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3888 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3889 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf389 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3890 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3891 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3892 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3893 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3894 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3895 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3896 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3897 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3898 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3899 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf39 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf390 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3900 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3901 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3902 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3903 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3904 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3905 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3906 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3907 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3908 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3909 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf391 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3910 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3911 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3912 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3913 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3914 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3915 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3916 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3917 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3918 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3919 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf392 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3920 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3921 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3922 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3923 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3924 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3925 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3926 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3927 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3928 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3929 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf393 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3930 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3931 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3932 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3933 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3934 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3935 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3936 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3937 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3938 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3939 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf394 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3940 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3941 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3942 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3943 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3944 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3945 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3946 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3947 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3948 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3949 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf395 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3950 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3951 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3952 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3953 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3954 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3955 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3956 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3957 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3958 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3959 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf396 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3960 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3961 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3962 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3963 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3964 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3965 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3966 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3967 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3968 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3969 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf397 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3970 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3971 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3972 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3973 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3974 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3975 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3976 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3977 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3978 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3979 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf398 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3980 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3981 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3982 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3983 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3984 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3985 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3986 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3987 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3988 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3989 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf399 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3990 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3991 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3992 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3993 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3994 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3995 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3996 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3997 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3998 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3999 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf40 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf400 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4000 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4001 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4002 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4003 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4004 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4005 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4006 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4007 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4008 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4009 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf401 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4010 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4011 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4012 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4013 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4014 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4015 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4016 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4017 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4018 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4019 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf402 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4020 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4021 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4022 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4023 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4024 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4025 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4026 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4027 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4028 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4029 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf403 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4030 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4031 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4032 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4033 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4034 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4035 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4036 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4037 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4038 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4039 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf404 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4040 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4041 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4042 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4043 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4044 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4045 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4046 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4047 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4048 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4049 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf405 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4050 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4051 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4052 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4053 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4054 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4055 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4056 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4057 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4058 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4059 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf406 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4060 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4061 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4062 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4063 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4064 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4065 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4066 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4067 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4068 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4069 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf407 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4070 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4071 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4072 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4073 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4074 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4075 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4076 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4077 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4078 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4079 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf408 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4080 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4081 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4082 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4083 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4084 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4085 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4086 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4087 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4088 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4089 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf409 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4090 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4091 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4092 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4093 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4094 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf41 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf410 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf411 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf412 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf413 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf414 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf415 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf416 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf417 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf418 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf419 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf42 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf420 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf421 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf422 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf423 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf424 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf425 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf426 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf427 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf428 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf429 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf43 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf430 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf431 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf432 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf433 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf434 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf435 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf436 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf437 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf438 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf439 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf44 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf440 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf441 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf442 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf443 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf444 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf445 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf446 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf447 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf448 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf449 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf45 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf450 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf451 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf452 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf453 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf454 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf455 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf456 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf457 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf458 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf459 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf46 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf460 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf461 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf462 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf463 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf464 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf465 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf466 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf467 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf468 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf469 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf47 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf470 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf471 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf472 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf473 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf474 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf475 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf476 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf477 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf478 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf479 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf48 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf480 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf481 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf482 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf483 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf484 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf485 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf486 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf487 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf488 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf489 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf49 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf490 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf491 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf492 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf493 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf494 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf495 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf496 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf497 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf498 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf499 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf5 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf50 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf500 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf501 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf502 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf503 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf504 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf505 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf506 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf507 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf508 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf509 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf51 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf510 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf511 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf512 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf513 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf514 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf515 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf516 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf517 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf518 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf519 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf52 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf520 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf521 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf522 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf523 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf524 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf525 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf526 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf527 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf528 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf529 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf53 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf530 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf531 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf532 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf533 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf534 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf535 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf536 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf537 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf538 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf539 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf54 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf540 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf541 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf542 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf543 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf544 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf545 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf546 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf547 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf548 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf549 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf55 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf550 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf551 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf552 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf553 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf554 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf555 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf556 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf557 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf558 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf559 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf56 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf560 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf561 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf562 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf563 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf564 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf565 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf566 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf567 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf568 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf569 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf57 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf570 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf571 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf572 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf573 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf574 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf575 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf576 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf577 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf578 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf579 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf58 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf580 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf581 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf582 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf583 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf584 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf585 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf586 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf587 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf588 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf589 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf59 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf590 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf591 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf592 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf593 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf594 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf595 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf596 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf597 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf598 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf599 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf6 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf60 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf600 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf601 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf602 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf603 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf604 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf605 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf606 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf607 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf608 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf609 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf61 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf610 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf611 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf612 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf613 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf614 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf615 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf616 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf617 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf618 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf619 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf62 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf620 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf621 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf622 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf623 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf624 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf625 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf626 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf627 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf628 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf629 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf63 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf630 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf631 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf632 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf633 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf634 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf635 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf636 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf637 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf638 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf639 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf64 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf640 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf641 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf642 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf643 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf644 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf645 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf646 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf647 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf648 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf649 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf65 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf650 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf651 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf652 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf653 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf654 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf655 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf656 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf657 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf658 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf659 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf66 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf660 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf661 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf662 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf663 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf664 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf665 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf666 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf667 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf668 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf669 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf67 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf670 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf671 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf672 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf673 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf674 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf675 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf676 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf677 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf678 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf679 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf68 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf680 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf681 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf682 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf683 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf684 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf685 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf686 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf687 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf688 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf689 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf69 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf690 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf691 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf692 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf693 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf694 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf695 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf696 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf697 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf698 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf699 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf7 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf70 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf700 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf701 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf702 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf703 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf704 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf705 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf706 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf707 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf708 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf709 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf71 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf710 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf711 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf712 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf713 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf714 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf715 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf716 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf717 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf718 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf719 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf72 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf720 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf721 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf722 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf723 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf724 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf725 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf726 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf727 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf728 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf729 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf73 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf730 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf731 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf732 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf733 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf734 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf735 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf736 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf737 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf738 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf739 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf74 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf740 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf741 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf742 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf743 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf744 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf745 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf746 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf747 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf748 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf749 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf75 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf750 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf751 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf752 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf753 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf754 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf755 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf756 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf757 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf758 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf759 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf76 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf760 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf761 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf762 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf763 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf764 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf765 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf766 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf767 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf768 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf769 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf77 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf770 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf771 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf772 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf773 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf774 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf775 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf776 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf777 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf778 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf779 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf78 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf780 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf781 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf782 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf783 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf784 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf785 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf786 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf787 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf788 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf789 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf79 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf790 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf791 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf792 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf793 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf794 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf795 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf796 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf797 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf798 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf799 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf8 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf80 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf800 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf801 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf802 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf803 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf804 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf805 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf806 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf807 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf808 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf809 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf81 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf810 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf811 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf812 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf813 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf814 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf815 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf816 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf817 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf818 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf819 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf82 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf820 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf821 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf822 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf823 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf824 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf825 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf826 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf827 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf828 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf829 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf83 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf830 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf831 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf832 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf833 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf834 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf835 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf836 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf837 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf838 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf839 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf84 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf840 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf841 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf842 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf843 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf844 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf845 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf846 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf847 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf848 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf849 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf85 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf850 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf851 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf852 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf853 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf854 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf855 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf856 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf857 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf858 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf859 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf86 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf860 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf861 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf862 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf863 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf864 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf865 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf866 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf867 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf868 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf869 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf87 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf870 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf871 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf872 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf873 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf874 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf875 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf876 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf877 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf878 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf879 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf88 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf880 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf881 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf882 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf883 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf884 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf885 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf886 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf887 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf888 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf889 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf89 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf890 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf891 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf892 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf893 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf894 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf895 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf896 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf897 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf898 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf899 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf9 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf90 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf900 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf901 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf902 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf903 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf904 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf905 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf906 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf907 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf908 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf909 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf91 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf910 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf911 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf912 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf913 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf914 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf915 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf916 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf917 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf918 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf919 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf92 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf920 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf921 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf922 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf923 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf924 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf925 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf926 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf927 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf928 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf929 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf93 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf930 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf931 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf932 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf933 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf934 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf935 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf936 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf937 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf938 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf939 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf94 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf940 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf941 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf942 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf943 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf944 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf945 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf946 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf947 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf948 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf949 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf95 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf950 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf951 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf952 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf953 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf954 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf955 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf956 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf957 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf958 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf959 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf96 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf960 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf961 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf962 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf963 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf964 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf965 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf966 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf967 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf968 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf969 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf97 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf970 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf971 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf972 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf973 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf974 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf975 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf976 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf977 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf978 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf979 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf98 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf980 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf981 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf982 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf983 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf984 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf985 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf986 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf987 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf988 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf989 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf99 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf990 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf991 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf992 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf993 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf994 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf995 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf996 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf997 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf998 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf999 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf10 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf100 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1000 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1001 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1002 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1003 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1004 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1005 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1006 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1007 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1008 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1009 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf101 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1010 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1011 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1012 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1013 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1014 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1015 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1016 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1017 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1018 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1019 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf102 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1020 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1021 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1022 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1023 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1024 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1025 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1026 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1027 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1028 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1029 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf103 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1030 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1031 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1032 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1033 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1034 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1035 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1036 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1037 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1038 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1039 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf104 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1040 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1041 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1042 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1043 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1044 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1045 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1046 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1047 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1048 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1049 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf105 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1050 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1051 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1052 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1053 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1054 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1055 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1056 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1057 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1058 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1059 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf106 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1060 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1061 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1062 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1063 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1064 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1065 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1066 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1067 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1068 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1069 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf107 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1070 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1071 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1072 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1073 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1074 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1075 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1076 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1077 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1078 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1079 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf108 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1080 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1081 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1082 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1083 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1084 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1085 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1086 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1087 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1088 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1089 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf109 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1090 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1091 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1092 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1093 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1094 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1095 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1096 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1097 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1098 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1099 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf11 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf110 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1100 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1101 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1102 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1103 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1104 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1105 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1106 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1107 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1108 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1109 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf111 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1110 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1111 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1112 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1113 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1114 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1115 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1116 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1117 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1118 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1119 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf112 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1120 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1121 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1122 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1123 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1124 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1125 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1126 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1127 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1128 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1129 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf113 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1130 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1131 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1132 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1133 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1134 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1135 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1136 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1137 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1138 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1139 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf114 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1140 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1141 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1142 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1143 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1144 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1145 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1146 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1147 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1148 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1149 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf115 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1150 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1151 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1152 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1153 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1154 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1155 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1156 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1157 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1158 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1159 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf116 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1160 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1161 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1162 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1163 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1164 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1165 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1166 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1167 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1168 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1169 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf117 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1170 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1171 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1172 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1173 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1174 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1175 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1176 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1177 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1178 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1179 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf118 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1180 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1181 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1182 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1183 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1184 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1185 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1186 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1187 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1188 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1189 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf119 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1190 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1191 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1192 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1193 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1194 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1195 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1196 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1197 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1198 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1199 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf12 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf120 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1200 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1201 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1202 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1203 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1204 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1205 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1206 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1207 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1208 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1209 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf121 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1210 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1211 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1212 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1213 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1214 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1215 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1216 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1217 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1218 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1219 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf122 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1220 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1221 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1222 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1223 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1224 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1225 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1226 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1227 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1228 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1229 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf123 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1230 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1231 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1232 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1233 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1234 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1235 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1236 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1237 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1238 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1239 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf124 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1240 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1241 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1242 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1243 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1244 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1245 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1246 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1247 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1248 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1249 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf125 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1250 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1251 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1252 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1253 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1254 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1255 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1256 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1257 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1258 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1259 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf126 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1260 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1261 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1262 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1263 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1264 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1265 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1266 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1267 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1268 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1269 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf127 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1270 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1271 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1272 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1273 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1274 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1275 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1276 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1277 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1278 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1279 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf128 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1280 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1281 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1282 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1283 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1284 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1285 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1286 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1287 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1288 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1289 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf129 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1290 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1291 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1292 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1293 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1294 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1295 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1296 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1297 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1298 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1299 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf13 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf130 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1300 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1301 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1302 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1303 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1304 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1305 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1306 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1307 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1308 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1309 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf131 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1310 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1311 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1312 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1313 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1314 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1315 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1316 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1317 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1318 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1319 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf132 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1320 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1321 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1322 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1323 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1324 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1325 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1326 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1327 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1328 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1329 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf133 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1330 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1331 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1332 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1333 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1334 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1335 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1336 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1337 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1338 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1339 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf134 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1340 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1341 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1342 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1343 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1344 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1345 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1346 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1347 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1348 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1349 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf135 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1350 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1351 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1352 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1353 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1354 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1355 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1356 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1357 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1358 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1359 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf136 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1360 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1361 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1362 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1363 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1364 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1365 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1366 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1367 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1368 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1369 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf137 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1370 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1371 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1372 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1373 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1374 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1375 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1376 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1377 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1378 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1379 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf138 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1380 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1381 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1382 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1383 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1384 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1385 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1386 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1387 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1388 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1389 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf139 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1390 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1391 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1392 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1393 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1394 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1395 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1396 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1397 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1398 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1399 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf14 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf140 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1400 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1401 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1402 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1403 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1404 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1405 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1406 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1407 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1408 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1409 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf141 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1410 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1411 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1412 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1413 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1414 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1415 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1416 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1417 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1418 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1419 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf142 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1420 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1421 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1422 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1423 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1424 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1425 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1426 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1427 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1428 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1429 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf143 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1430 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1431 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1432 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1433 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1434 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1435 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1436 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1437 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1438 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1439 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf144 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1440 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1441 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1442 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1443 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1444 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1445 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1446 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1447 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1448 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1449 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf145 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1450 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1451 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1452 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1453 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1454 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1455 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1456 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1457 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1458 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1459 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf146 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1460 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1461 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1462 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1463 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1464 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1465 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1466 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1467 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1468 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1469 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf147 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1470 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1471 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1472 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1473 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1474 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1475 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1476 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1477 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1478 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1479 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf148 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1480 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1481 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1482 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1483 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1484 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1485 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1486 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1487 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1488 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1489 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf149 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1490 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1491 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1492 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1493 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1494 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1495 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1496 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1497 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1498 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1499 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf15 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf150 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1500 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1501 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1502 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1503 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1504 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1505 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1506 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1507 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1508 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1509 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf151 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1510 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1511 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1512 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1513 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1514 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1515 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1516 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1517 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1518 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1519 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf152 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1520 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1521 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1522 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1523 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1524 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1525 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1526 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1527 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1528 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1529 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf153 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1530 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1531 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1532 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1533 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1534 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1535 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1536 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1537 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1538 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1539 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf154 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1540 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1541 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1542 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1543 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1544 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1545 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1546 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1547 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1548 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1549 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf155 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1550 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1551 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1552 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1553 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1554 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1555 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1556 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1557 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1558 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1559 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf156 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1560 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1561 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1562 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1563 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1564 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1565 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1566 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1567 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1568 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1569 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf157 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1570 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1571 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1572 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1573 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1574 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1575 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1576 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1577 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1578 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1579 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf158 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1580 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1581 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1582 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1583 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1584 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1585 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1586 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1587 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1588 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1589 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf159 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1590 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1591 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1592 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1593 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1594 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1595 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1596 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1597 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1598 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1599 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf16 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf160 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1600 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1601 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1602 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1603 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1604 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1605 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1606 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1607 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1608 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1609 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf161 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1610 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1611 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1612 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1613 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1614 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1615 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1616 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1617 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1618 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1619 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf162 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1620 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1621 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1622 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1623 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1624 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1625 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1626 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1627 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1628 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1629 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf163 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1630 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1631 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1632 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1633 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1634 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1635 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1636 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1637 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1638 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1639 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf164 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1640 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1641 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1642 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1643 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1644 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1645 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1646 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1647 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1648 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1649 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf165 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1650 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1651 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1652 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1653 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1654 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1655 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1656 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1657 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1658 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1659 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf166 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1660 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1661 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1662 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1663 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1664 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1665 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1666 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1667 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1668 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1669 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf167 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1670 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1671 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1672 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1673 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1674 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1675 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1676 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1677 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1678 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1679 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf168 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1680 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1681 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1682 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1683 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1684 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1685 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1686 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1687 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1688 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1689 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf169 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1690 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1691 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1692 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1693 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1694 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1695 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1696 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1697 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1698 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1699 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf17 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf170 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1700 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1701 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1702 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1703 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1704 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1705 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1706 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1707 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1708 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1709 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf171 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1710 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1711 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1712 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1713 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1714 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1715 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1716 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1717 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1718 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1719 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf172 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1720 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1721 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1722 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1723 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1724 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1725 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1726 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1727 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1728 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1729 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf173 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1730 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1731 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1732 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1733 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1734 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1735 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1736 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1737 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1738 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1739 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf174 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1740 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1741 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1742 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1743 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1744 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1745 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1746 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1747 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1748 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1749 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf175 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1750 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1751 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1752 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1753 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1754 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1755 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1756 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1757 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1758 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1759 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf176 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1760 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1761 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1762 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1763 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1764 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1765 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1766 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1767 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1768 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1769 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf177 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1770 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1771 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1772 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1773 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1774 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1775 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1776 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1777 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1778 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1779 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf178 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1780 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1781 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1782 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1783 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1784 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1785 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1786 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1787 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1788 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1789 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf179 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1790 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1791 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1792 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1793 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1794 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1795 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1796 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1797 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1798 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1799 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf18 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf180 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1800 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1801 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1802 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1803 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1804 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1805 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1806 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1807 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1808 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1809 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf181 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1810 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1811 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1812 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1813 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1814 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1815 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1816 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1817 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1818 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1819 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf182 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1820 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1821 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1822 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1823 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1824 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1825 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1826 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1827 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1828 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1829 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf183 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1830 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1831 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1832 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1833 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1834 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1835 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1836 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1837 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1838 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1839 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf184 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1840 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1841 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1842 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1843 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1844 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1845 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1846 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1847 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1848 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1849 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf185 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1850 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1851 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1852 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1853 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1854 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1855 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1856 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1857 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1858 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1859 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf186 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1860 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1861 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1862 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1863 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1864 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1865 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1866 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1867 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1868 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1869 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf187 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1870 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1871 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1872 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1873 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1874 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1875 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1876 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1877 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1878 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1879 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf188 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1880 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1881 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1882 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1883 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1884 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1885 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1886 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1887 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1888 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1889 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf189 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1890 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1891 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1892 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1893 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1894 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1895 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1896 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1897 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1898 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1899 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf19 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf190 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1900 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1901 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1902 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1903 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1904 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1905 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1906 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1907 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1908 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1909 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf191 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1910 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1911 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1912 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1913 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1914 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1915 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1916 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1917 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1918 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1919 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf192 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1920 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1921 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1922 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1923 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1924 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1925 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1926 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1927 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1928 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1929 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf193 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1930 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1931 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1932 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1933 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1934 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1935 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1936 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1937 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1938 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1939 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf194 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1940 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1941 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1942 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1943 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1944 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1945 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1946 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1947 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1948 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1949 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf195 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1950 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1951 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1952 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1953 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1954 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1955 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1956 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1957 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1958 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1959 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf196 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1960 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1961 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1962 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1963 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1964 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1965 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1966 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1967 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1968 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1969 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf197 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1970 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1971 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1972 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1973 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1974 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1975 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1976 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1977 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1978 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1979 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf198 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1980 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1981 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1982 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1983 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1984 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1985 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1986 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1987 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1988 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1989 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf199 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1990 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1991 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1992 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1993 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1994 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1995 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1996 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1997 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1998 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1999 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf20 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf200 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2000 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2001 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2002 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2003 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2004 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2005 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2006 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2007 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2008 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2009 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf201 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2010 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2011 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2012 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2013 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2014 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2015 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2016 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2017 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2018 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2019 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf202 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2020 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2021 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2022 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2023 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2024 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2025 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2026 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2027 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2028 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2029 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf203 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2030 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2031 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2032 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2033 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2034 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2035 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2036 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2037 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2038 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2039 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf204 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2040 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2041 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2042 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2043 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2044 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2045 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2046 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2047 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2048 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2049 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf205 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2050 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2051 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2052 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2053 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2054 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2055 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2056 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2057 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2058 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2059 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf206 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2060 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2061 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2062 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2063 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2064 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2065 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2066 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2067 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2068 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2069 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf207 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2070 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2071 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2072 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2073 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2074 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2075 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2076 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2077 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2078 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2079 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf208 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2080 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2081 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2082 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2083 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2084 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2085 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2086 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2087 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2088 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2089 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf209 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2090 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2091 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2092 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2093 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2094 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2095 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2096 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2097 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2098 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2099 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf21 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf210 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2100 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2101 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2102 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2103 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2104 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2105 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2106 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2107 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2108 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2109 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf211 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2110 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2111 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2112 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2113 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2114 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2115 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2116 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2117 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2118 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2119 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf212 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2120 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2121 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2122 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2123 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2124 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2125 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2126 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2127 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2128 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2129 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf213 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2130 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2131 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2132 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2133 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2134 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2135 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2136 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2137 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2138 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2139 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf214 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2140 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2141 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2142 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2143 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2144 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2145 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2146 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2147 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2148 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2149 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf215 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2150 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2151 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2152 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2153 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2154 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2155 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2156 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2157 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2158 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2159 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf216 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2160 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2161 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2162 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2163 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2164 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2165 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2166 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2167 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2168 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2169 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf217 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2170 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2171 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2172 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2173 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2174 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2175 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2176 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2177 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2178 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2179 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf218 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2180 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2181 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2182 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2183 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2184 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2185 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2186 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2187 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2188 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2189 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf219 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2190 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2191 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2192 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2193 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2194 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2195 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2196 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2197 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2198 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2199 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf22 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf220 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2200 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2201 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2202 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2203 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2204 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2205 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2206 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2207 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2208 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2209 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf221 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2210 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2211 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2212 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2213 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2214 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2215 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2216 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2217 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2218 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2219 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf222 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2220 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2221 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2222 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2223 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2224 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2225 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2226 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2227 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2228 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2229 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf223 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2230 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2231 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2232 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2233 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2234 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2235 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2236 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2237 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2238 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2239 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf224 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2240 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2241 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2242 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2243 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2244 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2245 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2246 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2247 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2248 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2249 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf225 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2250 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2251 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2252 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2253 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2254 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2255 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2256 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2257 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2258 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2259 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf226 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2260 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2261 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2262 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2263 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2264 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2265 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2266 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2267 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2268 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2269 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf227 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2270 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2271 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2272 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2273 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2274 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2275 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2276 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2277 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2278 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2279 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf228 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2280 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2281 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2282 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2283 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2284 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2285 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2286 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2287 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2288 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2289 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf229 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2290 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2291 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2292 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2293 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2294 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2295 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2296 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2297 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2298 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2299 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf23 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf230 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2300 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2301 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2302 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2303 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2304 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2305 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2306 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2307 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2308 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2309 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf231 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2310 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2311 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2312 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2313 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2314 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2315 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2316 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2317 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2318 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2319 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf232 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2320 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2321 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2322 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2323 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2324 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2325 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2326 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2327 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2328 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2329 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf233 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2330 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2331 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2332 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2333 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2334 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2335 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2336 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2337 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2338 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2339 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf234 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2340 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2341 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2342 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2343 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2344 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2345 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2346 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2347 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2348 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2349 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf235 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2350 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2351 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2352 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2353 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2354 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2355 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2356 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2357 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2358 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2359 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf236 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2360 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2361 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2362 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2363 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2364 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2365 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2366 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2367 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2368 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2369 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf237 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2370 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2371 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2372 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2373 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2374 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2375 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2376 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2377 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2378 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2379 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf238 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2380 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2381 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2382 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2383 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2384 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2385 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2386 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2387 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2388 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2389 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf239 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2390 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2391 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2392 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2393 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2394 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2395 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2396 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2397 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2398 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2399 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf24 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf240 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2400 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2401 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2402 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2403 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2404 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2405 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2406 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2407 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2408 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2409 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf241 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2410 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2411 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2412 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2413 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2414 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2415 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2416 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2417 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2418 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2419 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf242 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2420 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2421 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2422 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2423 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2424 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2425 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2426 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2427 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2428 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2429 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf243 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2430 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2431 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2432 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2433 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2434 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2435 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2436 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2437 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2438 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2439 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf244 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2440 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2441 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2442 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2443 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2444 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2445 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2446 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2447 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2448 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2449 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf245 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2450 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2451 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2452 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2453 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2454 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2455 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2456 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2457 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2458 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2459 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf246 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2460 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2461 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2462 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2463 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2464 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2465 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2466 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2467 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2468 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2469 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf247 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2470 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2471 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2472 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2473 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2474 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2475 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2476 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2477 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2478 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2479 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf248 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2480 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2481 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2482 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2483 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2484 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2485 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2486 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2487 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2488 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2489 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf249 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2490 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2491 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2492 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2493 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2494 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2495 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2496 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2497 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2498 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2499 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf25 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf250 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2500 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2501 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2502 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2503 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2504 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2505 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2506 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2507 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2508 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2509 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf251 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2510 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2511 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2512 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2513 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2514 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2515 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2516 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2517 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2518 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2519 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf252 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2520 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2521 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2522 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2523 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2524 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2525 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2526 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2527 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2528 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2529 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf253 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2530 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2531 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2532 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2533 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2534 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2535 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2536 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2537 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2538 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2539 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf254 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2540 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2541 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2542 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2543 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2544 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2545 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2546 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2547 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2548 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2549 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf255 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2550 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2551 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2552 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2553 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2554 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2555 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2556 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2557 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2558 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2559 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf256 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2560 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2561 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2562 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2563 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2564 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2565 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2566 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2567 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2568 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2569 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf257 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2570 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2571 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2572 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2573 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2574 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2575 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2576 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2577 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2578 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2579 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf258 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2580 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2581 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2582 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2583 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2584 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2585 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2586 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2587 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2588 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2589 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf259 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2590 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2591 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2592 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2593 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2594 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2595 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2596 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2597 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2598 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2599 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf26 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf260 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2600 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2601 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2602 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2603 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2604 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2605 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2606 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2607 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2608 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2609 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf261 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2610 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2611 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2612 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2613 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2614 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2615 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2616 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2617 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2618 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2619 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf262 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2620 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2621 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2622 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2623 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2624 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2625 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2626 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2627 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2628 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2629 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf263 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2630 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2631 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2632 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2633 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2634 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2635 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2636 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2637 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2638 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2639 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf264 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2640 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2641 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2642 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2643 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2644 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2645 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2646 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2647 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2648 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2649 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf265 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2650 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2651 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2652 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2653 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2654 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2655 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2656 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2657 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2658 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2659 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf266 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2660 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2661 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2662 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2663 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2664 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2665 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2666 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2667 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2668 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2669 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf267 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2670 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2671 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2672 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2673 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2674 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2675 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2676 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2677 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2678 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2679 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf268 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2680 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2681 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2682 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2683 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2684 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2685 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2686 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2687 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2688 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2689 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf269 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2690 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2691 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2692 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2693 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2694 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2695 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2696 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2697 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2698 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2699 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf27 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf270 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2700 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2701 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2702 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2703 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2704 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2705 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2706 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2707 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2708 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2709 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf271 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2710 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2711 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2712 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2713 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2714 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2715 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2716 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2717 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2718 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2719 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf272 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2720 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2721 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2722 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2723 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2724 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2725 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2726 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2727 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2728 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2729 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf273 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2730 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2731 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2732 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2733 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2734 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2735 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2736 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2737 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2738 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2739 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf274 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2740 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2741 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2742 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2743 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2744 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2745 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2746 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2747 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2748 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2749 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf275 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2750 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2751 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2752 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2753 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2754 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2755 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2756 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2757 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2758 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2759 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf276 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2760 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2761 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2762 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2763 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2764 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2765 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2766 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2767 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2768 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2769 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf277 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2770 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2771 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2772 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2773 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2774 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2775 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2776 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2777 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2778 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2779 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf278 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2780 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2781 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2782 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2783 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2784 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2785 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2786 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2787 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2788 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2789 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf279 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2790 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2791 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2792 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2793 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2794 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2795 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2796 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2797 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2798 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2799 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf28 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf280 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2800 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2801 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2802 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2803 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2804 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2805 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2806 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2807 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2808 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2809 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf281 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2810 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2811 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2812 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2813 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2814 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2815 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2816 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2817 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2818 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2819 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf282 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2820 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2821 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2822 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2823 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2824 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2825 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2826 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2827 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2828 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2829 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf283 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2830 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2831 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2832 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2833 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2834 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2835 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2836 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2837 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2838 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2839 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf284 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2840 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2841 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2842 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2843 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2844 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2845 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2846 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2847 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2848 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2849 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf285 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2850 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2851 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2852 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2853 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2854 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2855 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2856 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2857 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2858 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2859 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf286 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2860 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2861 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2862 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2863 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2864 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2865 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2866 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2867 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2868 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2869 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf287 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2870 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2871 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2872 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2873 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2874 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2875 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2876 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2877 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2878 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2879 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf288 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2880 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2881 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2882 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2883 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2884 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2885 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2886 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2887 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2888 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2889 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf289 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2890 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2891 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2892 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2893 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2894 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2895 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2896 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2897 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2898 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2899 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf29 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf290 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2900 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2901 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2902 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2903 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2904 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2905 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2906 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2907 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2908 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2909 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf291 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2910 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2911 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2912 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2913 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2914 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2915 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2916 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2917 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2918 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2919 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf292 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2920 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2921 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2922 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2923 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2924 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2925 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2926 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2927 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2928 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2929 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf293 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2930 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2931 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2932 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2933 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2934 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2935 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2936 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2937 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2938 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2939 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf294 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2940 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2941 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2942 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2943 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2944 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2945 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2946 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2947 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2948 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2949 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf295 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2950 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2951 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2952 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2953 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2954 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2955 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2956 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2957 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2958 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2959 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf296 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2960 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2961 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2962 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2963 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2964 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2965 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2966 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2967 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2968 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2969 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf297 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2970 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2971 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2972 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2973 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2974 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2975 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2976 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2977 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2978 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2979 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf298 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2980 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2981 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2982 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2983 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2984 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2985 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2986 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2987 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2988 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2989 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf299 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2990 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2991 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2992 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2993 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2994 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2995 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2996 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2997 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2998 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2999 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf30 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf300 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3000 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3001 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3002 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3003 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3004 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3005 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3006 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3007 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3008 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3009 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf301 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3010 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3011 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3012 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3013 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3014 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3015 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3016 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3017 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3018 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3019 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf302 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3020 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3021 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3022 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3023 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3024 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3025 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3026 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3027 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3028 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3029 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf303 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3030 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3031 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3032 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3033 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3034 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3035 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3036 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3037 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3038 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3039 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf304 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3040 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3041 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3042 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3043 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3044 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3045 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3046 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3047 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3048 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3049 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf305 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3050 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3051 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3052 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3053 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3054 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3055 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3056 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3057 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3058 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3059 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf306 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3060 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3061 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3062 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3063 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3064 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3065 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3066 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3067 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3068 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3069 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf307 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3070 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3071 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3072 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3073 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3074 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3075 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3076 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3077 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3078 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3079 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf308 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3080 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3081 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3082 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3083 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3084 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3085 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3086 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3087 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3088 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3089 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf309 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3090 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3091 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3092 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3093 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3094 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3095 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3096 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3097 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3098 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3099 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf31 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf310 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3100 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3101 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3102 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3103 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3104 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3105 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3106 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3107 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3108 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3109 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf311 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3110 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3111 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3112 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3113 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3114 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3115 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3116 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3117 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3118 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3119 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf312 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3120 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3121 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3122 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3123 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3124 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3125 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3126 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3127 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3128 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3129 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf313 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3130 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3131 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3132 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3133 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3134 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3135 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3136 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3137 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3138 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3139 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf314 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3140 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3141 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3142 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3143 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3144 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3145 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3146 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3147 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3148 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3149 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf315 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3150 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3151 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3152 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3153 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3154 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3155 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3156 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3157 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3158 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3159 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf316 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3160 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3161 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3162 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3163 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3164 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3165 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3166 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3167 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3168 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3169 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf317 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3170 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3171 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3172 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3173 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3174 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3175 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3176 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3177 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3178 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3179 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf318 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3180 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3181 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3182 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3183 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3184 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3185 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3186 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3187 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3188 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3189 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf319 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3190 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3191 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3192 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3193 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3194 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3195 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3196 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3197 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3198 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3199 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf32 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf320 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3200 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3201 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3202 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3203 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3204 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3205 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3206 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3207 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3208 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3209 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf321 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3210 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3211 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3212 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3213 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3214 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3215 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3216 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3217 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3218 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3219 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf322 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3220 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3221 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3222 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3223 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3224 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3225 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3226 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3227 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3228 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3229 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf323 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3230 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3231 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3232 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3233 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3234 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3235 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3236 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3237 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3238 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3239 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf324 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3240 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3241 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3242 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3243 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3244 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3245 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3246 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3247 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3248 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3249 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf325 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3250 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3251 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3252 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3253 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3254 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3255 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3256 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3257 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3258 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3259 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf326 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3260 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3261 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3262 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3263 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3264 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3265 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3266 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3267 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3268 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3269 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf327 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3270 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3271 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3272 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3273 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3274 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3275 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3276 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3277 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3278 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3279 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf328 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3280 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3281 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3282 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3283 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3284 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3285 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3286 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3287 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3288 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3289 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf329 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3290 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3291 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3292 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3293 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3294 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3295 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3296 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3297 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3298 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3299 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf33 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf330 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3300 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3301 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3302 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3303 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3304 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3305 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3306 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3307 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3308 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3309 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf331 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3310 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3311 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3312 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3313 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3314 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3315 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3316 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3317 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3318 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3319 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf332 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3320 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3321 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3322 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3323 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3324 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3325 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3326 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3327 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3328 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3329 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf333 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3330 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3331 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3332 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3333 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3334 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3335 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3336 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3337 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3338 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3339 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf334 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3340 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3341 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3342 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3343 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3344 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3345 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3346 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3347 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3348 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3349 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf335 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3350 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3351 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3352 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3353 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3354 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3355 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3356 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3357 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3358 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3359 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf336 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3360 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3361 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3362 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3363 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3364 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3365 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3366 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3367 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3368 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3369 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf337 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3370 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3371 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3372 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3373 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3374 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3375 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3376 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3377 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3378 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3379 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf338 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3380 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3381 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3382 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3383 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3384 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3385 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3386 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3387 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3388 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3389 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf339 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3390 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3391 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3392 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3393 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3394 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3395 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3396 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3397 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3398 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3399 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf34 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf340 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3400 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3401 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3402 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3403 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3404 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3405 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3406 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3407 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3408 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3409 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf341 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3410 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3411 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3412 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3413 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3414 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3415 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3416 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3417 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3418 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3419 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf342 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3420 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3421 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3422 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3423 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3424 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3425 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3426 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3427 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3428 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3429 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf343 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3430 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3431 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3432 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3433 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3434 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3435 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3436 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3437 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3438 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3439 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf344 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3440 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3441 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3442 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3443 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3444 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3445 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3446 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3447 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3448 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3449 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf345 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3450 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3451 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3452 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3453 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3454 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3455 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3456 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3457 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3458 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3459 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf346 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3460 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3461 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3462 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3463 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3464 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3465 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3466 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3467 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3468 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3469 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf347 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3470 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3471 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3472 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3473 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3474 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3475 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3476 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3477 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3478 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3479 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf348 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3480 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3481 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3482 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3483 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3484 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3485 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3486 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3487 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3488 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3489 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf349 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3490 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3491 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3492 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3493 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3494 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3495 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3496 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3497 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3498 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3499 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf35 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf350 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3500 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3501 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3502 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3503 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3504 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3505 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3506 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3507 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3508 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3509 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf351 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3510 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3511 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3512 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3513 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3514 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3515 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3516 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3517 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3518 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3519 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf352 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3520 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3521 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3522 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3523 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3524 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3525 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3526 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3527 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3528 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3529 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf353 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3530 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3531 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3532 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3533 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3534 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3535 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3536 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3537 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3538 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3539 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf354 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3540 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3541 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3542 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3543 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3544 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3545 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3546 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3547 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3548 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3549 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf355 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3550 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3551 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3552 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3553 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3554 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3555 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3556 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3557 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3558 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3559 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf356 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3560 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3561 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3562 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3563 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3564 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3565 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3566 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3567 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3568 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3569 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf357 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3570 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3571 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3572 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3573 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3574 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3575 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3576 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3577 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3578 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3579 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf358 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3580 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3581 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3582 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3583 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3584 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3585 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3586 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3587 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3588 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3589 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf359 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3590 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3591 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3592 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3593 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3594 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3595 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3596 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3597 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3598 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3599 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf36 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf360 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3600 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3601 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3602 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3603 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3604 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3605 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3606 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3607 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3608 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3609 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf361 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3610 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3611 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3612 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3613 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3614 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3615 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3616 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3617 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3618 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3619 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf362 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3620 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3621 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3622 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3623 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3624 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3625 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3626 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3627 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3628 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3629 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf363 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3630 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3631 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3632 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3633 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3634 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3635 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3636 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3637 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3638 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3639 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf364 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3640 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3641 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3642 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3643 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3644 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3645 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3646 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3647 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3648 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3649 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf365 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3650 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3651 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3652 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3653 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3654 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3655 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3656 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3657 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3658 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3659 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf366 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3660 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3661 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3662 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3663 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3664 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3665 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3666 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3667 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3668 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3669 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf367 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3670 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3671 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3672 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3673 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3674 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3675 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3676 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3677 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3678 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3679 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf368 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3680 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3681 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3682 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3683 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3684 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3685 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3686 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3687 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3688 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3689 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf369 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3690 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3691 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3692 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3693 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3694 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3695 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3696 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3697 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3698 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3699 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf37 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf370 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3700 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3701 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3702 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3703 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3704 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3705 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3706 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3707 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3708 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3709 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf371 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3710 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3711 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3712 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3713 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3714 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3715 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3716 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3717 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3718 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3719 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf372 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3720 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3721 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3722 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3723 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3724 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3725 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3726 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3727 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3728 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3729 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf373 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3730 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3731 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3732 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3733 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3734 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3735 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3736 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3737 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3738 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3739 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf374 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3740 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3741 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3742 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3743 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3744 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3745 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3746 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3747 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3748 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3749 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf375 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3750 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3751 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3752 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3753 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3754 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3755 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3756 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3757 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3758 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3759 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf376 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3760 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3761 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3762 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3763 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3764 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3765 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3766 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3767 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3768 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3769 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf377 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3770 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3771 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3772 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3773 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3774 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3775 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3776 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3777 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3778 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3779 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf378 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3780 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3781 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3782 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3783 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3784 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3785 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3786 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3787 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3788 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3789 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf379 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3790 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3791 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3792 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3793 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3794 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3795 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3796 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3797 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3798 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3799 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf38 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf380 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3800 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3801 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3802 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3803 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3804 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3805 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3806 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3807 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3808 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3809 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf381 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3810 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3811 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3812 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3813 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3814 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3815 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3816 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3817 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3818 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3819 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf382 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3820 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3821 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3822 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3823 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3824 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3825 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3826 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3827 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3828 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3829 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf383 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3830 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3831 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3832 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3833 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3834 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3835 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3836 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3837 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3838 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3839 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf384 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3840 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3841 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3842 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3843 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3844 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3845 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3846 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3847 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3848 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3849 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf385 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3850 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3851 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3852 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3853 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3854 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3855 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3856 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3857 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3858 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3859 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf386 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3860 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3861 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3862 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3863 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3864 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3865 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3866 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3867 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3868 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3869 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf387 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3870 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3871 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3872 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3873 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3874 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3875 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3876 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3877 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3878 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3879 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf388 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3880 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3881 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3882 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3883 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3884 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3885 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3886 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3887 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3888 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3889 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf389 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3890 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3891 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3892 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3893 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3894 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3895 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3896 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3897 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3898 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3899 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf39 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf390 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3900 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3901 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3902 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3903 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3904 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3905 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3906 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3907 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3908 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3909 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf391 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3910 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3911 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3912 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3913 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3914 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3915 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3916 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3917 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3918 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3919 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf392 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3920 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3921 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3922 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3923 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3924 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3925 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3926 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3927 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3928 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3929 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf393 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3930 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3931 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3932 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3933 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3934 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3935 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3936 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3937 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3938 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3939 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf394 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3940 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3941 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3942 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3943 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3944 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3945 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3946 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3947 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3948 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3949 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf395 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3950 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3951 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3952 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3953 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3954 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3955 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3956 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3957 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3958 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3959 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf396 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3960 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3961 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3962 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3963 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3964 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3965 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3966 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3967 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3968 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3969 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf397 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3970 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3971 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3972 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3973 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3974 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3975 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3976 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3977 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3978 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3979 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf398 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3980 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3981 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3982 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3983 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3984 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3985 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3986 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3987 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3988 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3989 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf399 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3990 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3991 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3992 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3993 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3994 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3995 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3996 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3997 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3998 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3999 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf40 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf400 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4000 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4001 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4002 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4003 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4004 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4005 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4006 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4007 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4008 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4009 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf401 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4010 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4011 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4012 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4013 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4014 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4015 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4016 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4017 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4018 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4019 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf402 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4020 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4021 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4022 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4023 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4024 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4025 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4026 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4027 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4028 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4029 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf403 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4030 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4031 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4032 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4033 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4034 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4035 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4036 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4037 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4038 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4039 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf404 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4040 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4041 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4042 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4043 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4044 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4045 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4046 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4047 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4048 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4049 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf405 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4050 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4051 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4052 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4053 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4054 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4055 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4056 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4057 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4058 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4059 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf406 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4060 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4061 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4062 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4063 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4064 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4065 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4066 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4067 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4068 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4069 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf407 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4070 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4071 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4072 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4073 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4074 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4075 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4076 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4077 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4078 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4079 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf408 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4080 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4081 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4082 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4083 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4084 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4085 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4086 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4087 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4088 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4089 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf409 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4090 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4091 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4092 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4093 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4094 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4095 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4096 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf41 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf410 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf411 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf412 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf413 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf414 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf415 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf416 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf417 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf418 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf419 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf42 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf420 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf421 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf422 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf423 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf424 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf425 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf426 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf427 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf428 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf429 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf43 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf430 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf431 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf432 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf433 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf434 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf435 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf436 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf437 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf438 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf439 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf44 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf440 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf441 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf442 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf443 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf444 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf445 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf446 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf447 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf448 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf449 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf45 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf450 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf451 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf452 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf453 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf454 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf455 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf456 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf457 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf458 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf459 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf46 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf460 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf461 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf462 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf463 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf464 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf465 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf466 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf467 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf468 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf469 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf47 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf470 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf471 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf472 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf473 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf474 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf475 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf476 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf477 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf478 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf479 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf48 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf480 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf481 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf482 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf483 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf484 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf485 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf486 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf487 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf488 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf489 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf49 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf490 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf491 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf492 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf493 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf494 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf495 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf496 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf497 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf498 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf499 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf5 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf50 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf500 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf501 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf502 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf503 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf504 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf505 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf506 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf507 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf508 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf509 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf51 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf510 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf511 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf512 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf513 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf514 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf515 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf516 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf517 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf518 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf519 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf52 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf520 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf521 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf522 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf523 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf524 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf525 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf526 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf527 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf528 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf529 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf53 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf530 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf531 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf532 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf533 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf534 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf535 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf536 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf537 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf538 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf539 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf54 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf540 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf541 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf542 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf543 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf544 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf545 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf546 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf547 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf548 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf549 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf55 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf550 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf551 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf552 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf553 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf554 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf555 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf556 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf557 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf558 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf559 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf56 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf560 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf561 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf562 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf563 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf564 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf565 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf566 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf567 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf568 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf569 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf57 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf570 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf571 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf572 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf573 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf574 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf575 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf576 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf577 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf578 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf579 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf58 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf580 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf581 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf582 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf583 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf584 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf585 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf586 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf587 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf588 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf589 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf59 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf590 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf591 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf592 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf593 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf594 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf595 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf596 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf597 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf598 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf599 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf6 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf60 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf600 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf601 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf602 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf603 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf604 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf605 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf606 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf607 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf608 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf609 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf61 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf610 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf611 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf612 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf613 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf614 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf615 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf616 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf617 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf618 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf619 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf62 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf620 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf621 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf622 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf623 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf624 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf625 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf626 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf627 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf628 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf629 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf63 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf630 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf631 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf632 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf633 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf634 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf635 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf636 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf637 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf638 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf639 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf64 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf640 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf641 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf642 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf643 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf644 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf645 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf646 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf647 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf648 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf649 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf65 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf650 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf651 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf652 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf653 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf654 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf655 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf656 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf657 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf658 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf659 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf66 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf660 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf661 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf662 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf663 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf664 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf665 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf666 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf667 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf668 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf669 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf67 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf670 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf671 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf672 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf673 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf674 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf675 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf676 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf677 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf678 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf679 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf68 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf680 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf681 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf682 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf683 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf684 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf685 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf686 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf687 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf688 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf689 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf69 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf690 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf691 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf692 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf693 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf694 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf695 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf696 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf697 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf698 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf699 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf7 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf70 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf700 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf701 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf702 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf703 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf704 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf705 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf706 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf707 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf708 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf709 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf71 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf710 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf711 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf712 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf713 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf714 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf715 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf716 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf717 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf718 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf719 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf72 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf720 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf721 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf722 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf723 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf724 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf725 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf726 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf727 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf728 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf729 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf73 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf730 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf731 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf732 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf733 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf734 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf735 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf736 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf737 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf738 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf739 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf74 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf740 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf741 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf742 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf743 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf744 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf745 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf746 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf747 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf748 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf749 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf75 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf750 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf751 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf752 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf753 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf754 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf755 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf756 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf757 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf758 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf759 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf76 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf760 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf761 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf762 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf763 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf764 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf765 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf766 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf767 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf768 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf769 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf77 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf770 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf771 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf772 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf773 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf774 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf775 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf776 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf777 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf778 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf779 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf78 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf780 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf781 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf782 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf783 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf784 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf785 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf786 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf787 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf788 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf789 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf79 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf790 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf791 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf792 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf793 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf794 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf795 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf796 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf797 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf798 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf799 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf8 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf80 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf800 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf801 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf802 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf803 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf804 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf805 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf806 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf807 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf808 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf809 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf81 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf810 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf811 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf812 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf813 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf814 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf815 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf816 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf817 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf818 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf819 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf82 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf820 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf821 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf822 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf823 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf824 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf825 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf826 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf827 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf828 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf829 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf83 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf830 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf831 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf832 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf833 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf834 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf835 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf836 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf837 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf838 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf839 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf84 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf840 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf841 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf842 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf843 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf844 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf845 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf846 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf847 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf848 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf849 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf85 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf850 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf851 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf852 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf853 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf854 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf855 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf856 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf857 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf858 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf859 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf86 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf860 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf861 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf862 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf863 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf864 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf865 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf866 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf867 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf868 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf869 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf87 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf870 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf871 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf872 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf873 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf874 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf875 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf876 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf877 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf878 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf879 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf88 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf880 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf881 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf882 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf883 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf884 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf885 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf886 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf887 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf888 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf889 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf89 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf890 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf891 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf892 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf893 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf894 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf895 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf896 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf897 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf898 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf899 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf9 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf90 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf900 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf901 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf902 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf903 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf904 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf905 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf906 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf907 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf908 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf909 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf91 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf910 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf911 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf912 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf913 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf914 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf915 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf916 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf917 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf918 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf919 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf92 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf920 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf921 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf922 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf923 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf924 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf925 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf926 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf927 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf928 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf929 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf93 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf930 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf931 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf932 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf933 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf934 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf935 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf936 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf937 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf938 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf939 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf94 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf940 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf941 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf942 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf943 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf944 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf945 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf946 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf947 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf948 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf949 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf95 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf950 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf951 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf952 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf953 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf954 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf955 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf956 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf957 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf958 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf959 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf96 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf960 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf961 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf962 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf963 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf964 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf965 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf966 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf967 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf968 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf969 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf97 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf970 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf971 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf972 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf973 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf974 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf975 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf976 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf977 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf978 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf979 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf98 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf980 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf981 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf982 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf983 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf984 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf985 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf986 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf987 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf988 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf989 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf99 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf990 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf991 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf992 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf993 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf994 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf995 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf996 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf997 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf998 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf999 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance mgmt { + type ip-vrf + admin-state enable + description "Management network instance" + interface mgmt0.0 { + } + protocols { + linux { + import-routes true + export-routes true + export-neighbors true + } + } + } \ No newline at end of file diff --git a/driver/network/test-fixtures/golden/send-command-giant-nokia_srl-system-out.txt b/driver/network/test-fixtures/golden/send-command-giant-nokia_srl-system-out.txt new file mode 100644 index 0000000..81e811f --- /dev/null +++ b/driver/network/test-fixtures/golden/send-command-giant-nokia_srl-system-out.txt @@ -0,0 +1,42292 @@ + acl { + cpm-filter { + ipv4-filter { + statistics-per-entry true + entry 10 { + description "Accept incoming ICMP unreachable messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type dest-unreachable + code [ + 0 + 1 + 2 + 3 + 4 + 13 + ] + } + } + } + entry 20 { + description "Accept incoming ICMP time-exceeded messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type time-exceeded + } + } + } + entry 30 { + description "Accept incoming ICMP parameter problem messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type param-problem + } + } + } + entry 40 { + description "Accept incoming ICMP echo messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type echo + } + } + } + entry 50 { + description "Accept incoming ICMP echo-reply messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type echo-reply + } + } + } + entry 60 { + description "Accept incoming SSH when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 22 + } + } + } + entry 70 { + description "Accept incoming SSH when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 22 + } + } + } + entry 80 { + description "Accept incoming Telnet when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 23 + } + } + } + entry 90 { + description "Accept incoming Telnet when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 23 + } + } + } + entry 100 { + description "Accept incoming TACACS+ when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 49 + } + } + } + entry 110 { + description "Accept incoming TACACS+ when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 49 + } + } + } + entry 120 { + description "Accept incoming DNS response messages" + action { + accept { + } + } + match { + protocol udp + source-port { + operator eq + value 53 + } + } + } + entry 130 { + description "Accept incoming DHCP messages targeted for BOOTP/DHCP client" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 68 + } + } + } + entry 140 { + description "Accept incoming TFTP read-request and write-request messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 69 + } + } + } + entry 150 { + description "Accept incoming HTTP(JSON-RPC) when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 80 + } + } + } + entry 160 { + description "Accept incoming HTTP(JSON-RPC) when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 80 + } + } + } + entry 170 { + description "Accept incoming NTP messages from servers" + action { + accept { + } + } + match { + protocol udp + source-port { + operator eq + value 123 + } + } + } + entry 180 { + description "Accept incoming SNMP GET/GETNEXT messages from servers" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 161 + } + } + } + entry 190 { + description "Accept incoming BGP when the other router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 179 + } + } + } + entry 200 { + description "Accept incoming BGP when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 179 + } + } + } + entry 210 { + description "Accept incoming HTTPS(JSON-RPC) when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 443 + } + } + } + entry 220 { + description "Accept incoming HTTPS(JSON-RPC) when this router initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 443 + } + } + } + entry 230 { + description "Accept incoming single-hop BFD session messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 3784 + } + } + } + entry 240 { + description "Accept incoming multi-hop BFD session messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 4784 + } + } + } + entry 250 { + description "Accept incoming uBFD session messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 6784 + } + } + } + entry 260 { + description "Accept incoming gNMI messages when the other host initiates the TCP connection" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 57400 + } + } + } + entry 270 { + description "Accept incoming UDP traceroute messages" + action { + accept { + } + } + match { + protocol udp + destination-port { + range { + start 33434 + end 33464 + } + } + } + } + entry 280 { + description "Accept incoming ICMP timestamp messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + protocol icmp + icmp { + type timestamp + } + } + } + entry 290 { + description "Accept incoming OSPF messages" + action { + accept { + } + } + match { + protocol 89 + } + } + entry 300 { + description "Accept incoming DHCP relay messages targeted for BOOTP/DHCP server" + action { + accept { + } + } + match { + protocol udp + destination-port { + operator eq + value 67 + } + } + } + entry 310 { + description "Accept ICMP fragment packets" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + fragment true + protocol icmp + } + } + entry 320 { + description "Accept incoming LDP packets" + action { + accept { + } + } + match { + protocol udp + source-port { + operator eq + value 646 + } + } + } + entry 330 { + description "Accept incoming LDP packets with source-port 646" + action { + accept { + } + } + match { + protocol tcp + source-port { + operator eq + value 646 + } + } + } + entry 340 { + description "Accept incoming LDP packets with destination-port 646" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 646 + } + } + } + entry 350 { + description "Accept incoming gRIBI packets with destination-port 57401" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 57401 + } + } + } + entry 360 { + description "Accept incoming p4rt packets with destination-port 9559" + action { + accept { + } + } + match { + protocol tcp + destination-port { + operator eq + value 9559 + } + } + } + entry 370 { + description "Accept incoming IGMP packets" + action { + accept { + } + } + match { + protocol igmp + } + } + entry 380 { + description "Drop all else" + action { + drop { + log true + } + } + } + } + ipv6-filter { + statistics-per-entry true + entry 10 { + description "Accept incoming ICMPv6 unreachable messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type dest-unreachable + code [ + 0 + 1 + 2 + 3 + 4 + 5 + 6 + ] + } + } + } + entry 20 { + description "Accept incoming ICMPv6 packet-too-big messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type packet-too-big + } + } + } + entry 30 { + description "Accept incoming ICMPv6 time-exceeded messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type time-exceeded + } + } + } + entry 40 { + description "Accept incoming ICMPv6 parameter problem messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type param-problem + } + } + } + entry 50 { + description "Accept incoming ICMPv6 echo-request messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type echo-request + } + } + } + entry 60 { + description "Accept incoming ICMPv6 echo-reply messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type echo-reply + } + } + } + entry 70 { + description "Accept incoming ICMPv6 router-advertisement messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type router-advertise + } + } + } + entry 80 { + description "Accept incoming ICMPv6 neighbor-solicitation messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type neighbor-solicit + } + } + } + entry 90 { + description "Accept incoming ICMPv6 neighbor-advertisement messages" + action { + accept { + rate-limit { + system-cpu-policer icmp + } + } + } + match { + next-header icmp6 + icmp6 { + type neighbor-advertise + } + } + } + entry 100 { + description "Accept incoming SSH when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 22 + } + } + } + entry 110 { + description "Accept incoming SSH when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 22 + } + } + } + entry 120 { + description "Accept incoming Telnet when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 23 + } + } + } + entry 130 { + description "Accept incoming Telnet when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 23 + } + } + } + entry 140 { + description "Accept incoming TACACS+ when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 49 + } + } + } + entry 150 { + description "Accept incoming TACACS+ when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 49 + } + } + } + entry 160 { + description "Accept incoming DNS response messages" + action { + accept { + } + } + match { + next-header udp + source-port { + operator eq + value 53 + } + } + } + entry 170 { + description "Accept incoming TFTP read-request and write-request messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 69 + } + } + } + entry 180 { + description "Accept incoming HTTP(JSON-RPC) when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 80 + } + } + } + entry 190 { + description "Accept incoming HTTP(JSON-RPC) when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 80 + } + } + } + entry 200 { + description "Accept incoming NTP messages from servers" + action { + accept { + } + } + match { + next-header udp + source-port { + operator eq + value 123 + } + } + } + entry 210 { + description "Accept incoming SNMP GET/GETNEXT messages from servers" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 161 + } + } + } + entry 220 { + description "Accept incoming BGP when the other router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 179 + } + } + } + entry 230 { + description "Accept incoming BGP when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 179 + } + } + } + entry 240 { + description "Accept incoming HTTPS(JSON-RPC) when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 443 + } + } + } + entry 250 { + description "Accept incoming HTTPS(JSON-RPC) when this router initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + source-port { + operator eq + value 443 + } + } + } + entry 260 { + description "Accept incoming DHCPv6 client messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 546 + } + } + } + entry 270 { + description "Accept incoming single-hop BFD session messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 3784 + } + } + } + entry 280 { + description "Accept incoming multi-hop BFD session messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 4784 + } + } + } + entry 290 { + description "Accept incoming uBFD session messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 6784 + } + } + } + entry 300 { + description "Accept incoming gNMI messages when the other host initiates the TCP connection" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 57400 + } + } + } + entry 310 { + description "Accept incoming UDP traceroute messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + range { + start 33434 + end 33464 + } + } + } + } + entry 320 { + description "Accept incoming IPV6 hop-in-hop messages" + action { + accept { + } + } + match { + next-header 0 + } + } + entry 330 { + description "Accept incoming IPV6 fragment header messages" + action { + accept { + } + } + match { + next-header 44 + } + } + entry 340 { + description "Accept incoming OSPF messages" + action { + accept { + } + } + match { + next-header 89 + } + } + entry 350 { + description "Accept incoming DHCPv6 relay messages" + action { + accept { + } + } + match { + next-header udp + destination-port { + operator eq + value 547 + } + } + } + entry 360 { + description "Accept incoming gRIBI packets with destination-port 57401" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 57401 + } + } + } + entry 370 { + description "Accept incoming p4rt packets with destination-port 9559" + action { + accept { + } + } + match { + next-header tcp + destination-port { + operator eq + value 9559 + } + } + } + entry 380 { + description "Accept incoming IGMP packets" + action { + accept { + } + } + match { + next-header igmp + } + } + entry 390 { + description "Drop all else" + action { + drop { + log true + } + } + } + } + } + policers { + system-cpu-policer icmp { + entry-specific false + peak-packet-rate 1000 + max-packet-burst 1000 + } + } + } + interface mgmt0 { + admin-state enable + subinterface 0 { + admin-state enable + ipv4 { + dhcp-client { + } + } + ipv6 { + dhcp-client { + } + } + } + } + system { + aaa { + authentication { + idle-timeout 7200 + authentication-method [ + local + ] + } + server-group local { + type local + } + } + gnmi-server { + admin-state enable + network-instance mgmt { + admin-state enable + tls-profile clab-profile + } + unix-socket { + admin-state enable + } + } + tls { + server-profile clab-profile { + key $aes$b1L+gy1OoNjo=$DgEPaj8Cg2OzIbK5Zi+mNutfn87F2zyffNuuT3qEiayG7I6nP9+hN1R51mFC1wp9K6cTpYLpEOfqHMVkv0z9wz/PzKCvfTV3sMW+xq9PeHyVGHnYbWit84DvvBba2qa7Ki6M69MLFvOKf3O8omjyX6Y7QgwzfO2neAjMMB67CfNOhpfqtzcR7oBNKK+GQa08rv5SyU/n7XQvDSe25PLnFoJ4Z+Qw4XVny96HGYRq07zPfH+EfMGb3gnUmUhpEtJRwKQM4LKVS3dLFLJEKp0qUbKGzTnw5dHaFkVqxSRkRE/Q6wMQnO4Wtsrb7O/Gc+jWPJqTr54sOuJ1E+hDmmXw1MP02onyGeMid6IZfZmAHwa14IIce3BJAaSMtc5LVy6ZVj3jTZXh1u2wrpCvZYLPxzkeaiKdGtUgVzNBF9MSvmjkuHoqaXkxqyCsm9mxXLARJvyQN+3EGXHzcvNx1rWPDsrl8foNw6UtX5zPLnsvg8exndj51AZrB7EsnCvCAI0Xj/ns11YMM+Q/LWDU8uKaHrFGdk8EsJ6qwwGadJCkmxiwYe6J6Sd9ln5dY+/5zNlspZMJBQ+5H0OBQ4yAowa5Uw82GGMXS0UoTb+M8uKvMiQBxCc+MNY6xR0tWZx1JworkvDfzaE3BvSA3o+yKq9I6Sikr8ZSA3AcQMG1hVwfOJcgXQuO1o4Tq6n8znj/KFwtwzEODkDTnF60vf05+UNY2C7q5wGM32td/BgEgTpcgR0AvyGKPWGZTKR8Za7pI+pc3J639TnKWIKBz55vo0zWOSI37WZmZg92+kBXCp7OZrq1V+GBKEjxsMm33reHC9mL1zNOd1hjFY0umRPCEjpXGOPmzJRbSVyw2eDFg3vhL4H6VZgh2pASXlm2NsrLSVrUOftltLqjbwSNouJ4l2jgxINTlXPfnG5WLoogiXlrpM7AwDpwXFreyzWUQemqbSjq2iey7EyiUQvTQtOCJIu1V0luVSJJ20r5mY+t7gwo29FOcag3h+m33z+Kzi6RFTl7C0pnd+UuPGZ6dH9S2zJggSHPH8ssjLxDkffu8OKDQUYSD0w4ZHp6k/3TxudybtWZQz9fWr9+oVs21Shg1NUkke+U4gIgSnV+W5aZYuUFyt1ESOhjR+ksUozt8/BodrV2uhSMUJtjPmBFVQbqYl/opk5/lLefzy6BRU8I/JdIIhzgcVxJF4Njb7UhQIR03+WXLRjxQ7ehM2zwm/Y/eNuk7v6Frf0SdNjOeDVbcKGtGCzSR7Hj9M+unREiDt+z+e9pGJxjRUX7O1DGU/DyOKWhstemXmCJ4cQ8HwvfXQxJoELRNWb2G2OWJ+rr8u0j/jYuPc9S3xyrvr5yebz21hRCILlZuyCebUzhGaIW62hZwaA1x3CBsgpycO4VP87gdVDAo5mgv9zbJRiy0skILw2mCM1JhG3z6CuFASOgyXSGvt/J76N20iflW1FR+04ZEhNoy7brrIuVBO090bN7nSZk7opBxM+SqU8SEcOXV0rt6JGa2pHiIc+B9LdsDCfwmth7NA0muURF35nXVVMGq65gWpHKHvbhgoF4k6LBVCPT9M/bIrjXGzK4gWr7dAlMURL7rQ+Y3S6EqBHBvgF1s2x0dwUpbjeoVThjqSSSAAVdTJ9Hs5fuxWzmkuCqSuOc70dOxOlWH0xZVCTKEm/m7EloRhisYmNAoKUHr6JrcKEhIcKH9lm1elrINNp8fhpBnWaqzX56EK6dG6L1pFDKXX5sEWoYgWOLpok5sfnCU3NxWTTEvRMfco3T5wlkaUD6HtCdnzhGh8FQ+aKLzUyYKBrSUMWSEBW1yhjziFLzY2INeN/z8VsIXwWnZh/IFf34pCXhCOmAr3aBW+gKNuqwgEZN0Vo3d0qNRAZpgdSxj3AhO/o3oRksj0bcflOO/4NiZy6rjBmqAP8Mbo0WneiDuvjQms7rIwuO7waVvXVtieuEaWyWab+PoX4Er340CQTDtJaVaATQFDOgzz4PJFyr078T7oRNyfzaJXh44NgsxW7FQqdo8zzGMb/aAbf4GYs1VVMrvQ9XDhPHHQsLNvrF0hMlLsbT5XM7k2MWHNFHVKzuobpHZbpzYOUWjSqKiIO8PinCtzRmFT8Ms0xWoChSbCheBZfz1JqXx1Kx2ws4N/7boLGJ/CVMpH8DNuS8KII9hEgwe9hZI8MWV37HPa4wuRRVy0bHNRuV0dF58FzTGUUNtXDji0BtN9sL5e2vpcfCrMnx + certificate "-----BEGIN CERTIFICATE----- +MIID8jCCAtqgAwIBAgIUEc2RnwCnuLpgdYBvyiWoA6mILcUwDQYJKoZIhvcNAQEL +BQAwXTELMAkGA1UEBhMCQkUxEDAOBgNVBAcTB0FudHdlcnAxDjAMBgNVBAoTBU5v +a2lhMRYwFAYDVQQLEw1Db250YWluZXIgbGFiMRQwEgYDVQQDEwtzcmwgUm9vdCBD +QTAeFw0yMzAxMzEyMDAxMDBaFw0yNDAxMzEyMDAxMDBaMFwxCzAJBgNVBAYTAkJF +MRAwDgYDVQQHEwdBbnR3ZXJwMQ4wDAYDVQQKEwVOb2tpYTEWMBQGA1UECxMNQ29u +dGFpbmVyIGxhYjETMBEGA1UEAxMKc3JsLnNybC5pbzCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAMrue28sWGLoMhPozVtt/Z8KrVMysJW7753aDf9sOseO +rHqH7CPKOr3TEwFO39d7id6mqLc7dxpUVWdXSsdBxBnW/XA4hx5IEP+vjJS6vzBf +/jQhgaMpcvyZ6HmldzZZ54yx91L7W80KMbQJ17+WSbXxuUPVEQehCPVgrS9FyCKv +qCc8iJmk/oTXYJckD3mF0lYuGJFTcnc/HdTMjLsJ6dVAl+SyEJXzMSRaKwAr5aHP +HQ2enWaR0+bJltFC369REA9ni8qQ+OIXZyNyj37tVBlIY3ws3+NoHIMkjScoRgaQ +C0xhY+McYKGfsYR3l3nno6B6Axvi74EZK6CDazKuE4UCAwEAAaOBqjCBpzAOBgNV +HQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1Ud +EwEB/wQCMAAwHQYDVR0OBBYEFJR1h8HJM4CWUAfRKvROrWXnmjQMMB8GA1UdIwQY +MBaAFPzZSIYYJqoFFINeOCLtlqCnfCTPMCgGA1UdEQQhMB+CA3NybIIMY2xhYi1z +cmwtc3Jsggpzcmwuc3JsLmlvMA0GCSqGSIb3DQEBCwUAA4IBAQCQxBOqqorPUNK+ +iwFSPZ9UjDjNFwJlm7blg8cJ7y9sNLi5gfl/gjgzA5fSOxoPpNKAn9jWPMIu2yUr +9vEho8l0pitjry+RpgglX//wcdyoTrQBNrA6fZmY/XGjvlWPtfqiSdhhFO2hduJZ +y+b1P8IjA8fd/odpD3cPWRLbedtvUSZ3R7onngDaLCNu4BaryVwupau+HeVTd8iO +hLNNOPVX4mlAyJOmjGcH3x2XZEGSLVAKbIDbsvqgj0QkIWoXqJgPjwPhP8/TMKNG +LEKz+Oa+8boGhcZcgfVslUZaHJGar2jv2C2wpSENThxXh5nDYWWyx6/qkzqzW6YH +o+phN+pt +-----END CERTIFICATE----- +" + authenticate-client false + } + } + json-rpc-server { + admin-state enable + network-instance mgmt { + http { + admin-state enable + } + https { + admin-state enable + tls-profile clab-profile + } + } + } + ssh-server { + network-instance mgmt { + admin-state enable + } + } + banner { + login-banner "................................................................ +: Welcome to Nokia SR Linux! : +: Open Network OS for the NetOps era. : +: : +: This is a freely distributed official container image. : +: Use it - Share it : +: : +: Get started: https://learn.srlinux.dev : +: Container: https://go.srlinux.dev/container-image : +: Docs: https://doc.srlinux.dev/22-11 : +: Rel. notes: https://doc.srlinux.dev/rn22-11-1 : +: YANG: https://yang.srlinux.dev/v22.11.1 : +: Discord: https://go.srlinux.dev/discord : +: Contact: https://go.srlinux.dev/contact-sales : +................................................................ +" + } + lldp { + admin-state enable + } + logging { + buffer messages { + rotate 3 + size 10000000 + facility local6 { + priority { + match-above informational + } + } + } + buffer system { + facility auth { + priority { + match-above warning + } + } + facility cron { + priority { + match-above warning + } + } + facility daemon { + priority { + match-above warning + } + } + facility ftp { + priority { + match-above warning + } + } + facility kern { + priority { + match-above warning + } + } + facility lpr { + priority { + match-above warning + } + } + facility mail { + priority { + match-above warning + } + } + facility news { + priority { + match-above warning + } + } + facility syslog { + priority { + match-above warning + } + } + facility user { + priority { + match-above warning + } + } + facility uucp { + priority { + match-above warning + } + } + facility local0 { + priority { + match-above warning + } + } + facility local1 { + priority { + match-above warning + } + } + facility local2 { + priority { + match-above warning + } + } + facility local3 { + priority { + match-above warning + } + } + facility local4 { + priority { + match-above warning + } + } + facility local5 { + priority { + match-above warning + } + } + facility local7 { + priority { + match-above warning + } + } + } + file messages { + rotate 3 + size 10000000 + facility local6 { + priority { + match-above warning + } + } + } + } + } + network-instance ipvrf1 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf10 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf100 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1000 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1001 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1002 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1003 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1004 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1005 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1006 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1007 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1008 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1009 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf101 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1010 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1011 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1012 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1013 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1014 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1015 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1016 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1017 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1018 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1019 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf102 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1020 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1021 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1022 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1023 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1024 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1025 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1026 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1027 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1028 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1029 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf103 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1030 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1031 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1032 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1033 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1034 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1035 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1036 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1037 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1038 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1039 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf104 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1040 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1041 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1042 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1043 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1044 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1045 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1046 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1047 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1048 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1049 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf105 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1050 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1051 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1052 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1053 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1054 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1055 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1056 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1057 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1058 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1059 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf106 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1060 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1061 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1062 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1063 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1064 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1065 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1066 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1067 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1068 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1069 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf107 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1070 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1071 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1072 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1073 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1074 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1075 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1076 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1077 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1078 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1079 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf108 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1080 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1081 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1082 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1083 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1084 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1085 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1086 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1087 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1088 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1089 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf109 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1090 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1091 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1092 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1093 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1094 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1095 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1096 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1097 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1098 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1099 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf11 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf110 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1100 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1101 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1102 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1103 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1104 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1105 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1106 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1107 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1108 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1109 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf111 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1110 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1111 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1112 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1113 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1114 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1115 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1116 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1117 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1118 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1119 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf112 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1120 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1121 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1122 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1123 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1124 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1125 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1126 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1127 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1128 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1129 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf113 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1130 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1131 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1132 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1133 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1134 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1135 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1136 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1137 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1138 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1139 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf114 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1140 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1141 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1142 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1143 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1144 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1145 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1146 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1147 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1148 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1149 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf115 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1150 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1151 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1152 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1153 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1154 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1155 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1156 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1157 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1158 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1159 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf116 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1160 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1161 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1162 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1163 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1164 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1165 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1166 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1167 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1168 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1169 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf117 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1170 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1171 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1172 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1173 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1174 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1175 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1176 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1177 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1178 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1179 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf118 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1180 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1181 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1182 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1183 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1184 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1185 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1186 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1187 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1188 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1189 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf119 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1190 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1191 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1192 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1193 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1194 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1195 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1196 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1197 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1198 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1199 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf12 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf120 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1200 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1201 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1202 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1203 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1204 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1205 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1206 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1207 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1208 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1209 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf121 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1210 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1211 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1212 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1213 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1214 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1215 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1216 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1217 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1218 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1219 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf122 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1220 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1221 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1222 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1223 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1224 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1225 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1226 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1227 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1228 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1229 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf123 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1230 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1231 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1232 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1233 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1234 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1235 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1236 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1237 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1238 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1239 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf124 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1240 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1241 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1242 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1243 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1244 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1245 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1246 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1247 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1248 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1249 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf125 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1250 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1251 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1252 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1253 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1254 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1255 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1256 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1257 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1258 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1259 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf126 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1260 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1261 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1262 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1263 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1264 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1265 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1266 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1267 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1268 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1269 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf127 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1270 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1271 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1272 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1273 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1274 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1275 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1276 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1277 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1278 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1279 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf128 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1280 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1281 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1282 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1283 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1284 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1285 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1286 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1287 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1288 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1289 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf129 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1290 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1291 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1292 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1293 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1294 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1295 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1296 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1297 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1298 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1299 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf13 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf130 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1300 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1301 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1302 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1303 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1304 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1305 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1306 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1307 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1308 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1309 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf131 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1310 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1311 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1312 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1313 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1314 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1315 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1316 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1317 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1318 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1319 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf132 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1320 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1321 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1322 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1323 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1324 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1325 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1326 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1327 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1328 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1329 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf133 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1330 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1331 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1332 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1333 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1334 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1335 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1336 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1337 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1338 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1339 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf134 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1340 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1341 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1342 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1343 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1344 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1345 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1346 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1347 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1348 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1349 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf135 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1350 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1351 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1352 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1353 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1354 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1355 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1356 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1357 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1358 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1359 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf136 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1360 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1361 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1362 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1363 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1364 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1365 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1366 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1367 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1368 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1369 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf137 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1370 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1371 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1372 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1373 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1374 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1375 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1376 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1377 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1378 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1379 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf138 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1380 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1381 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1382 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1383 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1384 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1385 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1386 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1387 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1388 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1389 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf139 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1390 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1391 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1392 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1393 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1394 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1395 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1396 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1397 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1398 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1399 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf14 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf140 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1400 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1401 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1402 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1403 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1404 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1405 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1406 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1407 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1408 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1409 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf141 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1410 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1411 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1412 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1413 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1414 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1415 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1416 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1417 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1418 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1419 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf142 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1420 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1421 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1422 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1423 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1424 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1425 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1426 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1427 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1428 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1429 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf143 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1430 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1431 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1432 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1433 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1434 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1435 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1436 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1437 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1438 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1439 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf144 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1440 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1441 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1442 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1443 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1444 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1445 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1446 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1447 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1448 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1449 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf145 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1450 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1451 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1452 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1453 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1454 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1455 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1456 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1457 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1458 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1459 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf146 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1460 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1461 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1462 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1463 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1464 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1465 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1466 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1467 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1468 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1469 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf147 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1470 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1471 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1472 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1473 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1474 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1475 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1476 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1477 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1478 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1479 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf148 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1480 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1481 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1482 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1483 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1484 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1485 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1486 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1487 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1488 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1489 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf149 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1490 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1491 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1492 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1493 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1494 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1495 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1496 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1497 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1498 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1499 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf15 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf150 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1500 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1501 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1502 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1503 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1504 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1505 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1506 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1507 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1508 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1509 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf151 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1510 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1511 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1512 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1513 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1514 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1515 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1516 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1517 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1518 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1519 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf152 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1520 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1521 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1522 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1523 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1524 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1525 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1526 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1527 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1528 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1529 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf153 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1530 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1531 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1532 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1533 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1534 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1535 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1536 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1537 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1538 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1539 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf154 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1540 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1541 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1542 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1543 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1544 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1545 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1546 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1547 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1548 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1549 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf155 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1550 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1551 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1552 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1553 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1554 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1555 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1556 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1557 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1558 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1559 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf156 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1560 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1561 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1562 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1563 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1564 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1565 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1566 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1567 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1568 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1569 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf157 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1570 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1571 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1572 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1573 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1574 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1575 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1576 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1577 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1578 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1579 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf158 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1580 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1581 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1582 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1583 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1584 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1585 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1586 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1587 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1588 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1589 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf159 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1590 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1591 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1592 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1593 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1594 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1595 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1596 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1597 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1598 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1599 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf16 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf160 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1600 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1601 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1602 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1603 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1604 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1605 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1606 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1607 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1608 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1609 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf161 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1610 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1611 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1612 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1613 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1614 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1615 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1616 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1617 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1618 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1619 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf162 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1620 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1621 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1622 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1623 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1624 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1625 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1626 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1627 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1628 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1629 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf163 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1630 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1631 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1632 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1633 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1634 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1635 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1636 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1637 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1638 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1639 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf164 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1640 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1641 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1642 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1643 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1644 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1645 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1646 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1647 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1648 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1649 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf165 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1650 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1651 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1652 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1653 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1654 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1655 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1656 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1657 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1658 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1659 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf166 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1660 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1661 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1662 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1663 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1664 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1665 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1666 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1667 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1668 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1669 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf167 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1670 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1671 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1672 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1673 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1674 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1675 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1676 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1677 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1678 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1679 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf168 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1680 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1681 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1682 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1683 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1684 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1685 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1686 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1687 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1688 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1689 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf169 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1690 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1691 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1692 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1693 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1694 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1695 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1696 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1697 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1698 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1699 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf17 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf170 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1700 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1701 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1702 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1703 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1704 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1705 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1706 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1707 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1708 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1709 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf171 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1710 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1711 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1712 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1713 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1714 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1715 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1716 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1717 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1718 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1719 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf172 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1720 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1721 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1722 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1723 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1724 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1725 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1726 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1727 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1728 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1729 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf173 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1730 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1731 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1732 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1733 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1734 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1735 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1736 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1737 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1738 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1739 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf174 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1740 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1741 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1742 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1743 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1744 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1745 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1746 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1747 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1748 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1749 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf175 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1750 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1751 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1752 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1753 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1754 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1755 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1756 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1757 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1758 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1759 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf176 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1760 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1761 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1762 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1763 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1764 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1765 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1766 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1767 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1768 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1769 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf177 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1770 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1771 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1772 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1773 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1774 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1775 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1776 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1777 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1778 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1779 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf178 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1780 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1781 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1782 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1783 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1784 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1785 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1786 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1787 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1788 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1789 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf179 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1790 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1791 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1792 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1793 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1794 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1795 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1796 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1797 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1798 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1799 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf18 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf180 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1800 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1801 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1802 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1803 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1804 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1805 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1806 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1807 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1808 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1809 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf181 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1810 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1811 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1812 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1813 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1814 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1815 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1816 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1817 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1818 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1819 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf182 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1820 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1821 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1822 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1823 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1824 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1825 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1826 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1827 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1828 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1829 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf183 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1830 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1831 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1832 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1833 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1834 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1835 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1836 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1837 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1838 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1839 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf184 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1840 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1841 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1842 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1843 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1844 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1845 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1846 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1847 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1848 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1849 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf185 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1850 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1851 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1852 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1853 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1854 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1855 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1856 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1857 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1858 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1859 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf186 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1860 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1861 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1862 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1863 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1864 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1865 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1866 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1867 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1868 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1869 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf187 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1870 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1871 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1872 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1873 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1874 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1875 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1876 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1877 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1878 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1879 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf188 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1880 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1881 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1882 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1883 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1884 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1885 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1886 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1887 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1888 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1889 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf189 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1890 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1891 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1892 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1893 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1894 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1895 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1896 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1897 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1898 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1899 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf19 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf190 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1900 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1901 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1902 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1903 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1904 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1905 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1906 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1907 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1908 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1909 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf191 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1910 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1911 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1912 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1913 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1914 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1915 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1916 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1917 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1918 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1919 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf192 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1920 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1921 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1922 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1923 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1924 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1925 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1926 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1927 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1928 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1929 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf193 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1930 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1931 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1932 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1933 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1934 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1935 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1936 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1937 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1938 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1939 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf194 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1940 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1941 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1942 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1943 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1944 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1945 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1946 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1947 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1948 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1949 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf195 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1950 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1951 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1952 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1953 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1954 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1955 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1956 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1957 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1958 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1959 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf196 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1960 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1961 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1962 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1963 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1964 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1965 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1966 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1967 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1968 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1969 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf197 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1970 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1971 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1972 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1973 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1974 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1975 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1976 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1977 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1978 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1979 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf198 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1980 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1981 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1982 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1983 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1984 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1985 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1986 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1987 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1988 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1989 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf199 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1990 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1991 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1992 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1993 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1994 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1995 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1996 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1997 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1998 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf1999 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf20 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf200 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2000 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2001 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2002 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2003 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2004 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2005 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2006 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2007 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2008 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2009 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf201 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2010 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2011 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2012 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2013 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2014 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2015 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2016 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2017 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2018 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2019 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf202 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2020 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2021 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2022 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2023 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2024 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2025 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2026 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2027 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2028 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2029 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf203 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2030 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2031 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2032 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2033 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2034 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2035 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2036 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2037 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2038 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2039 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf204 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2040 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2041 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2042 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2043 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2044 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2045 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2046 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2047 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2048 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2049 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf205 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2050 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2051 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2052 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2053 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2054 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2055 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2056 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2057 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2058 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2059 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf206 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2060 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2061 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2062 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2063 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2064 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2065 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2066 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2067 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2068 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2069 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf207 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2070 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2071 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2072 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2073 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2074 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2075 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2076 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2077 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2078 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2079 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf208 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2080 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2081 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2082 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2083 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2084 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2085 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2086 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2087 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2088 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2089 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf209 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2090 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2091 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2092 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2093 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2094 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2095 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2096 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2097 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2098 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2099 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf21 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf210 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2100 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2101 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2102 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2103 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2104 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2105 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2106 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2107 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2108 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2109 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf211 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2110 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2111 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2112 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2113 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2114 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2115 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2116 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2117 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2118 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2119 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf212 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2120 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2121 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2122 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2123 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2124 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2125 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2126 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2127 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2128 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2129 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf213 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2130 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2131 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2132 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2133 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2134 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2135 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2136 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2137 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2138 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2139 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf214 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2140 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2141 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2142 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2143 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2144 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2145 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2146 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2147 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2148 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2149 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf215 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2150 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2151 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2152 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2153 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2154 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2155 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2156 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2157 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2158 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2159 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf216 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2160 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2161 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2162 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2163 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2164 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2165 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2166 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2167 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2168 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2169 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf217 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2170 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2171 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2172 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2173 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2174 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2175 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2176 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2177 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2178 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2179 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf218 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2180 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2181 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2182 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2183 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2184 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2185 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2186 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2187 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2188 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2189 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf219 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2190 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2191 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2192 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2193 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2194 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2195 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2196 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2197 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2198 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2199 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf22 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf220 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2200 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2201 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2202 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2203 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2204 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2205 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2206 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2207 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2208 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2209 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf221 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2210 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2211 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2212 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2213 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2214 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2215 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2216 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2217 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2218 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2219 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf222 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2220 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2221 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2222 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2223 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2224 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2225 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2226 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2227 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2228 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2229 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf223 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2230 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2231 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2232 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2233 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2234 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2235 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2236 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2237 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2238 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2239 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf224 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2240 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2241 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2242 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2243 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2244 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2245 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2246 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2247 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2248 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2249 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf225 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2250 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2251 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2252 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2253 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2254 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2255 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2256 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2257 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2258 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2259 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf226 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2260 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2261 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2262 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2263 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2264 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2265 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2266 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2267 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2268 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2269 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf227 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2270 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2271 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2272 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2273 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2274 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2275 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2276 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2277 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2278 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2279 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf228 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2280 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2281 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2282 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2283 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2284 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2285 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2286 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2287 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2288 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2289 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf229 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2290 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2291 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2292 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2293 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2294 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2295 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2296 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2297 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2298 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2299 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf23 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf230 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2300 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2301 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2302 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2303 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2304 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2305 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2306 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2307 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2308 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2309 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf231 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2310 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2311 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2312 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2313 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2314 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2315 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2316 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2317 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2318 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2319 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf232 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2320 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2321 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2322 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2323 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2324 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2325 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2326 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2327 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2328 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2329 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf233 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2330 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2331 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2332 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2333 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2334 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2335 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2336 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2337 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2338 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2339 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf234 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2340 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2341 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2342 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2343 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2344 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2345 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2346 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2347 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2348 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2349 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf235 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2350 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2351 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2352 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2353 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2354 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2355 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2356 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2357 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2358 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2359 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf236 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2360 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2361 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2362 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2363 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2364 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2365 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2366 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2367 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2368 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2369 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf237 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2370 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2371 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2372 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2373 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2374 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2375 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2376 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2377 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2378 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2379 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf238 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2380 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2381 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2382 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2383 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2384 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2385 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2386 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2387 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2388 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2389 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf239 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2390 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2391 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2392 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2393 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2394 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2395 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2396 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2397 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2398 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2399 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf24 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf240 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2400 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2401 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2402 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2403 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2404 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2405 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2406 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2407 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2408 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2409 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf241 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2410 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2411 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2412 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2413 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2414 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2415 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2416 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2417 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2418 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2419 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf242 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2420 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2421 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2422 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2423 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2424 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2425 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2426 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2427 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2428 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2429 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf243 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2430 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2431 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2432 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2433 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2434 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2435 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2436 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2437 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2438 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2439 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf244 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2440 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2441 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2442 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2443 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2444 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2445 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2446 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2447 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2448 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2449 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf245 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2450 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2451 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2452 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2453 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2454 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2455 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2456 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2457 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2458 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2459 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf246 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2460 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2461 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2462 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2463 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2464 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2465 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2466 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2467 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2468 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2469 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf247 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2470 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2471 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2472 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2473 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2474 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2475 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2476 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2477 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2478 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2479 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf248 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2480 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2481 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2482 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2483 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2484 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2485 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2486 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2487 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2488 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2489 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf249 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2490 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2491 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2492 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2493 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2494 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2495 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2496 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2497 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2498 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2499 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf25 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf250 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2500 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2501 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2502 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2503 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2504 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2505 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2506 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2507 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2508 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2509 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf251 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2510 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2511 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2512 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2513 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2514 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2515 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2516 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2517 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2518 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2519 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf252 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2520 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2521 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2522 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2523 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2524 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2525 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2526 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2527 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2528 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2529 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf253 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2530 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2531 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2532 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2533 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2534 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2535 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2536 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2537 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2538 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2539 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf254 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2540 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2541 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2542 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2543 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2544 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2545 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2546 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2547 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2548 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2549 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf255 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2550 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2551 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2552 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2553 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2554 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2555 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2556 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2557 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2558 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2559 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf256 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2560 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2561 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2562 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2563 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2564 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2565 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2566 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2567 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2568 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2569 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf257 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2570 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2571 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2572 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2573 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2574 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2575 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2576 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2577 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2578 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2579 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf258 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2580 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2581 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2582 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2583 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2584 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2585 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2586 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2587 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2588 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2589 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf259 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2590 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2591 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2592 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2593 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2594 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2595 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2596 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2597 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2598 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2599 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf26 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf260 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2600 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2601 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2602 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2603 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2604 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2605 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2606 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2607 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2608 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2609 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf261 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2610 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2611 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2612 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2613 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2614 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2615 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2616 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2617 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2618 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2619 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf262 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2620 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2621 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2622 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2623 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2624 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2625 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2626 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2627 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2628 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2629 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf263 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2630 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2631 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2632 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2633 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2634 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2635 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2636 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2637 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2638 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2639 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf264 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2640 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2641 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2642 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2643 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2644 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2645 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2646 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2647 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2648 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2649 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf265 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2650 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2651 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2652 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2653 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2654 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2655 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2656 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2657 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2658 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2659 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf266 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2660 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2661 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2662 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2663 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2664 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2665 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2666 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2667 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2668 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2669 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf267 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2670 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2671 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2672 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2673 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2674 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2675 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2676 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2677 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2678 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2679 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf268 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2680 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2681 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2682 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2683 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2684 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2685 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2686 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2687 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2688 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2689 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf269 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2690 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2691 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2692 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2693 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2694 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2695 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2696 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2697 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2698 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2699 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf27 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf270 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2700 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2701 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2702 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2703 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2704 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2705 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2706 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2707 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2708 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2709 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf271 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2710 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2711 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2712 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2713 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2714 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2715 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2716 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2717 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2718 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2719 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf272 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2720 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2721 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2722 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2723 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2724 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2725 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2726 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2727 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2728 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2729 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf273 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2730 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2731 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2732 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2733 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2734 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2735 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2736 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2737 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2738 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2739 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf274 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2740 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2741 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2742 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2743 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2744 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2745 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2746 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2747 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2748 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2749 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf275 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2750 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2751 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2752 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2753 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2754 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2755 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2756 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2757 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2758 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2759 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf276 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2760 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2761 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2762 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2763 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2764 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2765 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2766 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2767 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2768 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2769 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf277 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2770 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2771 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2772 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2773 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2774 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2775 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2776 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2777 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2778 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2779 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf278 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2780 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2781 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2782 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2783 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2784 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2785 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2786 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2787 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2788 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2789 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf279 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2790 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2791 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2792 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2793 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2794 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2795 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2796 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2797 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2798 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2799 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf28 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf280 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2800 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2801 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2802 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2803 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2804 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2805 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2806 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2807 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2808 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2809 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf281 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2810 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2811 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2812 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2813 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2814 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2815 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2816 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2817 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2818 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2819 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf282 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2820 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2821 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2822 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2823 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2824 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2825 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2826 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2827 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2828 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2829 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf283 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2830 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2831 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2832 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2833 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2834 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2835 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2836 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2837 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2838 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2839 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf284 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2840 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2841 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2842 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2843 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2844 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2845 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2846 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2847 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2848 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2849 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf285 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2850 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2851 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2852 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2853 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2854 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2855 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2856 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2857 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2858 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2859 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf286 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2860 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2861 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2862 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2863 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2864 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2865 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2866 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2867 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2868 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2869 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf287 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2870 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2871 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2872 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2873 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2874 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2875 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2876 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2877 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2878 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2879 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf288 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2880 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2881 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2882 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2883 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2884 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2885 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2886 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2887 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2888 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2889 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf289 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2890 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2891 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2892 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2893 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2894 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2895 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2896 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2897 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2898 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2899 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf29 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf290 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2900 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2901 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2902 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2903 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2904 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2905 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2906 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2907 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2908 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2909 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf291 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2910 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2911 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2912 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2913 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2914 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2915 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2916 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2917 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2918 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2919 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf292 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2920 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2921 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2922 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2923 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2924 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2925 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2926 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2927 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2928 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2929 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf293 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2930 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2931 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2932 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2933 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2934 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2935 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2936 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2937 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2938 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2939 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf294 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2940 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2941 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2942 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2943 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2944 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2945 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2946 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2947 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2948 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2949 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf295 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2950 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2951 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2952 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2953 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2954 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2955 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2956 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2957 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2958 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2959 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf296 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2960 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2961 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2962 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2963 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2964 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2965 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2966 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2967 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2968 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2969 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf297 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2970 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2971 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2972 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2973 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2974 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2975 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2976 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2977 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2978 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2979 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf298 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2980 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2981 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2982 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2983 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2984 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2985 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2986 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2987 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2988 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2989 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf299 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2990 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2991 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2992 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2993 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2994 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2995 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2996 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2997 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2998 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf2999 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf30 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf300 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3000 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3001 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3002 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3003 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3004 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3005 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3006 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3007 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3008 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3009 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf301 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3010 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3011 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3012 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3013 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3014 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3015 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3016 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3017 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3018 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3019 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf302 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3020 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3021 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3022 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3023 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3024 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3025 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3026 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3027 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3028 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3029 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf303 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3030 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3031 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3032 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3033 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3034 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3035 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3036 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3037 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3038 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3039 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf304 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3040 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3041 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3042 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3043 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3044 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3045 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3046 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3047 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3048 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3049 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf305 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3050 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3051 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3052 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3053 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3054 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3055 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3056 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3057 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3058 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3059 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf306 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3060 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3061 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3062 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3063 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3064 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3065 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3066 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3067 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3068 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3069 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf307 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3070 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3071 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3072 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3073 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3074 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3075 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3076 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3077 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3078 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3079 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf308 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3080 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3081 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3082 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3083 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3084 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3085 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3086 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3087 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3088 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3089 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf309 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3090 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3091 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3092 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3093 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3094 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3095 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3096 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3097 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3098 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3099 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf31 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf310 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3100 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3101 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3102 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3103 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3104 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3105 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3106 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3107 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3108 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3109 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf311 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3110 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3111 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3112 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3113 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3114 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3115 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3116 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3117 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3118 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3119 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf312 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3120 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3121 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3122 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3123 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3124 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3125 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3126 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3127 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3128 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3129 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf313 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3130 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3131 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3132 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3133 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3134 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3135 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3136 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3137 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3138 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3139 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf314 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3140 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3141 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3142 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3143 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3144 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3145 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3146 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3147 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3148 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3149 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf315 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3150 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3151 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3152 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3153 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3154 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3155 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3156 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3157 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3158 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3159 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf316 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3160 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3161 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3162 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3163 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3164 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3165 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3166 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3167 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3168 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3169 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf317 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3170 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3171 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3172 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3173 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3174 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3175 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3176 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3177 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3178 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3179 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf318 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3180 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3181 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3182 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3183 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3184 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3185 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3186 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3187 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3188 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3189 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf319 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3190 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3191 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3192 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3193 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3194 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3195 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3196 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3197 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3198 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3199 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf32 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf320 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3200 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3201 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3202 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3203 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3204 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3205 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3206 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3207 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3208 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3209 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf321 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3210 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3211 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3212 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3213 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3214 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3215 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3216 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3217 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3218 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3219 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf322 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3220 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3221 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3222 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3223 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3224 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3225 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3226 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3227 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3228 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3229 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf323 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3230 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3231 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3232 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3233 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3234 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3235 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3236 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3237 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3238 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3239 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf324 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3240 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3241 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3242 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3243 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3244 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3245 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3246 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3247 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3248 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3249 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf325 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3250 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3251 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3252 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3253 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3254 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3255 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3256 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3257 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3258 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3259 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf326 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3260 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3261 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3262 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3263 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3264 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3265 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3266 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3267 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3268 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3269 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf327 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3270 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3271 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3272 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3273 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3274 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3275 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3276 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3277 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3278 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3279 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf328 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3280 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3281 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3282 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3283 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3284 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3285 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3286 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3287 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3288 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3289 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf329 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3290 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3291 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3292 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3293 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3294 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3295 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3296 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3297 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3298 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3299 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf33 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf330 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3300 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3301 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3302 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3303 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3304 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3305 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3306 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3307 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3308 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3309 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf331 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3310 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3311 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3312 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3313 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3314 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3315 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3316 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3317 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3318 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3319 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf332 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3320 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3321 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3322 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3323 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3324 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3325 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3326 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3327 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3328 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3329 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf333 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3330 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3331 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3332 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3333 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3334 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3335 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3336 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3337 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3338 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3339 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf334 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3340 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3341 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3342 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3343 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3344 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3345 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3346 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3347 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3348 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3349 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf335 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3350 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3351 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3352 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3353 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3354 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3355 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3356 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3357 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3358 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3359 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf336 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3360 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3361 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3362 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3363 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3364 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3365 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3366 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3367 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3368 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3369 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf337 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3370 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3371 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3372 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3373 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3374 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3375 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3376 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3377 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3378 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3379 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf338 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3380 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3381 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3382 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3383 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3384 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3385 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3386 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3387 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3388 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3389 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf339 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3390 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3391 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3392 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3393 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3394 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3395 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3396 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3397 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3398 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3399 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf34 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf340 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3400 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3401 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3402 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3403 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3404 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3405 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3406 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3407 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3408 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3409 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf341 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3410 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3411 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3412 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3413 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3414 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3415 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3416 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3417 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3418 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3419 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf342 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3420 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3421 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3422 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3423 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3424 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3425 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3426 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3427 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3428 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3429 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf343 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3430 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3431 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3432 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3433 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3434 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3435 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3436 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3437 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3438 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3439 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf344 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3440 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3441 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3442 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3443 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3444 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3445 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3446 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3447 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3448 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3449 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf345 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3450 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3451 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3452 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3453 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3454 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3455 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3456 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3457 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3458 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3459 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf346 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3460 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3461 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3462 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3463 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3464 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3465 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3466 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3467 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3468 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3469 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf347 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3470 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3471 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3472 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3473 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3474 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3475 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3476 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3477 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3478 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3479 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf348 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3480 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3481 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3482 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3483 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3484 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3485 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3486 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3487 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3488 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3489 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf349 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3490 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3491 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3492 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3493 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3494 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3495 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3496 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3497 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3498 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3499 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf35 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf350 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3500 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3501 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3502 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3503 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3504 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3505 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3506 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3507 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3508 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3509 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf351 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3510 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3511 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3512 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3513 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3514 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3515 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3516 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3517 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3518 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3519 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf352 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3520 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3521 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3522 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3523 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3524 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3525 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3526 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3527 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3528 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3529 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf353 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3530 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3531 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3532 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3533 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3534 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3535 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3536 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3537 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3538 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3539 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf354 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3540 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3541 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3542 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3543 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3544 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3545 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3546 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3547 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3548 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3549 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf355 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3550 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3551 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3552 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3553 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3554 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3555 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3556 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3557 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3558 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3559 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf356 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3560 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3561 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3562 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3563 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3564 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3565 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3566 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3567 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3568 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3569 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf357 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3570 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3571 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3572 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3573 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3574 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3575 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3576 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3577 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3578 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3579 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf358 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3580 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3581 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3582 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3583 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3584 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3585 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3586 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3587 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3588 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3589 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf359 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3590 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3591 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3592 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3593 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3594 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3595 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3596 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3597 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3598 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3599 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf36 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf360 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3600 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3601 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3602 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3603 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3604 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3605 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3606 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3607 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3608 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3609 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf361 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3610 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3611 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3612 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3613 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3614 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3615 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3616 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3617 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3618 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3619 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf362 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3620 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3621 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3622 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3623 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3624 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3625 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3626 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3627 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3628 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3629 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf363 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3630 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3631 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3632 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3633 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3634 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3635 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3636 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3637 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3638 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3639 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf364 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3640 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3641 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3642 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3643 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3644 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3645 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3646 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3647 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3648 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3649 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf365 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3650 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3651 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3652 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3653 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3654 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3655 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3656 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3657 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3658 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3659 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf366 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3660 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3661 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3662 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3663 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3664 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3665 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3666 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3667 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3668 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3669 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf367 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3670 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3671 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3672 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3673 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3674 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3675 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3676 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3677 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3678 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3679 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf368 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3680 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3681 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3682 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3683 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3684 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3685 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3686 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3687 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3688 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3689 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf369 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3690 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3691 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3692 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3693 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3694 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3695 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3696 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3697 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3698 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3699 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf37 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf370 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3700 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3701 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3702 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3703 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3704 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3705 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3706 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3707 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3708 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3709 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf371 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3710 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3711 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3712 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3713 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3714 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3715 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3716 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3717 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3718 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3719 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf372 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3720 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3721 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3722 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3723 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3724 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3725 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3726 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3727 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3728 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3729 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf373 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3730 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3731 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3732 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3733 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3734 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3735 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3736 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3737 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3738 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3739 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf374 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3740 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3741 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3742 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3743 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3744 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3745 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3746 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3747 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3748 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3749 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf375 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3750 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3751 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3752 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3753 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3754 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3755 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3756 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3757 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3758 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3759 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf376 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3760 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3761 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3762 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3763 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3764 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3765 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3766 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3767 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3768 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3769 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf377 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3770 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3771 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3772 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3773 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3774 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3775 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3776 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3777 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3778 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3779 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf378 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3780 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3781 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3782 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3783 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3784 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3785 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3786 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3787 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3788 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3789 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf379 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3790 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3791 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3792 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3793 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3794 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3795 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3796 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3797 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3798 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3799 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf38 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf380 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3800 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3801 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3802 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3803 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3804 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3805 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3806 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3807 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3808 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3809 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf381 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3810 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3811 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3812 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3813 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3814 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3815 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3816 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3817 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3818 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3819 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf382 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3820 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3821 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3822 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3823 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3824 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3825 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3826 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3827 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3828 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3829 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf383 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3830 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3831 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3832 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3833 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3834 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3835 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3836 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3837 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3838 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3839 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf384 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3840 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3841 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3842 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3843 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3844 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3845 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3846 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3847 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3848 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3849 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf385 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3850 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3851 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3852 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3853 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3854 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3855 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3856 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3857 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3858 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3859 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf386 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3860 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3861 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3862 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3863 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3864 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3865 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3866 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3867 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3868 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3869 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf387 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3870 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3871 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3872 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3873 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3874 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3875 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3876 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3877 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3878 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3879 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf388 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3880 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3881 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3882 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3883 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3884 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3885 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3886 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3887 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3888 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3889 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf389 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3890 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3891 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3892 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3893 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3894 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3895 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3896 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3897 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3898 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3899 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf39 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf390 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3900 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3901 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3902 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3903 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3904 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3905 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3906 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3907 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3908 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3909 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf391 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3910 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3911 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3912 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3913 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3914 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3915 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3916 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3917 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3918 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3919 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf392 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3920 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3921 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3922 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3923 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3924 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3925 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3926 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3927 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3928 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3929 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf393 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3930 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3931 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3932 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3933 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3934 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3935 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3936 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3937 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3938 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3939 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf394 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3940 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3941 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3942 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3943 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3944 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3945 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3946 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3947 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3948 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3949 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf395 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3950 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3951 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3952 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3953 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3954 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3955 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3956 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3957 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3958 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3959 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf396 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3960 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3961 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3962 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3963 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3964 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3965 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3966 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3967 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3968 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3969 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf397 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3970 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3971 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3972 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3973 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3974 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3975 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3976 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3977 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3978 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3979 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf398 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3980 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3981 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3982 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3983 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3984 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3985 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3986 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3987 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3988 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3989 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf399 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3990 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3991 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3992 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3993 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3994 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3995 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3996 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3997 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3998 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf3999 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf40 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf400 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4000 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4001 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4002 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4003 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4004 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4005 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4006 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4007 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4008 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4009 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf401 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4010 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4011 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4012 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4013 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4014 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4015 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4016 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4017 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4018 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4019 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf402 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4020 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4021 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4022 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4023 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4024 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4025 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4026 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4027 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4028 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4029 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf403 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4030 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4031 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4032 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4033 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4034 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4035 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4036 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4037 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4038 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4039 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf404 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4040 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4041 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4042 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4043 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4044 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4045 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4046 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4047 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4048 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4049 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf405 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4050 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4051 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4052 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4053 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4054 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4055 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4056 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4057 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4058 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4059 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf406 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4060 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4061 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4062 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4063 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4064 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4065 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4066 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4067 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4068 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4069 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf407 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4070 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4071 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4072 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4073 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4074 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4075 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4076 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4077 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4078 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4079 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf408 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4080 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4081 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4082 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4083 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4084 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4085 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4086 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4087 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4088 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4089 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf409 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4090 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4091 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4092 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4093 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf4094 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf41 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf410 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf411 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf412 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf413 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf414 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf415 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf416 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf417 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf418 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf419 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf42 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf420 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf421 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf422 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf423 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf424 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf425 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf426 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf427 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf428 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf429 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf43 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf430 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf431 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf432 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf433 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf434 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf435 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf436 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf437 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf438 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf439 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf44 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf440 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf441 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf442 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf443 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf444 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf445 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf446 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf447 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf448 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf449 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf45 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf450 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf451 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf452 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf453 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf454 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf455 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf456 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf457 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf458 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf459 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf46 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf460 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf461 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf462 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf463 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf464 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf465 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf466 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf467 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf468 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf469 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf47 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf470 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf471 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf472 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf473 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf474 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf475 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf476 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf477 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf478 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf479 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf48 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf480 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf481 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf482 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf483 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf484 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf485 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf486 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf487 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf488 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf489 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf49 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf490 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf491 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf492 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf493 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf494 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf495 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf496 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf497 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf498 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf499 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf5 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf50 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf500 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf501 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf502 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf503 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf504 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf505 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf506 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf507 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf508 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf509 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf51 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf510 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf511 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf512 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf513 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf514 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf515 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf516 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf517 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf518 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf519 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf52 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf520 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf521 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf522 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf523 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf524 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf525 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf526 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf527 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf528 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf529 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf53 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf530 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf531 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf532 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf533 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf534 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf535 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf536 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf537 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf538 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf539 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf54 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf540 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf541 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf542 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf543 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf544 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf545 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf546 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf547 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf548 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf549 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf55 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf550 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf551 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf552 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf553 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf554 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf555 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf556 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf557 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf558 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf559 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf56 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf560 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf561 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf562 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf563 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf564 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf565 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf566 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf567 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf568 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf569 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf57 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf570 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf571 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf572 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf573 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf574 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf575 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf576 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf577 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf578 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf579 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf58 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf580 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf581 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf582 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf583 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf584 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf585 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf586 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf587 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf588 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf589 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf59 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf590 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf591 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf592 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf593 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf594 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf595 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf596 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf597 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf598 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf599 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf6 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf60 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf600 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf601 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf602 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf603 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf604 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf605 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf606 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf607 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf608 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf609 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf61 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf610 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf611 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf612 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf613 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf614 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf615 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf616 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf617 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf618 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf619 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf62 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf620 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf621 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf622 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf623 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf624 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf625 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf626 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf627 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf628 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf629 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf63 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf630 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf631 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf632 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf633 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf634 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf635 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf636 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf637 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf638 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf639 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf64 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf640 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf641 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf642 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf643 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf644 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf645 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf646 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf647 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf648 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf649 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf65 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf650 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf651 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf652 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf653 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf654 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf655 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf656 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf657 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf658 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf659 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf66 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf660 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf661 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf662 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf663 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf664 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf665 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf666 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf667 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf668 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf669 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf67 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf670 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf671 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf672 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf673 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf674 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf675 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf676 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf677 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf678 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf679 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf68 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf680 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf681 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf682 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf683 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf684 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf685 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf686 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf687 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf688 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf689 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf69 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf690 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf691 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf692 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf693 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf694 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf695 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf696 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf697 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf698 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf699 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf7 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf70 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf700 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf701 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf702 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf703 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf704 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf705 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf706 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf707 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf708 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf709 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf71 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf710 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf711 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf712 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf713 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf714 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf715 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf716 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf717 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf718 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf719 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf72 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf720 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf721 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf722 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf723 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf724 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf725 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf726 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf727 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf728 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf729 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf73 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf730 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf731 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf732 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf733 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf734 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf735 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf736 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf737 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf738 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf739 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf74 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf740 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf741 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf742 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf743 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf744 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf745 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf746 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf747 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf748 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf749 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf75 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf750 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf751 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf752 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf753 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf754 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf755 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf756 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf757 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf758 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf759 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf76 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf760 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf761 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf762 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf763 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf764 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf765 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf766 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf767 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf768 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf769 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf77 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf770 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf771 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf772 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf773 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf774 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf775 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf776 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf777 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf778 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf779 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf78 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf780 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf781 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf782 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf783 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf784 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf785 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf786 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf787 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf788 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf789 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf79 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf790 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf791 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf792 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf793 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf794 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf795 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf796 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf797 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf798 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf799 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf8 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf80 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf800 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf801 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf802 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf803 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf804 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf805 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf806 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf807 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf808 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf809 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf81 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf810 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf811 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf812 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf813 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf814 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf815 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf816 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf817 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf818 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf819 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf82 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf820 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf821 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf822 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf823 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf824 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf825 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf826 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf827 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf828 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf829 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf83 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf830 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf831 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf832 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf833 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf834 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf835 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf836 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf837 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf838 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf839 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf84 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf840 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf841 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf842 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf843 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf844 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf845 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf846 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf847 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf848 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf849 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf85 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf850 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf851 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf852 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf853 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf854 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf855 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf856 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf857 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf858 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf859 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf86 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf860 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf861 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf862 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf863 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf864 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf865 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf866 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf867 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf868 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf869 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf87 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf870 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf871 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf872 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf873 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf874 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf875 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf876 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf877 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf878 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf879 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf88 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf880 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf881 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf882 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf883 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf884 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf885 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf886 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf887 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf888 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf889 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf89 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf890 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf891 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf892 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf893 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf894 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf895 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf896 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf897 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf898 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf899 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf9 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf90 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf900 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf901 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf902 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf903 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf904 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf905 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf906 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf907 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf908 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf909 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf91 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf910 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf911 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf912 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf913 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf914 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf915 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf916 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf917 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf918 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf919 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf92 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf920 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf921 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf922 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf923 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf924 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf925 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf926 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf927 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf928 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf929 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf93 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf930 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf931 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf932 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf933 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf934 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf935 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf936 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf937 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf938 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf939 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf94 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf940 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf941 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf942 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf943 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf944 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf945 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf946 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf947 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf948 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf949 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf95 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf950 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf951 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf952 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf953 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf954 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf955 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf956 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf957 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf958 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf959 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf96 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf960 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf961 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf962 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf963 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf964 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf965 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf966 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf967 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf968 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf969 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf97 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf970 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf971 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf972 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf973 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf974 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf975 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf976 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf977 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf978 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf979 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf98 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf980 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf981 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf982 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf983 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf984 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf985 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf986 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf987 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf988 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf989 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf99 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf990 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf991 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf992 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf993 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf994 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf995 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf996 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf997 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf998 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance ipvrf999 { + type ip-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf10 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf100 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1000 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1001 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1002 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1003 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1004 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1005 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1006 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1007 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1008 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1009 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf101 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1010 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1011 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1012 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1013 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1014 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1015 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1016 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1017 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1018 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1019 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf102 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1020 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1021 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1022 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1023 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1024 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1025 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1026 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1027 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1028 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1029 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf103 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1030 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1031 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1032 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1033 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1034 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1035 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1036 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1037 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1038 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1039 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf104 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1040 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1041 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1042 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1043 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1044 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1045 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1046 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1047 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1048 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1049 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf105 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1050 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1051 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1052 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1053 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1054 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1055 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1056 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1057 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1058 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1059 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf106 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1060 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1061 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1062 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1063 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1064 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1065 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1066 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1067 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1068 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1069 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf107 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1070 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1071 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1072 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1073 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1074 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1075 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1076 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1077 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1078 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1079 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf108 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1080 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1081 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1082 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1083 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1084 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1085 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1086 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1087 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1088 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1089 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf109 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1090 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1091 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1092 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1093 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1094 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1095 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1096 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1097 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1098 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1099 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf11 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf110 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1100 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1101 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1102 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1103 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1104 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1105 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1106 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1107 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1108 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1109 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf111 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1110 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1111 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1112 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1113 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1114 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1115 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1116 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1117 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1118 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1119 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf112 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1120 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1121 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1122 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1123 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1124 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1125 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1126 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1127 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1128 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1129 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf113 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1130 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1131 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1132 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1133 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1134 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1135 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1136 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1137 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1138 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1139 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf114 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1140 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1141 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1142 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1143 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1144 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1145 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1146 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1147 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1148 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1149 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf115 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1150 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1151 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1152 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1153 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1154 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1155 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1156 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1157 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1158 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1159 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf116 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1160 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1161 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1162 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1163 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1164 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1165 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1166 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1167 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1168 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1169 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf117 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1170 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1171 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1172 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1173 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1174 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1175 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1176 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1177 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1178 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1179 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf118 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1180 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1181 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1182 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1183 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1184 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1185 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1186 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1187 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1188 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1189 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf119 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1190 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1191 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1192 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1193 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1194 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1195 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1196 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1197 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1198 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1199 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf12 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf120 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1200 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1201 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1202 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1203 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1204 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1205 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1206 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1207 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1208 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1209 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf121 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1210 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1211 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1212 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1213 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1214 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1215 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1216 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1217 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1218 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1219 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf122 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1220 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1221 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1222 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1223 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1224 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1225 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1226 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1227 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1228 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1229 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf123 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1230 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1231 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1232 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1233 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1234 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1235 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1236 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1237 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1238 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1239 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf124 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1240 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1241 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1242 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1243 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1244 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1245 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1246 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1247 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1248 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1249 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf125 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1250 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1251 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1252 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1253 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1254 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1255 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1256 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1257 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1258 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1259 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf126 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1260 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1261 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1262 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1263 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1264 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1265 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1266 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1267 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1268 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1269 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf127 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1270 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1271 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1272 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1273 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1274 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1275 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1276 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1277 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1278 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1279 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf128 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1280 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1281 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1282 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1283 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1284 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1285 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1286 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1287 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1288 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1289 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf129 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1290 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1291 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1292 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1293 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1294 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1295 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1296 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1297 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1298 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1299 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf13 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf130 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1300 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1301 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1302 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1303 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1304 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1305 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1306 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1307 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1308 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1309 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf131 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1310 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1311 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1312 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1313 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1314 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1315 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1316 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1317 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1318 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1319 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf132 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1320 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1321 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1322 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1323 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1324 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1325 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1326 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1327 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1328 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1329 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf133 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1330 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1331 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1332 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1333 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1334 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1335 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1336 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1337 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1338 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1339 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf134 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1340 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1341 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1342 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1343 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1344 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1345 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1346 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1347 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1348 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1349 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf135 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1350 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1351 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1352 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1353 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1354 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1355 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1356 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1357 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1358 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1359 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf136 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1360 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1361 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1362 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1363 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1364 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1365 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1366 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1367 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1368 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1369 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf137 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1370 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1371 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1372 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1373 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1374 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1375 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1376 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1377 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1378 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1379 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf138 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1380 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1381 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1382 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1383 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1384 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1385 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1386 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1387 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1388 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1389 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf139 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1390 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1391 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1392 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1393 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1394 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1395 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1396 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1397 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1398 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1399 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf14 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf140 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1400 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1401 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1402 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1403 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1404 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1405 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1406 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1407 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1408 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1409 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf141 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1410 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1411 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1412 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1413 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1414 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1415 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1416 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1417 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1418 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1419 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf142 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1420 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1421 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1422 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1423 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1424 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1425 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1426 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1427 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1428 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1429 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf143 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1430 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1431 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1432 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1433 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1434 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1435 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1436 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1437 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1438 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1439 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf144 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1440 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1441 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1442 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1443 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1444 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1445 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1446 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1447 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1448 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1449 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf145 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1450 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1451 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1452 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1453 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1454 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1455 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1456 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1457 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1458 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1459 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf146 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1460 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1461 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1462 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1463 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1464 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1465 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1466 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1467 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1468 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1469 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf147 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1470 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1471 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1472 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1473 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1474 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1475 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1476 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1477 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1478 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1479 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf148 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1480 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1481 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1482 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1483 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1484 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1485 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1486 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1487 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1488 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1489 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf149 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1490 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1491 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1492 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1493 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1494 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1495 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1496 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1497 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1498 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1499 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf15 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf150 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1500 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1501 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1502 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1503 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1504 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1505 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1506 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1507 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1508 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1509 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf151 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1510 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1511 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1512 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1513 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1514 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1515 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1516 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1517 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1518 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1519 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf152 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1520 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1521 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1522 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1523 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1524 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1525 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1526 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1527 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1528 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1529 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf153 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1530 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1531 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1532 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1533 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1534 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1535 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1536 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1537 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1538 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1539 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf154 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1540 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1541 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1542 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1543 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1544 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1545 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1546 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1547 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1548 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1549 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf155 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1550 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1551 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1552 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1553 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1554 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1555 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1556 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1557 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1558 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1559 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf156 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1560 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1561 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1562 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1563 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1564 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1565 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1566 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1567 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1568 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1569 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf157 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1570 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1571 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1572 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1573 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1574 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1575 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1576 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1577 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1578 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1579 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf158 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1580 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1581 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1582 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1583 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1584 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1585 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1586 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1587 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1588 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1589 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf159 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1590 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1591 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1592 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1593 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1594 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1595 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1596 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1597 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1598 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1599 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf16 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf160 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1600 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1601 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1602 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1603 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1604 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1605 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1606 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1607 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1608 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1609 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf161 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1610 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1611 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1612 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1613 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1614 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1615 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1616 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1617 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1618 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1619 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf162 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1620 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1621 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1622 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1623 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1624 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1625 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1626 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1627 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1628 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1629 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf163 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1630 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1631 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1632 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1633 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1634 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1635 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1636 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1637 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1638 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1639 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf164 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1640 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1641 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1642 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1643 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1644 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1645 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1646 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1647 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1648 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1649 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf165 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1650 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1651 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1652 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1653 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1654 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1655 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1656 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1657 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1658 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1659 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf166 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1660 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1661 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1662 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1663 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1664 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1665 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1666 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1667 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1668 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1669 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf167 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1670 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1671 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1672 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1673 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1674 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1675 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1676 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1677 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1678 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1679 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf168 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1680 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1681 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1682 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1683 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1684 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1685 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1686 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1687 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1688 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1689 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf169 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1690 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1691 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1692 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1693 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1694 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1695 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1696 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1697 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1698 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1699 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf17 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf170 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1700 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1701 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1702 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1703 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1704 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1705 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1706 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1707 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1708 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1709 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf171 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1710 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1711 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1712 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1713 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1714 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1715 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1716 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1717 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1718 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1719 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf172 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1720 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1721 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1722 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1723 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1724 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1725 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1726 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1727 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1728 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1729 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf173 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1730 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1731 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1732 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1733 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1734 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1735 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1736 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1737 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1738 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1739 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf174 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1740 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1741 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1742 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1743 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1744 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1745 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1746 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1747 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1748 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1749 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf175 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1750 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1751 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1752 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1753 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1754 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1755 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1756 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1757 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1758 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1759 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf176 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1760 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1761 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1762 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1763 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1764 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1765 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1766 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1767 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1768 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1769 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf177 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1770 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1771 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1772 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1773 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1774 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1775 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1776 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1777 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1778 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1779 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf178 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1780 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1781 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1782 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1783 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1784 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1785 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1786 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1787 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1788 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1789 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf179 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1790 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1791 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1792 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1793 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1794 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1795 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1796 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1797 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1798 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1799 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf18 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf180 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1800 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1801 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1802 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1803 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1804 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1805 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1806 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1807 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1808 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1809 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf181 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1810 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1811 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1812 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1813 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1814 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1815 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1816 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1817 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1818 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1819 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf182 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1820 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1821 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1822 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1823 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1824 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1825 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1826 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1827 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1828 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1829 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf183 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1830 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1831 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1832 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1833 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1834 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1835 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1836 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1837 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1838 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1839 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf184 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1840 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1841 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1842 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1843 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1844 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1845 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1846 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1847 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1848 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1849 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf185 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1850 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1851 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1852 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1853 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1854 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1855 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1856 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1857 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1858 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1859 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf186 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1860 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1861 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1862 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1863 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1864 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1865 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1866 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1867 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1868 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1869 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf187 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1870 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1871 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1872 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1873 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1874 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1875 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1876 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1877 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1878 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1879 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf188 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1880 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1881 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1882 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1883 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1884 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1885 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1886 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1887 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1888 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1889 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf189 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1890 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1891 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1892 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1893 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1894 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1895 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1896 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1897 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1898 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1899 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf19 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf190 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1900 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1901 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1902 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1903 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1904 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1905 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1906 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1907 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1908 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1909 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf191 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1910 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1911 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1912 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1913 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1914 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1915 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1916 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1917 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1918 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1919 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf192 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1920 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1921 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1922 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1923 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1924 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1925 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1926 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1927 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1928 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1929 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf193 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1930 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1931 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1932 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1933 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1934 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1935 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1936 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1937 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1938 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1939 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf194 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1940 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1941 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1942 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1943 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1944 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1945 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1946 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1947 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1948 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1949 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf195 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1950 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1951 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1952 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1953 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1954 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1955 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1956 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1957 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1958 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1959 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf196 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1960 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1961 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1962 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1963 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1964 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1965 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1966 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1967 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1968 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1969 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf197 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1970 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1971 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1972 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1973 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1974 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1975 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1976 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1977 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1978 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1979 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf198 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1980 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1981 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1982 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1983 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1984 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1985 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1986 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1987 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1988 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1989 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf199 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1990 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1991 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1992 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1993 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1994 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1995 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1996 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1997 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1998 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf1999 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf20 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf200 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2000 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2001 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2002 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2003 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2004 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2005 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2006 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2007 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2008 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2009 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf201 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2010 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2011 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2012 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2013 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2014 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2015 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2016 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2017 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2018 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2019 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf202 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2020 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2021 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2022 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2023 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2024 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2025 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2026 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2027 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2028 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2029 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf203 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2030 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2031 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2032 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2033 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2034 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2035 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2036 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2037 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2038 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2039 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf204 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2040 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2041 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2042 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2043 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2044 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2045 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2046 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2047 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2048 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2049 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf205 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2050 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2051 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2052 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2053 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2054 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2055 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2056 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2057 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2058 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2059 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf206 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2060 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2061 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2062 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2063 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2064 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2065 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2066 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2067 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2068 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2069 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf207 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2070 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2071 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2072 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2073 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2074 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2075 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2076 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2077 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2078 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2079 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf208 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2080 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2081 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2082 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2083 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2084 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2085 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2086 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2087 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2088 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2089 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf209 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2090 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2091 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2092 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2093 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2094 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2095 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2096 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2097 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2098 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2099 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf21 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf210 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2100 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2101 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2102 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2103 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2104 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2105 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2106 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2107 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2108 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2109 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf211 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2110 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2111 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2112 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2113 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2114 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2115 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2116 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2117 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2118 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2119 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf212 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2120 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2121 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2122 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2123 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2124 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2125 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2126 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2127 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2128 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2129 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf213 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2130 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2131 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2132 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2133 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2134 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2135 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2136 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2137 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2138 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2139 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf214 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2140 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2141 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2142 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2143 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2144 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2145 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2146 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2147 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2148 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2149 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf215 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2150 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2151 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2152 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2153 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2154 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2155 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2156 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2157 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2158 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2159 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf216 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2160 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2161 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2162 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2163 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2164 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2165 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2166 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2167 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2168 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2169 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf217 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2170 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2171 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2172 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2173 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2174 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2175 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2176 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2177 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2178 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2179 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf218 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2180 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2181 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2182 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2183 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2184 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2185 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2186 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2187 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2188 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2189 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf219 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2190 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2191 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2192 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2193 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2194 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2195 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2196 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2197 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2198 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2199 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf22 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf220 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2200 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2201 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2202 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2203 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2204 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2205 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2206 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2207 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2208 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2209 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf221 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2210 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2211 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2212 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2213 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2214 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2215 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2216 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2217 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2218 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2219 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf222 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2220 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2221 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2222 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2223 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2224 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2225 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2226 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2227 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2228 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2229 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf223 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2230 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2231 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2232 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2233 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2234 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2235 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2236 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2237 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2238 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2239 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf224 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2240 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2241 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2242 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2243 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2244 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2245 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2246 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2247 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2248 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2249 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf225 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2250 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2251 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2252 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2253 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2254 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2255 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2256 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2257 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2258 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2259 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf226 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2260 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2261 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2262 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2263 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2264 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2265 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2266 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2267 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2268 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2269 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf227 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2270 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2271 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2272 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2273 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2274 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2275 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2276 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2277 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2278 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2279 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf228 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2280 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2281 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2282 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2283 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2284 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2285 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2286 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2287 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2288 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2289 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf229 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2290 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2291 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2292 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2293 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2294 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2295 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2296 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2297 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2298 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2299 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf23 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf230 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2300 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2301 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2302 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2303 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2304 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2305 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2306 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2307 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2308 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2309 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf231 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2310 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2311 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2312 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2313 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2314 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2315 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2316 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2317 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2318 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2319 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf232 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2320 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2321 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2322 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2323 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2324 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2325 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2326 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2327 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2328 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2329 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf233 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2330 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2331 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2332 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2333 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2334 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2335 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2336 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2337 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2338 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2339 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf234 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2340 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2341 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2342 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2343 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2344 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2345 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2346 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2347 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2348 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2349 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf235 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2350 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2351 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2352 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2353 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2354 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2355 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2356 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2357 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2358 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2359 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf236 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2360 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2361 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2362 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2363 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2364 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2365 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2366 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2367 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2368 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2369 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf237 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2370 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2371 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2372 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2373 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2374 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2375 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2376 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2377 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2378 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2379 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf238 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2380 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2381 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2382 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2383 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2384 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2385 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2386 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2387 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2388 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2389 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf239 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2390 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2391 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2392 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2393 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2394 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2395 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2396 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2397 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2398 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2399 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf24 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf240 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2400 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2401 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2402 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2403 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2404 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2405 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2406 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2407 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2408 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2409 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf241 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2410 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2411 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2412 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2413 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2414 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2415 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2416 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2417 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2418 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2419 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf242 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2420 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2421 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2422 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2423 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2424 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2425 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2426 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2427 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2428 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2429 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf243 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2430 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2431 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2432 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2433 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2434 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2435 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2436 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2437 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2438 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2439 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf244 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2440 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2441 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2442 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2443 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2444 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2445 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2446 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2447 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2448 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2449 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf245 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2450 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2451 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2452 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2453 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2454 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2455 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2456 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2457 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2458 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2459 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf246 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2460 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2461 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2462 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2463 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2464 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2465 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2466 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2467 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2468 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2469 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf247 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2470 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2471 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2472 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2473 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2474 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2475 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2476 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2477 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2478 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2479 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf248 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2480 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2481 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2482 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2483 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2484 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2485 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2486 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2487 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2488 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2489 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf249 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2490 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2491 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2492 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2493 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2494 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2495 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2496 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2497 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2498 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2499 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf25 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf250 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2500 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2501 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2502 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2503 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2504 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2505 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2506 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2507 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2508 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2509 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf251 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2510 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2511 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2512 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2513 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2514 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2515 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2516 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2517 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2518 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2519 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf252 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2520 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2521 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2522 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2523 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2524 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2525 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2526 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2527 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2528 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2529 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf253 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2530 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2531 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2532 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2533 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2534 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2535 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2536 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2537 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2538 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2539 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf254 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2540 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2541 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2542 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2543 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2544 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2545 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2546 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2547 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2548 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2549 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf255 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2550 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2551 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2552 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2553 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2554 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2555 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2556 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2557 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2558 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2559 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf256 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2560 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2561 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2562 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2563 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2564 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2565 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2566 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2567 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2568 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2569 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf257 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2570 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2571 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2572 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2573 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2574 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2575 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2576 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2577 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2578 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2579 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf258 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2580 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2581 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2582 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2583 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2584 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2585 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2586 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2587 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2588 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2589 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf259 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2590 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2591 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2592 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2593 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2594 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2595 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2596 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2597 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2598 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2599 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf26 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf260 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2600 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2601 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2602 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2603 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2604 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2605 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2606 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2607 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2608 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2609 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf261 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2610 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2611 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2612 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2613 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2614 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2615 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2616 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2617 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2618 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2619 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf262 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2620 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2621 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2622 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2623 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2624 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2625 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2626 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2627 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2628 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2629 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf263 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2630 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2631 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2632 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2633 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2634 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2635 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2636 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2637 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2638 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2639 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf264 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2640 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2641 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2642 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2643 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2644 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2645 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2646 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2647 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2648 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2649 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf265 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2650 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2651 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2652 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2653 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2654 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2655 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2656 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2657 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2658 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2659 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf266 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2660 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2661 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2662 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2663 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2664 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2665 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2666 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2667 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2668 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2669 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf267 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2670 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2671 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2672 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2673 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2674 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2675 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2676 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2677 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2678 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2679 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf268 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2680 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2681 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2682 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2683 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2684 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2685 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2686 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2687 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2688 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2689 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf269 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2690 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2691 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2692 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2693 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2694 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2695 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2696 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2697 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2698 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2699 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf27 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf270 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2700 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2701 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2702 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2703 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2704 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2705 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2706 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2707 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2708 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2709 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf271 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2710 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2711 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2712 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2713 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2714 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2715 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2716 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2717 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2718 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2719 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf272 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2720 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2721 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2722 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2723 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2724 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2725 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2726 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2727 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2728 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2729 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf273 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2730 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2731 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2732 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2733 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2734 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2735 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2736 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2737 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2738 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2739 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf274 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2740 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2741 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2742 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2743 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2744 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2745 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2746 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2747 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2748 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2749 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf275 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2750 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2751 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2752 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2753 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2754 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2755 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2756 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2757 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2758 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2759 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf276 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2760 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2761 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2762 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2763 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2764 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2765 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2766 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2767 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2768 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2769 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf277 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2770 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2771 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2772 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2773 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2774 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2775 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2776 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2777 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2778 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2779 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf278 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2780 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2781 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2782 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2783 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2784 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2785 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2786 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2787 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2788 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2789 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf279 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2790 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2791 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2792 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2793 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2794 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2795 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2796 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2797 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2798 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2799 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf28 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf280 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2800 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2801 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2802 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2803 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2804 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2805 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2806 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2807 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2808 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2809 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf281 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2810 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2811 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2812 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2813 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2814 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2815 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2816 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2817 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2818 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2819 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf282 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2820 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2821 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2822 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2823 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2824 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2825 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2826 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2827 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2828 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2829 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf283 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2830 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2831 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2832 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2833 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2834 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2835 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2836 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2837 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2838 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2839 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf284 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2840 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2841 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2842 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2843 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2844 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2845 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2846 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2847 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2848 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2849 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf285 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2850 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2851 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2852 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2853 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2854 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2855 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2856 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2857 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2858 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2859 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf286 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2860 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2861 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2862 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2863 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2864 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2865 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2866 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2867 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2868 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2869 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf287 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2870 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2871 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2872 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2873 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2874 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2875 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2876 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2877 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2878 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2879 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf288 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2880 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2881 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2882 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2883 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2884 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2885 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2886 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2887 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2888 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2889 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf289 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2890 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2891 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2892 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2893 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2894 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2895 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2896 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2897 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2898 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2899 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf29 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf290 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2900 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2901 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2902 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2903 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2904 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2905 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2906 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2907 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2908 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2909 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf291 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2910 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2911 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2912 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2913 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2914 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2915 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2916 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2917 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2918 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2919 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf292 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2920 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2921 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2922 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2923 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2924 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2925 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2926 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2927 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2928 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2929 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf293 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2930 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2931 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2932 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2933 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2934 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2935 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2936 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2937 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2938 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2939 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf294 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2940 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2941 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2942 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2943 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2944 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2945 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2946 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2947 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2948 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2949 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf295 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2950 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2951 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2952 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2953 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2954 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2955 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2956 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2957 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2958 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2959 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf296 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2960 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2961 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2962 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2963 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2964 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2965 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2966 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2967 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2968 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2969 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf297 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2970 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2971 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2972 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2973 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2974 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2975 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2976 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2977 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2978 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2979 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf298 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2980 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2981 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2982 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2983 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2984 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2985 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2986 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2987 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2988 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2989 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf299 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2990 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2991 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2992 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2993 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2994 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2995 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2996 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2997 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2998 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf2999 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf30 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf300 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3000 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3001 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3002 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3003 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3004 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3005 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3006 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3007 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3008 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3009 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf301 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3010 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3011 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3012 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3013 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3014 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3015 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3016 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3017 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3018 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3019 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf302 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3020 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3021 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3022 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3023 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3024 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3025 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3026 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3027 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3028 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3029 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf303 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3030 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3031 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3032 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3033 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3034 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3035 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3036 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3037 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3038 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3039 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf304 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3040 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3041 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3042 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3043 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3044 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3045 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3046 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3047 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3048 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3049 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf305 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3050 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3051 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3052 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3053 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3054 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3055 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3056 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3057 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3058 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3059 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf306 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3060 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3061 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3062 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3063 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3064 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3065 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3066 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3067 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3068 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3069 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf307 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3070 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3071 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3072 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3073 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3074 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3075 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3076 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3077 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3078 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3079 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf308 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3080 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3081 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3082 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3083 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3084 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3085 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3086 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3087 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3088 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3089 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf309 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3090 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3091 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3092 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3093 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3094 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3095 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3096 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3097 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3098 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3099 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf31 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf310 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3100 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3101 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3102 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3103 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3104 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3105 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3106 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3107 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3108 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3109 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf311 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3110 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3111 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3112 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3113 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3114 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3115 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3116 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3117 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3118 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3119 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf312 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3120 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3121 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3122 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3123 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3124 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3125 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3126 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3127 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3128 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3129 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf313 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3130 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3131 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3132 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3133 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3134 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3135 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3136 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3137 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3138 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3139 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf314 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3140 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3141 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3142 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3143 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3144 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3145 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3146 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3147 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3148 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3149 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf315 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3150 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3151 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3152 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3153 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3154 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3155 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3156 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3157 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3158 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3159 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf316 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3160 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3161 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3162 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3163 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3164 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3165 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3166 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3167 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3168 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3169 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf317 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3170 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3171 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3172 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3173 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3174 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3175 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3176 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3177 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3178 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3179 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf318 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3180 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3181 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3182 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3183 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3184 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3185 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3186 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3187 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3188 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3189 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf319 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3190 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3191 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3192 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3193 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3194 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3195 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3196 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3197 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3198 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3199 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf32 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf320 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3200 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3201 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3202 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3203 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3204 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3205 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3206 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3207 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3208 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3209 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf321 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3210 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3211 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3212 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3213 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3214 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3215 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3216 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3217 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3218 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3219 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf322 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3220 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3221 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3222 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3223 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3224 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3225 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3226 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3227 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3228 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3229 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf323 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3230 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3231 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3232 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3233 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3234 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3235 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3236 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3237 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3238 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3239 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf324 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3240 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3241 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3242 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3243 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3244 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3245 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3246 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3247 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3248 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3249 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf325 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3250 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3251 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3252 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3253 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3254 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3255 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3256 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3257 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3258 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3259 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf326 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3260 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3261 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3262 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3263 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3264 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3265 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3266 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3267 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3268 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3269 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf327 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3270 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3271 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3272 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3273 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3274 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3275 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3276 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3277 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3278 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3279 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf328 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3280 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3281 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3282 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3283 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3284 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3285 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3286 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3287 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3288 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3289 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf329 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3290 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3291 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3292 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3293 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3294 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3295 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3296 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3297 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3298 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3299 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf33 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf330 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3300 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3301 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3302 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3303 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3304 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3305 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3306 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3307 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3308 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3309 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf331 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3310 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3311 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3312 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3313 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3314 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3315 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3316 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3317 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3318 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3319 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf332 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3320 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3321 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3322 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3323 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3324 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3325 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3326 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3327 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3328 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3329 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf333 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3330 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3331 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3332 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3333 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3334 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3335 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3336 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3337 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3338 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3339 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf334 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3340 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3341 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3342 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3343 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3344 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3345 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3346 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3347 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3348 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3349 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf335 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3350 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3351 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3352 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3353 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3354 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3355 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3356 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3357 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3358 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3359 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf336 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3360 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3361 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3362 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3363 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3364 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3365 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3366 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3367 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3368 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3369 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf337 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3370 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3371 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3372 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3373 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3374 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3375 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3376 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3377 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3378 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3379 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf338 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3380 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3381 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3382 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3383 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3384 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3385 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3386 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3387 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3388 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3389 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf339 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3390 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3391 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3392 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3393 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3394 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3395 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3396 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3397 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3398 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3399 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf34 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf340 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3400 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3401 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3402 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3403 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3404 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3405 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3406 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3407 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3408 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3409 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf341 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3410 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3411 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3412 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3413 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3414 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3415 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3416 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3417 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3418 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3419 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf342 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3420 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3421 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3422 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3423 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3424 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3425 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3426 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3427 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3428 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3429 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf343 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3430 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3431 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3432 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3433 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3434 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3435 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3436 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3437 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3438 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3439 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf344 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3440 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3441 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3442 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3443 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3444 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3445 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3446 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3447 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3448 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3449 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf345 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3450 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3451 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3452 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3453 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3454 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3455 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3456 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3457 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3458 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3459 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf346 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3460 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3461 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3462 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3463 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3464 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3465 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3466 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3467 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3468 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3469 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf347 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3470 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3471 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3472 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3473 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3474 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3475 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3476 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3477 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3478 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3479 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf348 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3480 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3481 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3482 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3483 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3484 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3485 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3486 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3487 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3488 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3489 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf349 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3490 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3491 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3492 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3493 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3494 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3495 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3496 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3497 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3498 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3499 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf35 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf350 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3500 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3501 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3502 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3503 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3504 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3505 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3506 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3507 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3508 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3509 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf351 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3510 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3511 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3512 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3513 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3514 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3515 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3516 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3517 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3518 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3519 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf352 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3520 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3521 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3522 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3523 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3524 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3525 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3526 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3527 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3528 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3529 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf353 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3530 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3531 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3532 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3533 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3534 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3535 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3536 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3537 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3538 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3539 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf354 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3540 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3541 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3542 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3543 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3544 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3545 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3546 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3547 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3548 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3549 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf355 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3550 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3551 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3552 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3553 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3554 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3555 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3556 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3557 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3558 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3559 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf356 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3560 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3561 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3562 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3563 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3564 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3565 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3566 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3567 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3568 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3569 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf357 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3570 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3571 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3572 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3573 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3574 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3575 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3576 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3577 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3578 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3579 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf358 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3580 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3581 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3582 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3583 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3584 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3585 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3586 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3587 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3588 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3589 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf359 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3590 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3591 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3592 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3593 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3594 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3595 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3596 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3597 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3598 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3599 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf36 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf360 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3600 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3601 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3602 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3603 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3604 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3605 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3606 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3607 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3608 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3609 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf361 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3610 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3611 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3612 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3613 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3614 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3615 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3616 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3617 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3618 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3619 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf362 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3620 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3621 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3622 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3623 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3624 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3625 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3626 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3627 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3628 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3629 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf363 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3630 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3631 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3632 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3633 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3634 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3635 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3636 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3637 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3638 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3639 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf364 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3640 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3641 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3642 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3643 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3644 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3645 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3646 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3647 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3648 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3649 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf365 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3650 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3651 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3652 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3653 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3654 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3655 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3656 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3657 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3658 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3659 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf366 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3660 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3661 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3662 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3663 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3664 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3665 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3666 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3667 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3668 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3669 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf367 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3670 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3671 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3672 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3673 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3674 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3675 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3676 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3677 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3678 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3679 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf368 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3680 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3681 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3682 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3683 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3684 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3685 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3686 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3687 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3688 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3689 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf369 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3690 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3691 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3692 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3693 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3694 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3695 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3696 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3697 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3698 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3699 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf37 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf370 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3700 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3701 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3702 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3703 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3704 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3705 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3706 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3707 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3708 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3709 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf371 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3710 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3711 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3712 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3713 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3714 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3715 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3716 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3717 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3718 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3719 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf372 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3720 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3721 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3722 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3723 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3724 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3725 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3726 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3727 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3728 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3729 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf373 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3730 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3731 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3732 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3733 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3734 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3735 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3736 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3737 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3738 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3739 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf374 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3740 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3741 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3742 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3743 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3744 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3745 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3746 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3747 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3748 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3749 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf375 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3750 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3751 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3752 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3753 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3754 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3755 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3756 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3757 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3758 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3759 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf376 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3760 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3761 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3762 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3763 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3764 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3765 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3766 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3767 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3768 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3769 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf377 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3770 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3771 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3772 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3773 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3774 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3775 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3776 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3777 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3778 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3779 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf378 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3780 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3781 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3782 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3783 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3784 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3785 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3786 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3787 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3788 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3789 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf379 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3790 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3791 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3792 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3793 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3794 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3795 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3796 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3797 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3798 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3799 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf38 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf380 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3800 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3801 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3802 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3803 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3804 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3805 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3806 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3807 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3808 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3809 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf381 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3810 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3811 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3812 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3813 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3814 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3815 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3816 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3817 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3818 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3819 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf382 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3820 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3821 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3822 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3823 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3824 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3825 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3826 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3827 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3828 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3829 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf383 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3830 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3831 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3832 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3833 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3834 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3835 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3836 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3837 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3838 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3839 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf384 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3840 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3841 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3842 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3843 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3844 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3845 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3846 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3847 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3848 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3849 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf385 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3850 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3851 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3852 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3853 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3854 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3855 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3856 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3857 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3858 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3859 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf386 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3860 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3861 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3862 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3863 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3864 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3865 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3866 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3867 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3868 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3869 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf387 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3870 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3871 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3872 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3873 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3874 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3875 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3876 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3877 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3878 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3879 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf388 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3880 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3881 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3882 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3883 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3884 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3885 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3886 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3887 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3888 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3889 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf389 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3890 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3891 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3892 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3893 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3894 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3895 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3896 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3897 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3898 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3899 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf39 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf390 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3900 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3901 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3902 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3903 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3904 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3905 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3906 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3907 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3908 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3909 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf391 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3910 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3911 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3912 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3913 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3914 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3915 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3916 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3917 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3918 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3919 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf392 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3920 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3921 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3922 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3923 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3924 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3925 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3926 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3927 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3928 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3929 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf393 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3930 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3931 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3932 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3933 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3934 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3935 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3936 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3937 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3938 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3939 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf394 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3940 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3941 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3942 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3943 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3944 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3945 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3946 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3947 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3948 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3949 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf395 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3950 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3951 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3952 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3953 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3954 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3955 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3956 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3957 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3958 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3959 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf396 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3960 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3961 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3962 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3963 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3964 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3965 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3966 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3967 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3968 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3969 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf397 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3970 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3971 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3972 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3973 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3974 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3975 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3976 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3977 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3978 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3979 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf398 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3980 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3981 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3982 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3983 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3984 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3985 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3986 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3987 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3988 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3989 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf399 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3990 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3991 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3992 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3993 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3994 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3995 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3996 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3997 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3998 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf3999 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf40 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf400 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4000 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4001 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4002 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4003 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4004 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4005 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4006 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4007 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4008 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4009 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf401 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4010 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4011 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4012 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4013 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4014 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4015 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4016 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4017 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4018 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4019 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf402 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4020 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4021 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4022 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4023 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4024 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4025 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4026 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4027 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4028 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4029 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf403 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4030 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4031 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4032 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4033 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4034 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4035 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4036 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4037 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4038 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4039 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf404 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4040 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4041 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4042 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4043 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4044 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4045 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4046 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4047 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4048 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4049 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf405 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4050 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4051 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4052 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4053 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4054 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4055 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4056 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4057 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4058 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4059 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf406 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4060 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4061 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4062 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4063 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4064 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4065 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4066 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4067 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4068 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4069 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf407 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4070 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4071 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4072 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4073 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4074 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4075 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4076 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4077 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4078 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4079 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf408 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4080 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4081 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4082 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4083 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4084 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4085 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4086 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4087 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4088 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4089 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf409 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4090 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4091 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4092 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4093 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4094 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4095 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf4096 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf41 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf410 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf411 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf412 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf413 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf414 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf415 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf416 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf417 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf418 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf419 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf42 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf420 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf421 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf422 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf423 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf424 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf425 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf426 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf427 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf428 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf429 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf43 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf430 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf431 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf432 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf433 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf434 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf435 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf436 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf437 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf438 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf439 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf44 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf440 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf441 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf442 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf443 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf444 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf445 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf446 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf447 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf448 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf449 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf45 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf450 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf451 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf452 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf453 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf454 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf455 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf456 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf457 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf458 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf459 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf46 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf460 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf461 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf462 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf463 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf464 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf465 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf466 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf467 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf468 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf469 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf47 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf470 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf471 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf472 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf473 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf474 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf475 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf476 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf477 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf478 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf479 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf48 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf480 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf481 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf482 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf483 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf484 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf485 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf486 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf487 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf488 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf489 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf49 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf490 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf491 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf492 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf493 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf494 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf495 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf496 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf497 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf498 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf499 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf5 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf50 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf500 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf501 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf502 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf503 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf504 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf505 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf506 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf507 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf508 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf509 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf51 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf510 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf511 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf512 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf513 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf514 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf515 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf516 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf517 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf518 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf519 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf52 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf520 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf521 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf522 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf523 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf524 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf525 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf526 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf527 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf528 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf529 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf53 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf530 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf531 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf532 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf533 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf534 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf535 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf536 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf537 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf538 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf539 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf54 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf540 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf541 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf542 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf543 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf544 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf545 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf546 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf547 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf548 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf549 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf55 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf550 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf551 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf552 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf553 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf554 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf555 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf556 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf557 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf558 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf559 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf56 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf560 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf561 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf562 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf563 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf564 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf565 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf566 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf567 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf568 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf569 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf57 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf570 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf571 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf572 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf573 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf574 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf575 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf576 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf577 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf578 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf579 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf58 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf580 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf581 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf582 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf583 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf584 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf585 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf586 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf587 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf588 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf589 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf59 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf590 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf591 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf592 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf593 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf594 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf595 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf596 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf597 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf598 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf599 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf6 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf60 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf600 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf601 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf602 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf603 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf604 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf605 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf606 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf607 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf608 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf609 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf61 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf610 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf611 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf612 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf613 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf614 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf615 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf616 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf617 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf618 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf619 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf62 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf620 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf621 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf622 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf623 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf624 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf625 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf626 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf627 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf628 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf629 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf63 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf630 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf631 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf632 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf633 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf634 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf635 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf636 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf637 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf638 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf639 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf64 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf640 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf641 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf642 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf643 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf644 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf645 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf646 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf647 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf648 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf649 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf65 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf650 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf651 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf652 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf653 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf654 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf655 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf656 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf657 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf658 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf659 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf66 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf660 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf661 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf662 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf663 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf664 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf665 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf666 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf667 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf668 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf669 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf67 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf670 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf671 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf672 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf673 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf674 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf675 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf676 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf677 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf678 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf679 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf68 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf680 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf681 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf682 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf683 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf684 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf685 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf686 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf687 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf688 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf689 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf69 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf690 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf691 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf692 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf693 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf694 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf695 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf696 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf697 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf698 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf699 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf7 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf70 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf700 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf701 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf702 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf703 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf704 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf705 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf706 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf707 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf708 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf709 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf71 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf710 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf711 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf712 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf713 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf714 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf715 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf716 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf717 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf718 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf719 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf72 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf720 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf721 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf722 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf723 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf724 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf725 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf726 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf727 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf728 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf729 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf73 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf730 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf731 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf732 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf733 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf734 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf735 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf736 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf737 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf738 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf739 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf74 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf740 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf741 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf742 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf743 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf744 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf745 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf746 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf747 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf748 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf749 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf75 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf750 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf751 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf752 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf753 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf754 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf755 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf756 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf757 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf758 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf759 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf76 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf760 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf761 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf762 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf763 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf764 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf765 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf766 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf767 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf768 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf769 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf77 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf770 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf771 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf772 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf773 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf774 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf775 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf776 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf777 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf778 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf779 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf78 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf780 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf781 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf782 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf783 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf784 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf785 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf786 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf787 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf788 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf789 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf79 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf790 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf791 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf792 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf793 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf794 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf795 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf796 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf797 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf798 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf799 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf8 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf80 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf800 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf801 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf802 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf803 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf804 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf805 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf806 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf807 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf808 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf809 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf81 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf810 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf811 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf812 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf813 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf814 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf815 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf816 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf817 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf818 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf819 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf82 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf820 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf821 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf822 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf823 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf824 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf825 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf826 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf827 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf828 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf829 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf83 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf830 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf831 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf832 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf833 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf834 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf835 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf836 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf837 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf838 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf839 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf84 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf840 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf841 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf842 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf843 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf844 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf845 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf846 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf847 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf848 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf849 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf85 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf850 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf851 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf852 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf853 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf854 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf855 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf856 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf857 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf858 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf859 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf86 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf860 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf861 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf862 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf863 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf864 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf865 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf866 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf867 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf868 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf869 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf87 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf870 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf871 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf872 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf873 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf874 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf875 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf876 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf877 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf878 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf879 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf88 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf880 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf881 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf882 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf883 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf884 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf885 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf886 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf887 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf888 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf889 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf89 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf890 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf891 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf892 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf893 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf894 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf895 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf896 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf897 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf898 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf899 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf9 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf90 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf900 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf901 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf902 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf903 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf904 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf905 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf906 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf907 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf908 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf909 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf91 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf910 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf911 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf912 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf913 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf914 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf915 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf916 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf917 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf918 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf919 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf92 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf920 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf921 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf922 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf923 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf924 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf925 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf926 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf927 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf928 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf929 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf93 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf930 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf931 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf932 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf933 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf934 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf935 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf936 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf937 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf938 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf939 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf94 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf940 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf941 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf942 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf943 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf944 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf945 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf946 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf947 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf948 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf949 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf95 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf950 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf951 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf952 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf953 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf954 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf955 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf956 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf957 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf958 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf959 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf96 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf960 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf961 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf962 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf963 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf964 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf965 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf966 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf967 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf968 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf969 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf97 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf970 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf971 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf972 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf973 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf974 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf975 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf976 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf977 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf978 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf979 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf98 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf980 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf981 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf982 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf983 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf984 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf985 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf986 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf987 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf988 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf989 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf99 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf990 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf991 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf992 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf993 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf994 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf995 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf996 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf997 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf998 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance macvrf999 { + type mac-vrf + admin-state disable + description "some looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong description" + } + network-instance mgmt { + type ip-vrf + admin-state enable + description "Management network instance" + interface mgmt0.0 { + } + protocols { + linux { + import-routes true + export-routes true + export-neighbors true + } + } + } \ No newline at end of file From 290f772eee3487a4505bf33989d46e17eb81ae9d Mon Sep 17 00:00:00 2001 From: Carl Montanari Date: Fri, 3 Feb 2023 14:47:52 -0800 Subject: [PATCH 4/4] test: crank up test timeout for slow runner --- driver/network/sendcommand_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/driver/network/sendcommand_test.go b/driver/network/sendcommand_test.go index b87f6c3..a8b3306 100644 --- a/driver/network/sendcommand_test.go +++ b/driver/network/sendcommand_test.go @@ -292,9 +292,9 @@ func TestSendCommandFunctionalGiant(t *testing.T) { // in seconds; realistically this looks like it finishes in ~10-12s pretty consistently in // local tests, but we need to make sure it doesn't go kaboom in ci as well. also note that // this is usually ran w/ race flag so that slows things down even more. - if r.ElapsedTime > 20 { - t.Fatalf("%s: test completed but was greater than maximum expected duration", - testName) + if r.ElapsedTime > 30 { + t.Fatalf("%s: test completed but was greater than maximum expected duration, took %fs", + testName, r.ElapsedTime) } } }