-
Notifications
You must be signed in to change notification settings - Fork 0
/
10.255.255.13.cfg
1766 lines (1757 loc) · 46.2 KB
/
10.255.255.13.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Building configuration...
Current configuration with default configurations exposed : 47227 bytes
!
version 15.5
parser cache
parser config partition
parser command serializer
parser maximum utilization 100
parser maximum latency 40
downward-compatible-config 15.5
no service log backtrace
no service config
no service exec-callback
no service nagle
service slave-log
no service slave-coredump
no service pad to-xot
no service pad from-xot
no service pad cmns
service pad
no service telnet-zeroidle
no service tcp-keepalives-in
no service tcp-keepalives-out
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
no service exec-wait
no service linenumber
no service internal
no service scripting
no service compress-config
service prompt config
no service old-slip-prompts
no service pt-vty-logging
no service disable-ip-fast-frag
no service sequence-numbers
service counters max age 0
service dhcp
!
hostname R3
!
boot-start-marker
boot-end-marker
!
shell processing
!
security passwords min-length 1
no logging discriminator
logging exception 4096
no logging count
no logging message-counter log
no logging message-counter debug
logging message-counter syslog
no logging snmp-authfail
no logging userinfo
logging buginf
logging queue-limit 100
logging queue-limit esm 0
logging queue-limit trap 100
logging buffered 4096 debugging
logging reload message-limit 1000 notifications
no logging persistent
logging rate-limit console 10 except errors
logging console guaranteed
logging console debugging
logging monitor debugging
logging cns-events informational
logging on
!
spd extended-headroom 75
spd headroom 100
spd enable
ipc holdq threshold upper 0
ipc holdq threshold lower 0
ipc header-cache permanent 1000 100
ipc buffers max-free 8
ipc buffers min-free 1
ipc buffers permanent 2
aaa new-model
!
!
aaa authentication attempts login 3
aaa authentication login default local
aaa authorization console
aaa authorization exec default local
aaa accounting jitter maximum 300
!
port 1645
!
!
!
port 1700
!
aaa session-id common
aaa memory threshold authentication reject 3
aaa memory threshold accounting disable 2
ethernet cfm ieee
ethernet cfm slm max 8000
ethernet cfm slm timeout 5
ethernet cfm alarm notification mac-remote-error-xcon
ethernet cfm alarm delay 2500
ethernet cfm alarm packet 0
ethernet cfm alarm reset 10000
!
!
!
ppp hold-queue 20000
ppp packet throttle 10 1 30
bsd-client server url https://cloudsso.cisco.com/as/token.oauth2
process cpu extended history 12
process cpu autoprofile hog
cef table consistency-check IPv4 type scan-rib-ios count 1000 period 60
cef table consistency-check IPv4 type scan-ios-rib count 1000 period 60
no cef table consistency-check IPv4 data-checking
no cef table consistency-check IPv4 error-message
cef table consistency-check IPv4 auto-repair delay 10 holddown 300
cef table consistency-check IPv6 type scan-ios-rib count 1000 period 60
no cef table consistency-check IPv6 data-checking
no cef table consistency-check IPv6 error-message
cef table consistency-check IPv6 auto-repair delay 10 holddown 300
cef table vrf tree IPv4 type MTRIE short-mask-protection 4 stride-pattern 8-8-8-8 hardware-api-notify off
cef table vrf tree IPv6 type RTREE
cef table output-chain build favor default
cef table rate-monitor-period 5
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
location prefer static weight 0
location prefer lldp-med weight 2
!
!
!
!
!
nmsp notification interval location 30
authentication mac-move deny
authentication logging verbose
authentication critical recovery delay 100
prompt config hostname-length 20
device-sensor notify new-tlvs
ip subnet-zero
ip source-route
ip routing protocol purge interface
ip routing
no ip arp proxy disable
no ip arp gratuitous type rfc-3220
ip arp queue 512
ip arp incomplete retry 20
ip arp incomplete entries 5000
ip gratuitous-arps non-local
ip icmp rate-limit unreachable 500
ip icmp redirect subnet
ip spd queue threshold minimum 73 maximum 74
ip ttl decrement
ip verify drop-rate compute window 300
ip verify drop-rate compute interval 30
ip verify drop-rate notify hold-down 300
ip auth-proxy watch-list expiry-time 30
ip auth-proxy max-http-conns 30
ip auth-proxy max-login-attempts 5
ip auth-proxy max-nodata-conns 3
ip auth-proxy init-state-time 2
ip auth-proxy inactivity-timer 60
ip auth-proxy absolute-timer 0
ip admission ratelimit 100
ip admission http process 7
ip admission watch-list expiry-time 30
ip admission max-http-conns 30
ip admission max-login-attempts 5
ip admission max-nodata-conns 3
ip admission init-state-time 2
ip admission inactivity-timer 60
ip admission absolute-timer 0
!
!
!
!
!
!
!
!
ip nbar resources system 0 0 0
no ip sctp asconf auto
ip sctp asconf authenticate check
no ip sctp authenticate data
no ip sctp authenticate init
no ip sctp authenticate init-ack
no ip sctp authenticate sack
no ip sctp authenticate heartbeat
no ip sctp authenticate heartbeat-ack
no ip sctp authenticate abort
no ip sctp authenticate shutdown
no ip sctp authenticate shutdown-ack
no ip sctp authenticate error
no ip sctp authenticate cookie-echo
no ip sctp authenticate cookie-ack
no ip sctp authenticate ecne
no ip sctp authenticate cwr
no ip sctp authenticate shutdown-complete
no ip sctp authenticate authentication
no ip sctp authenticate 16
no ip sctp authenticate 17
no ip sctp authenticate 18
no ip sctp authenticate 19
no ip sctp authenticate 20
no ip sctp authenticate 21
no ip sctp authenticate 22
no ip sctp authenticate 23
no ip sctp authenticate 24
no ip sctp authenticate 25
no ip sctp authenticate 26
no ip sctp authenticate 27
no ip sctp authenticate 28
no ip sctp authenticate 29
no ip sctp authenticate 30
no ip sctp authenticate 31
no ip sctp authenticate 32
no ip sctp authenticate 33
no ip sctp authenticate 34
no ip sctp authenticate 35
no ip sctp authenticate 36
no ip sctp authenticate 37
no ip sctp authenticate 38
no ip sctp authenticate 39
no ip sctp authenticate 40
no ip sctp authenticate 41
no ip sctp authenticate 42
no ip sctp authenticate 43
no ip sctp authenticate 44
no ip sctp authenticate 45
no ip sctp authenticate 46
no ip sctp authenticate 47
no ip sctp authenticate 48
no ip sctp authenticate 49
no ip sctp authenticate 50
no ip sctp authenticate 51
no ip sctp authenticate 52
no ip sctp authenticate 53
no ip sctp authenticate 54
no ip sctp authenticate 55
no ip sctp authenticate 56
no ip sctp authenticate 57
no ip sctp authenticate 58
no ip sctp authenticate 59
no ip sctp authenticate 60
no ip sctp authenticate 61
no ip sctp authenticate 62
no ip sctp authenticate 63
no ip sctp authenticate 64
no ip sctp authenticate 65
no ip sctp authenticate 66
no ip sctp authenticate 67
no ip sctp authenticate 68
no ip sctp authenticate 69
no ip sctp authenticate 70
no ip sctp authenticate 71
no ip sctp authenticate 72
no ip sctp authenticate 73
no ip sctp authenticate 74
no ip sctp authenticate 75
no ip sctp authenticate 76
no ip sctp authenticate 77
no ip sctp authenticate 78
no ip sctp authenticate 79
no ip sctp authenticate 80
no ip sctp authenticate 81
no ip sctp authenticate 82
no ip sctp authenticate 83
no ip sctp authenticate 84
no ip sctp authenticate 85
no ip sctp authenticate 86
no ip sctp authenticate 87
no ip sctp authenticate 88
no ip sctp authenticate 89
no ip sctp authenticate 90
no ip sctp authenticate 91
no ip sctp authenticate 92
no ip sctp authenticate 93
no ip sctp authenticate 94
no ip sctp authenticate 95
no ip sctp authenticate 96
no ip sctp authenticate 97
no ip sctp authenticate 98
no ip sctp authenticate 99
no ip sctp authenticate 100
no ip sctp authenticate 101
no ip sctp authenticate 102
no ip sctp authenticate 103
no ip sctp authenticate 104
no ip sctp authenticate 105
no ip sctp authenticate 106
no ip sctp authenticate 107
no ip sctp authenticate 108
no ip sctp authenticate 109
no ip sctp authenticate 110
no ip sctp authenticate 111
no ip sctp authenticate 112
no ip sctp authenticate 113
no ip sctp authenticate 114
no ip sctp authenticate 115
no ip sctp authenticate 116
no ip sctp authenticate 117
no ip sctp authenticate 118
no ip sctp authenticate 119
no ip sctp authenticate 120
no ip sctp authenticate 121
no ip sctp authenticate 122
no ip sctp authenticate 123
no ip sctp authenticate 124
no ip sctp authenticate 125
no ip sctp authenticate 126
no ip sctp authenticate 127
no ip sctp authenticate packet-drop
no ip sctp authenticate stream-reset
no ip sctp authenticate 131
no ip sctp authenticate 132
no ip sctp authenticate 133
no ip sctp authenticate 134
no ip sctp authenticate 135
no ip sctp authenticate 136
no ip sctp authenticate 137
no ip sctp authenticate 138
no ip sctp authenticate 139
no ip sctp authenticate 140
no ip sctp authenticate 141
no ip sctp authenticate 142
no ip sctp authenticate 143
no ip sctp authenticate 145
no ip sctp authenticate 146
no ip sctp authenticate 147
no ip sctp authenticate 148
no ip sctp authenticate 149
no ip sctp authenticate 150
no ip sctp authenticate 151
no ip sctp authenticate 152
no ip sctp authenticate 153
no ip sctp authenticate 154
no ip sctp authenticate 155
no ip sctp authenticate 156
no ip sctp authenticate 157
no ip sctp authenticate 158
no ip sctp authenticate 159
no ip sctp authenticate 160
no ip sctp authenticate 161
no ip sctp authenticate 162
no ip sctp authenticate 163
no ip sctp authenticate 164
no ip sctp authenticate 165
no ip sctp authenticate 166
no ip sctp authenticate 167
no ip sctp authenticate 168
no ip sctp authenticate 169
no ip sctp authenticate 170
no ip sctp authenticate 171
no ip sctp authenticate 172
no ip sctp authenticate 173
no ip sctp authenticate 174
no ip sctp authenticate 175
no ip sctp authenticate 176
no ip sctp authenticate 177
no ip sctp authenticate 178
no ip sctp authenticate 179
no ip sctp authenticate 180
no ip sctp authenticate 181
no ip sctp authenticate 182
no ip sctp authenticate 183
no ip sctp authenticate 184
no ip sctp authenticate 185
no ip sctp authenticate 186
no ip sctp authenticate 187
no ip sctp authenticate 188
no ip sctp authenticate 189
no ip sctp authenticate 190
no ip sctp authenticate 191
no ip sctp authenticate fwd-tsn
no ip sctp authenticate 194
no ip sctp authenticate 195
no ip sctp authenticate 196
no ip sctp authenticate 197
no ip sctp authenticate 198
no ip sctp authenticate 199
no ip sctp authenticate 200
no ip sctp authenticate 201
no ip sctp authenticate 202
no ip sctp authenticate 203
no ip sctp authenticate 204
no ip sctp authenticate 205
no ip sctp authenticate 206
no ip sctp authenticate 207
no ip sctp authenticate 208
no ip sctp authenticate 209
no ip sctp authenticate 210
no ip sctp authenticate 211
no ip sctp authenticate 212
no ip sctp authenticate 213
no ip sctp authenticate 214
no ip sctp authenticate 215
no ip sctp authenticate 216
no ip sctp authenticate 217
no ip sctp authenticate 218
no ip sctp authenticate 219
no ip sctp authenticate 220
no ip sctp authenticate 221
no ip sctp authenticate 222
no ip sctp authenticate 223
no ip sctp authenticate 224
no ip sctp authenticate 225
no ip sctp authenticate 226
no ip sctp authenticate 227
no ip sctp authenticate 228
no ip sctp authenticate 229
no ip sctp authenticate 230
no ip sctp authenticate 231
no ip sctp authenticate 232
no ip sctp authenticate 233
no ip sctp authenticate 234
no ip sctp authenticate 235
no ip sctp authenticate 236
no ip sctp authenticate 237
no ip sctp authenticate 238
no ip sctp authenticate 239
no ip sctp authenticate 240
no ip sctp authenticate 241
no ip sctp authenticate 242
no ip sctp authenticate 243
no ip sctp authenticate 244
no ip sctp authenticate 245
no ip sctp authenticate 246
no ip sctp authenticate 247
no ip sctp authenticate 248
no ip sctp authenticate 249
no ip sctp authenticate 250
no ip sctp authenticate 251
no ip sctp authenticate 252
no ip sctp authenticate 253
no ip sctp authenticate 254
no ip sctp authenticate 255
!
ip vrf RED
rd 4:4
route-target export 4:4
route-target import 4:4
!
ip dhcp relay information policy replace
ip dhcp relay information check
ip dhcp use class
ip dhcp use vrf connected
ip dhcp binding cleanup interval 120
ip dhcp compatibility suboption link-selection cisco
ip dhcp conflict logging
ip dhcp ping packets 2
ip dhcp ping timeout 500
!
!
!
ip flow-cache entries 4096
ip flow-cache timeout inactive 15
ip flow-cache timeout active 30
ip bootp server
ip domain retry 2
ip domain timeout 3
ip domain lookup
ip domain lookup nsap
ip sap cache-timeout 1440
ip multicast route-limit 2147483647
ip pgm router elimination-interval 2
ip mfib
ip ips memory threshold 5
ip inspect log drop-pkt
no ip inspect fast
ip inspect hashtable-size 1024
ip reflexive-list timeout 300
ip dhcp-server query lease retries 2
ip dhcp-server query lease timeout 10
ip dhcp-client broadcast-flag
ip dhcp-client default-router distance 254
ip device tracking probe count 3
ip device tracking probe interval 30
ip device tracking probe use-svi
no ip device tracking
ip accounting-threshold 512
ip cef optimize neighbor resolution
ip cef
no ip cef accounting
ip cef load-sharing algorithm universal E6B80BFB
ip igmp ssm-map query dns
ipv6 hop-limit 64
ipv6 icmp error-interval 100 10
ipv6 nd cache expire
no ipv6 nd ra solicited unicast
ipv6 nd nsf convergence 120
ipv6 nd nsf throttle 512
ipv6 nd nsf dad suppress 60
ipv6 nd nud limit 256 refresh 10
ipv6 nd reachable-time 0
ipv6 nd ns-interval 0
ipv6 nd resolution data limit 16
ipv6 nd dad time 0
ipv6 nd dad loopback detect
ipv6 traffic interface-statistics
ipv6 cef optimize neighbor resolution
no ipv6 cef
ipv6 cef load-sharing algorithm universal E6B80BFB
ipv6 mfib
no ipv6 dhcp-relay option vpn
ipv6 dhcp ping packets 0
ipv6 dhcp iana-route-add
ipv6 dhcp server join all-dhcp-servers
no ipv6 dhcp server vrf enable
ipv6 inspect max-incomplete low 2147483647
ipv6 inspect max-incomplete high 2147483647
ipv6 inspect one-minute low 2147483647
ipv6 inspect one-minute high 2147483647
ipv6 inspect udp idle-time 30
ipv6 inspect hashtable-size 1021
ipv6 inspect tcp idle-time 3600
ipv6 inspect tcp finwait-time 5
ipv6 inspect tcp synwait-time 30
ipv6 inspect tcp max-incomplete host 4294967295 block-time 0
ipv6 rip vrf-mode enable
ipv6 multicast multipath
ipv6 multicast rpf use-bgp
ipv6 spd queue min-threshold 73
ipv6 spd queue max-threshold 74
ntp max-associations 100
l2tp tunnel l2tpv3 accounting headers
!
kerberos timeout 15
kerberos retry 4
kerberos processes 1
frame-relay address registration auto-address
parameter-map type inspect default
audit-trail off
alert on
sessions maximum 2147483647
max-incomplete low 2147483647
max-incomplete high 2147483647
one-minute low 2147483647
one-minute high 2147483647
udp idle-time 30
icmp idle-time 10
dns-timeout 5
tcp idle-time 3600
tcp finwait-time 5
tcp synwait-time 30
tcp max-incomplete host 4294967295 block-time 0
parameter-map type ooo global
tcp reassembly timeout 5
tcp reassembly queue length 16
tcp reassembly memory limit 1024
multilink virtual-template 0
multilink bundle-name authenticated
no mab request format attribute 32
mab logging verbose
clns configuration-time 60
clns holding-time 300
clns packet-lifetime 64
clns security pass-through
no clns want-erpdu
isis display delimiter return 1
mpls label range 16 100000
mpls label mode all-vrfs protocol all-afs per-prefix
mpls ldp backoff 15 120
mpls ldp logging neighbor-changes
mpls ldp logging password configuration
mpls ldp logging password rollover
mpls ldp graceful-restart timers neighbor-liveness 120
mpls ldp graceful-restart timers max-recovery 120
mpls ldp graceful-restart timers forwarding-holding 600
mpls ldp holdtime 180
mpls ldp discovery hello interval 5
mpls ldp discovery hello holdtime 15
mpls ldp discovery targeted-hello interval 10
mpls ldp discovery targeted-hello holdtime 90
mpls ldp advertise-labels
mpls ldp maxhops 255
mpls mldp forwarding recursive
mpls mldp path multipath upstream
mpls mldp path multipath downstream
mpls mldp
mpls oam
echo revision 4
echo vendor-extension
no mpls export vpnv4 prefixes
no mpls export interval
no mpls discovery vpn interval
no mpls discovery vpn next-hop
mpls ip propagate-ttl
mpls ip
profile flow source limit 10
media-proxy services rate-limit 500
no metadata source nbar
no metadata flow transmit
!
!
per-call export primary system: secondary system:
per-call shutdown
no virtual-template subinterface
no virtual-template snmp
!
voice call trap deviation 49
voice call trap deviation 49 vad
no voice call send-alert
no voice call disc-pi-off
no voice call convert-discpi-to-prog
no voice call debug full-guid
voice call carrier capacity timer interval 25
voice call trunkgroup capacity timer interval 25
voice call prefix capacity timer interval 25
voice call carrier trigger percent-change 30
voice call trunkgroup trigger percent-change 30
voice call prefix trigger percent-change 30
voice call carrier trigger lwm 10
voice call trunkgroup trigger lwm 10
voice call prefix trigger lwm 10
voice call carrier trigger hwm 80
voice call trunkgroup trigger hwm 80
voice call prefix trigger hwm 80
voice call carrier capacity mir 10
voice call trunkgroup capacity mir 10
voice call prefix capacity mir 10
voice call carrier capacity stw 10
voice call trunkgroup capacity stw 10
voice call prefix capacity stw 10
no voice call carrier capacity reporting maxima
no voice call trunkgroup capacity reporting maxima
no voice call prefix capacity reporting maxima
no voice call carrier capacity reporting inflection
no voice call trunkgroup capacity reporting inflection
no voice call prefix capacity reporting inflection
voice call carrier csr reporting interval 25
voice call trunkgroup csr reporting interval 25
voice call prefix csr reporting interval 25
voice call carrier csr recording interval 60
voice call trunkgroup csr recording interval 60
voice call prefix csr recording interval 60
voice call carrier csr growth interval 10
voice call trunkgroup csr growth interval 10
voice call prefix csr growth interval 10
voice call carrier csr data-points 30
voice call trunkgroup csr data-points 30
voice call prefix csr data-points 30
no voice rtp send-recv
no voice disc-pi-incoming-on
!
!
voice class uri sip preference host user-id
!
voice vad-time 250
voice statistics max-storage-duration
voice statistics display-format separator
voice statistics field-params mcd 2
voice statistics field-params lost-packet 1000
voice statistics field-params packet-latency 250
voice statistics field-params packet-jitter 250
voice statistics push ftp max-file-size 4294967295
no voice persistent-storage
!
no voice pcm capture buffer
no voice pcm capture destination
no voice pcm capture on-demand-trigger
voice pcm capture user-trigger-string #123 #456 stream 7 duration 0
!
cts server deadtime 20
cts server test all enable
cts server test all idle-time 60
cts server test all deadtime 20
no cts cache enable
cts dot1x-server-timeout 30
cts dot1x-supp-timeout 30
cts logging verbose
no cts sxp enable
cts sxp retry period 120
cts sxp reconciliation period 120
no cts sxp log binding-changes
cts sxp mapping network-map 0
cts sxp speaker hold-time 120
cts sxp listener hold-time 90 180
cts sxp node-id 0
http client cache memory pool 10000
http client cache memory file 50
no http client cache query
http client cookie
http client connection persistent
http client connection timeout 5
http client connection idle timeout 2
http client response timeout 10
ivr prompt cutoff-threshold 500
ivr prompt streamed none
ivr record memory system 10240
ivr record memory session 250
ivr record jitter tftp: 32000
ivr record jitter http: 32000
ivr record cpu flash 15
crypto pki token default removal timeout 0
crypto pki token default max-retries 15
!
!
crypto pki crl download schedule prepublish 0
crypto pki crl download schedule retries 5
crypto pki crl download schedule retries interval 30
crypto pki crl cache size 64
call-history-mib retain-timer 15
call-history-mib max-size 100
dot1x system-auth-control
dot1x logging verbose
no dot1x critical eapol
memory check-interval 60
memory statistics history table 24
memory validate-checksum 60
memory lite
memory chunk siblings threshold 10000
file privilege 15
file prompt alert
eou revalidate
eou max-retry 3
eou ratelimit 20
eou port 21862
no eou allow ip-station-id
no eou allow clientless
eou timeout hold-period 180
eou timeout status-query 300
eou timeout retransmit 3
eou timeout aaa 60
eou timeout revalidation 36000
eou logging
username nautobot privilege 15 secret 5 $1$G145$rNMSv80aiY.QsVS9Q.jlw.
!
redundancy
no maintenance-mode
scripting tcl low-memory 211689359
scripting tcl trustpoint untrusted terminate
no scripting tcl secure-mode
crypto engine software ipsec
no crypto engine software isakmp
!
process-max-time 200
lldp run
cdp advertise-v2
cdp timer 60
cdp holdtime 180
cdp log mismatch duplex
cdp run
cdp tlv app
!
no ip finger
no ip tcp ecn
no ip tcp selective-ack
no ip tcp timestamp
ip tcp delayed-ack
ip tcp chunk-size 0
ip tcp mss 0
ip tcp keepalive retries 4
ip tcp keepalive interval 60
ip tcp window-size 4128
ip tcp queuemax 20
ip tcp synwait-time 30
no ip tcp path-mtu-discovery
no ip tcp async-mobility server
ip tcp RST-count 10 RST-window 5000
ip tcp intercept fast
ip tcp intercept connection-timeout 86400
ip tcp intercept finrst-timeout 5
ip tcp intercept watch-timeout 30
ip tcp intercept max-incomplete low 900 high 1100
ip tcp intercept one-minute low 900 high 1100
ip tcp intercept mode intercept
ip tcp intercept drop-mode oldest
ip telnet tos C0
ip telnet timeout retransmit 0
no ip telnet quiet
no ip telnet hidden hostnames
no ip telnet hidden addresses
ip telnet comport enable
ip telnet comport flow level 16
ip telnet comport receive window 4128
ip telnet comport disconnect delay 0
ip ftp passive
ip tftp min-timeout 4
no ip tftp claim-netascii
ip tftp blocksize 512
ip ssh time-out 120
ip ssh authentication-retries 3
ip ssh break-string ~break
ip ssh dh min size 1024
ip ssh server authenticate user publickey
ip ssh server authenticate user keyboard
ip ssh server authenticate user password
ip ssh server certificate profile
server
no ocsp-response include
user
no ocsp-response required
!
ip ssh server algorithm mac hmac-sha1 hmac-sha1-96
ip ssh server algorithm encryption aes128-ctr aes192-ctr aes256-ctr aes128-cbc 3des-cbc aes192-cbc aes256-cbc
ip ssh server algorithm hostkey x509v3-ssh-rsa ssh-rsa
ip ssh server algorithm authentication publickey keyboard password
ip ssh server algorithm publickey x509v3-ssh-rsa ssh-rsa
ip ssh client algorithm mac hmac-sha1 hmac-sha1-96
ip ssh client algorithm encryption aes128-ctr aes192-ctr aes256-ctr aes128-cbc 3des-cbc aes192-cbc aes256-cbc
csdb tcp synwait-time 30
csdb tcp idle-time 3600
csdb tcp finwait-time 5
csdb tcp reassembly max-memory 1024
csdb tcp reassembly max-queue-length 16
csdb udp idle-time 30
csdb icmp idle-time 10
csdb session max-session 65535
csdb alarm
!
crypto ctcp keepalive 5
crypto ikev2 authorization policy default
route set interface
route accept any
!
crypto ikev2 proposal default
encryption aes-cbc-256 aes-cbc-192 aes-cbc-128
integrity sha512 sha384 sha256 sha1 md5
group 5 2
!
crypto ikev2 policy default
match fvrf any
proposal default
!
crypto ikev2 nat keepalive 0
crypto ikev2 diagnose error 50
crypto ikev2 dpd 0 0 periodic
crypto ikev2 limit max-in-negotation-sa 400 outgoing
crypto ikev2 limit max-in-negotation-sa 40
crypto ikev2 limit max-sa 0
crypto ikev2 window 5
crypto ikev2 fragmentation mtu 576
crypto isakmp diagnose error 50
crypto ipsec optional retry 300
!
crypto ipsec security-association lifetime kilobytes 4608000
crypto ipsec security-association lifetime seconds 3600
no crypto ipsec security-association replay disable
crypto ipsec security-association replay window-size 64
crypto ipsec security-association dummy
crypto ipsec security-association ecn discard
!
crypto ipsec transform-set default esp-aes esp-sha-hmac
mode transport
crypto ipsec nat-transparency udp-encapsulation
!
crypto ipsec profile default
no set security-association dfbit
set security-association lifetime kilobytes 4608000
set security-association lifetime seconds 3600
no set security-association idle-time
no set security-association replay window-size
set security-association dummy
set security-association ecn
!
!
crypto call admission limit ike sa 0
crypto call admission limit ike in-negotiation-sa 1000
crypto call admission limit ipsec sa 0
crypto mib ipsec flowmib history tunnel size 200
crypto mib ipsec flowmib history failure size 200
!
buffers element permanent 1000
buffers element minimum 100
buffers header permanent 256
buffers header max-free 512
buffers header min-free 10
buffers header initial 0
buffers fastswitching permanent 384
buffers fastswitching max-free 1024
buffers fastswitching min-free 128
buffers fastswitching initial 0
buffers small permanent 120
buffers small max-free 250
buffers small min-free 20
buffers small initial 0
buffers middle permanent 90
buffers middle max-free 200
buffers middle min-free 10
buffers middle initial 0
buffers big permanent 90
buffers big max-free 300
buffers big min-free 5
buffers big initial 0
buffers verybig permanent 10
buffers verybig max-free 300
buffers verybig min-free 0
buffers verybig initial 0
buffers large permanent 10
buffers large max-free 30
buffers large min-free 0
buffers large initial 0
buffers huge permanent 0
buffers huge max-free 13
buffers huge min-free 0
buffers huge size 18024
buffers huge initial 0
no buffers tune automatic
buffers Ethernet0/0 permanent 96
buffers Ethernet0/0 max-free 96
buffers Ethernet0/0 min-free 0
buffers Ethernet0/0 initial 0
buffers Ethernet0/1 permanent 96
buffers Ethernet0/1 max-free 96
buffers Ethernet0/1 min-free 0
buffers Ethernet0/1 initial 0
buffers Ethernet0/2 permanent 96
buffers Ethernet0/2 max-free 96
buffers Ethernet0/2 min-free 0
buffers Ethernet0/2 initial 0
buffers Ethernet0/3 permanent 96
buffers Ethernet0/3 max-free 96
buffers Ethernet0/3 min-free 0
buffers Ethernet0/3 initial 0
!
!
!
!
interface Loopback0
ip address 3.3.3.3 255.255.255.255
ip redirects
ip unreachables
ip proxy-arp
ip mtu 1514
ip pim join-prune-interval 60
ip pim dr-priority 1
ip pim query-interval 30
ip mfib forwarding input
ip mfib forwarding output
ip mfib cef input
ip mfib cef output
ip cef accounting non-recursive internal
ip load-sharing per-destination
ip route-cache cef
ip route-cache
ip split-horizon
ip igmp last-member-query-interval 1000
ip igmp last-member-query-count 2
ip igmp query-max-response-time 10
ip igmp v3-query-max-response-time 10
ip igmp version 2
ip igmp query-interval 60
ip igmp tcn query count 2
ip igmp tcn query interval 10
ip ospf resync-timeout 40
ip ospf dead-interval 40
ip ospf hello-interval 10
ip ospf retransmit-interval 5
ip ospf transmit-delay 1
no ip ospf flood-reduction
no ip ospf demand-circuit
no ip ospf mtu-ignore
no ip ospf database-filter all out
ip ospf 1 area 0
ip ospf cost 1
load-interval 300
carrier-delay 2
no shutdown
tx-ring-limit 0
tx-queue-limit 0
ipv6 nd reachable-time 0
ipv6 nd ns-interval 0
ipv6 nd dad loopback detect
ipv6 nd prefix framed-ipv6-prefix
ipv6 nd nud igp
no ipv6 nd ra solicited unicast
ipv6 nd ra lifetime 1800
ipv6 nd ra interval 200
ipv6 redirects
ipv6 unreachables
ipv6 mfib forwarding input
ipv6 mfib forwarding output
ipv6 mfib cef input
ipv6 mfib cef output
dot1q tunneling ethertype 0x8100
snmp trap link-status
mpls mtu 1514
mpls mldp
no arp arpa
arp timeout 0
clns route-cache
no h323-gateway voip interface
hold-queue 75 in
hold-queue 0 out
no bgp-policy accounting input
no bgp-policy accounting output
no bgp-policy accounting input source
no bgp-policy accounting output source
no bgp-policy source ip-prec-map