forked from vyos/vyatta-op
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog
2808 lines (1662 loc) · 83 KB
/
changelog
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
vyatta-op (0.14.0+vyos2+current8) unstable; urgency=medium
* T963: no authorization logs
-- hagbard <vyosdev@derith.de> Wed, 07 Nov 2018 12:38:20 -0800
vyatta-op (0.14.0+vyos2+current7) unstable; urgency=medium
* T870: Commit-confirm restarts the server even after commit
- show reboot now also show if scheduled via commit-confirm or systemd.
-- hagbard <vyosdev@derith.de> Tue, 09 Oct 2018 16:07:22 -0700
vyatta-op (0.14.0+vyos2+current6) unstable; urgency=medium
* T588: Remove DNS forwarder restart command in favor if XML interface definition
-- Christian Poessinger <christian@poessinger.com> Wed, 11 Apr 2018 20:33:53 +0200
vyatta-op (0.14.0+vyos2+current5) unstable; urgency=medium
* T157: Remove "install system" command
-- Christian Poessinger <christian@poessinger.com> Sat, 10 Mar 2018 18:29:30 +0100
vyatta-op (0.14.0+vyos2+current4) unstable; urgency=medium
* T523: Use new location for dnsmasq config files
-- Christian Poessinger <christian@poessinger.com> Sun, 21 Jan 2018 17:10:30 +0100
vyatta-op (0.14.0+vyos2+current3) unstable; urgency=medium
* Changed 'show tech-support' implementation to a redacted output, private
information is removed.
* Added 'show tech-support private' which contains non redacted output
-- Christian Poessinger <christian@poessinger.com> Sun, 29 Oct 2017 15:36:45 +0100
vyatta-op (0.14.0+vyos2+current2) unstable; urgency=medium
* New implementation of "run show version"
-- <daniil@baturin.org> Thu, 03 Mar 2016 09:57:48 -0500
vyatta-op (0.14.0+vyos2+current1) unstable; urgency=medium
[ Thomas Jepp ]
* Add missing build depends for Jessie.
[ Daniil Baturin ]
* Remove referenced to Vyatta from 'show version' completion help.
* Easter egg: 'show version funny' command that displays limericks after version information.
[ Kim Hagen ]
-- Kim Hagen <kim.sidney@gmail.com> Sun, 24 Jan 2016 15:19:11 -0500
vyatta-op (0.14.0+vyos2+lithium12) unstable; urgency=low
[ Thomas Jepp ]
* Implemented a DNS forwarder restart command - "restart dns forwarding"
[ Alex Harpin ]
* vyatta-op: set 'restart dns forwarding' to use vyatta-dns-forwarding.pl
-- Alex Harpin <development@landsofshadow.co.uk> Thu, 19 Nov 2015 22:30:51 +0000
vyatta-op (0.14.0+vyos2+lithium11) unstable; urgency=low
[ Alex Harpin]
* vyatta-op: skip unknown interfaces in "show interfaces counters/detail"
-- Alex Harpin <development@landsofshadow.co.uk> Mon, 02 Nov 2015 19:39:46 +0000
vyatta-op (0.14.0+vyos2+lithium10) unstable; urgency=low
[ Alex Harpin]
* vyatta-op: strip-private removes "user" rather than actual username
* vyatta-op: remove user login public key information with strip-private
* vyatta-op: update dh_gencontrol with new development build flag
-- Alex Harpin <development@landsofshadow.co.uk> Thu, 18 Jun 2015 21:14:17 +0100
vyatta-op (0.14.0+vyos2+lithium9) unstable; urgency=low
* Replace the old hypervisor_vendor utility with hvinfo.
* Update debian/control to match the reality.
-- Daniil Baturin <daniil@baturin.org> Thu, 09 Apr 2015 00:27:36 +0200
vyatta-op (0.14.0+vyos2+lithium8) unstable; urgency=low
* Bug #377: make commands pipe throw an error in op mode.
-- Daniil Baturin <daniil@baturin.org> Tue, 17 Feb 2015 09:49:12 +0100
vyatta-op (0.14.0+vyos2+lithium7) unstable; urgency=low
[ Alex Harpin ]
* vyatta-op: remove unused reboot configuration nodes
* vyatta-op: update the system poweroff cli command to be script based
* vyatta-op: final fix for the ssh client failing to disconnect on reboot
* vyatta-op: replace 'show shutdown' with 'show poweroff' and use script
-- Alex Harpin <development@landsofshadow.co.uk> Sun, 25 Jan 2015 09:17:06 +0000
vyatta-op (0.14.0+vyos2+lithium6) unstable; urgency=low
* Bug #456: add simple CLI for iperf.
-- Daniil Baturin <daniil@baturin.org> Tue, 20 Jan 2015 15:50:12 +0100
vyatta-op (0.14.0+vyos2+lithium5) unstable; urgency=low
[ Alex Harpin ]
* vyatta-op: fix for show host domain replies (none)
-- Alex Harpin <development@landsofshadow.co.uk> Wed, 14 Jan 2015 15:49:29 +0000
vyatta-op (0.14.0+vyos2+lithium4) unstable; urgency=low
[ Alex Harpin ]
* vyatta-op: on shutdown/reboot the client ssh session doesn't disconnect
-- Alex Harpin <development@landsofshadow.co.uk> Thu, 01 Jan 2015 11:55:53 +0000
vyatta-op (0.14.0+vyos2+lithium3) unstable; urgency=low
[ Alex Harpin ]
* Revert "Add an option to disable inotify to fail -f commands."
-- Alex Harpin <development@landsofshadow.co.uk> Wed, 31 Dec 2014 15:36:15 +0000
vyatta-op (0.14.0+vyos2+lithium2) unstable; urgency=low
* Force release
-- Alex Harpin <development@landsofshadow.co.uk> Sun, 14 Dec 2014 20:11:37 +0000
vyatta-op (0.14.0+vyos2+lithium1) unstable; urgency=low
* New branch
-- Alex Harpin <development@landsofshadow.co.uk> Sun, 30 Nov 2014 23:13:05 +0000
vyatta-op (0.14.0+vyos1+helium17) unstable; urgency=low
[ Alex Harpin ]
* vyatta-op: formatting changes for style consistency
* vyatta-op: fix for the config file copy via scp failure
[ Daniil Baturin ]
-- Daniil Baturin <daniil@baturin.org> Thu, 09 Oct 2014 22:56:24 +0200
vyatta-op (0.14.0+vyos1+helium16) unstable; urgency=low
* Add an option to disable inotify to fail -f commands.
-- Daniil Baturin <daniil@baturin.org> Wed, 08 Oct 2014 18:27:55 +0200
vyatta-op (0.14.0+vyos1+helium15) unstable; urgency=low
[ upa ]
* Add vxlan support
[ Daniil Baturin ]
-- Daniil Baturin <daniil@baturin.org> Wed, 08 Oct 2014 16:39:50 +0200
vyatta-op (0.14.0+vyos1+helium14) unstable; urgency=low
* Bug 300: disallow entering conf mode as root.
-- Daniil Baturin <daniil@baturin.org> Tue, 02 Sep 2014 20:44:25 +0200
vyatta-op (0.14.0+vyos1+helium13) unstable; urgency=low
* Boot type check had unionfs hardcoded in it. Now it has overlayfs
hardcoded in it.
-- Daniil Baturin <daniil@baturin.org> Fri, 25 Jul 2014 08:55:34 +0200
vyatta-op (0.14.0+vyos1+helium12) unstable; urgency=low
* Update package maintainer address.
-- Daniil Baturin <daniil@baturin.org> Tue, 08 Jul 2014 16:55:12 +0200
vyatta-op (0.14.0+vyos1+helium11) unstable; urgency=low
* Add Maya calendar support to date commands
-- Daniil Baturin <daniil@baturin.org> Mon, 07 Jul 2014 10:56:08 +0200
vyatta-op (0.14.0+vyos1+helium10) unstable; urgency=low
* Add more interface types to "show arp" completion.
-- Daniil Baturin <daniil@baturin.org> Thu, 03 Jul 2014 20:22:50 +0200
vyatta-op (0.14.0+vyos1+helium9) unstable; urgency=low
* Bug #251: add "commands" filter to completion list.
-- Daniil Baturin <daniil@baturin.org> Wed, 02 Jul 2014 14:37:04 +0200
vyatta-op (0.14.0+vyos1+helium8) unstable; urgency=low
* Bug #104: add help text for the strip-private pipe.
* Bug #251: add completion and help for the "| commands" filter.
-- Daniil Baturin <daniil@baturin.org> Wed, 02 Jul 2014 05:19:48 +0200
vyatta-op (0.14.0+vyos1+helium7) unstable; urgency=low
* Bug #104: add pipe for stripping private information from config.
-- Daniil Baturin <daniil@baturin.org> Wed, 02 Jul 2014 03:47:45 +0200
vyatta-op (0.14.0+vyos1+helium6) unstable; urgency=low
[ Kim Hagen ]
* Bug #71: "show system memory cache" gives "permission denied"
message
[ Daniil Baturin ]
* Bug #39: Add op mode commands for sending gratuitous ARP
requests/replies.
-- Daniil Baturin <daniil@baturin.org> Wed, 02 Jul 2014 01:59:32 +0200
vyatta-op (0.14.0+vyos1+helium5) unstable; urgency=low
* Replace Vyatta with VyOS in "show license" command help.
* Bug #159: add op mode support for dummy interfaces.
* Bug #170: add "clear interface" commands for L2TPv3 interfaces.
* Bug #170: add L2TPv3 interface type to monitor command generator.
-- Daniil Baturin <daniil@baturin.org> Sun, 06 Apr 2014 15:40:11 +0200
vyatta-op (0.14.0+vyos1+helium4) unstable; urgency=low
[ higebu ]
* Add support for l2tpv3
[ Daniil Baturin ]
-- Daniil Baturin <daniil@baturin.org> Sun, 06 Apr 2014 13:43:26 +0200
vyatta-op (0.14.0+vyos1+helium3) unstable; urgency=low
* Bug #156: Check for 'vyatta' or 'vyos' kernels.
* Bug #157: Replace 'Intel 32/64bit' with 'x86 32/64-bit' in 'show
version'.
-- Daniil Baturin <daniil@baturin.org> Wed, 05 Mar 2014 17:37:23 +0100
vyatta-op (0.14.0+vyos1+helium2) unstable; urgency=low
* Bug #148: 'ping' does ipv6 too, but help only mentions IPv4
-- Daniil Baturin <daniil@baturin.org> Tue, 04 Mar 2014 15:03:12 +0100
vyatta-op (0.14.0+vyos1+helium1) unstable; urgency=low
* New branch
-- Daniil Baturin <daniil@baturin.org> Sat, 15 Feb 2014 19:45:08 +0100
vyatta-op (0.14.0+hydrogen9) unstable; urgency=low
* Rename s/detailed/detail/ for consistenct with the rest of the
system.
-- Daniil Baturin <daniil@baturin.org> Sun, 22 Dec 2013 17:13:14 +0100
vyatta-op (0.14.0+hydrogen8) unstable; urgency=low
* Bug #95: Issue warnings on attempts to monitor rules with disabled
logging.
-- Daniil Baturin <daniil@baturin.org> Sat, 21 Dec 2013 08:38:48 +0100
vyatta-op (0.14.0+hydrogen7) unstable; urgency=low
* Bug #24: add a command to display recently logged in users.
-- Daniil Baturin <daniil@baturin.org> Mon, 02 Dec 2013 03:36:21 +0100
vyatta-op (0.14.0+hydrogen6) unstable; urgency=low
* Bug #3: Display RAM usage overview in simple total/free/used format.
-- Daniil Baturin <daniil@baturin.org> Mon, 02 Dec 2013 02:23:03 +0100
vyatta-op (0.14.0+hydrogen5) unstable; urgency=low
* Add dependencies on usbutils and lsscsi.
-- Daniil Baturin <daniil@baturin.org> Fri, 08 Nov 2013 00:02:56 +0100
vyatta-op (0.14.0+hydrogen4) unstable; urgency=low
* Make USB vieweing command more consistent with other hardware
commands.
* Add command to view SCSI devices (show hardware scsi [detailed).
* Fix typo in "show hardware scsi detailed" command.
-- Daniil Baturin <daniil@baturin.org> Thu, 07 Nov 2013 23:23:32 +0100
vyatta-op (0.14.0+hydrogen3) unstable; urgency=low
* Remove fake entry from changelog
-- Daniil Baturin <daniil@baturin.org> Sun, 03 Nov 2013 22:20:42 +0100
vyatta-op (0.14.0+hydrogen2) unstable; urgency=low
* Remove "format system-floppy" command.
-- Daniil Baturin <daniil@baturin.org> Sun, 03 Nov 2013 21:50:22 +0100
vyatta-op (0.13.275+daisy9) unstable; urgency=low
* bz8631: Fix lease file regex to include leases on vif
-- James Davidson <james.davidson@vyatta.com> Wed, 19 Jun 2013 14:18:13 -0700
vyatta-op (0.13.275+daisy8) unstable; urgency=low
* 8970: Fix for show monitor
-- Saurabh Mohan <saurabh@vyatta.com> Mon, 17 Jun 2013 15:00:10 -0700
vyatta-op (0.13.275+daisy7) unstable; urgency=low
* allow optional dependency on vyatta-unicast
-- Robert Bays <robert@vyatta.com> Sat, 01 Jun 2013 16:50:46 -0700
vyatta-op (0.13.275+daisy6) unstable; urgency=low
* Update DHCP server commands used in "show tech-support"
-- James Davidson <james.davidson@vyatta.com> Fri, 24 May 2013 13:37:43 -0700
vyatta-op (0.13.275+daisy5) unstable; urgency=low
* Update "monitor interfaces" generation scripts
* Use node generation scripts in build
* Add size and files options to "traffic save"
-- James Davidson <james.davidson@vyatta.com> Fri, 26 Apr 2013 12:13:01 -0700
vyatta-op (0.13.275+daisy4) unstable; urgency=low
* Sync up SNMPv3 support
-- James Davidson <james.davidson@vyatta.com> Wed, 06 Mar 2013 11:35:53 -0800
vyatta-op (0.13.275+daisy3) unstable; urgency=low
* Skip dmesg files starting with "Nothing has been logged yet"
-- James Davidson <james.davidson@vyatta.com> Tue, 26 Feb 2013 11:55:09 -0800
vyatta-op (0.13.275+daisy2) unstable; urgency=low
* Display virt-brand version file if running in VM
-- James Davidson <james.davidson@vyatta.com> Wed, 06 Feb 2013 12:12:26 -0800
vyatta-op (0.13.275+daisy1) unstable; urgency=low
* create daisy branch
-- John Southworth <john.southworth@vyatta.com> Sat, 13 Oct 2012 13:31:22 -0700
vyatta-op (0.13.275) unstable; urgency=low
* new branch
-- John Southworth <john.southworth@vyatta.com> Fri, 12 Oct 2012 19:47:51 -0700
vyatta-op (0.13.274) unstable; urgency=low
* Bugfix 8421: fix show interfaces vrrp detail node to use new syntax
-- John Southworth <john.southworth@vyatta.com> Mon, 08 Oct 2012 21:50:24 -0700
vyatta-op (0.13.273) unstable; urgency=low
* Fix use of LESSCLOSE
-- James Davidson <james.davidson@vyatta.com> Tue, 02 Oct 2012 15:47:40 -0700
vyatta-op (0.13.272) unstable; urgency=low
* Fix handling of unknown interface types
-- Stephen Hemminger <shemminger@vyatta.com> Mon, 17 Sep 2012 17:35:12 -0700
vyatta-op (0.13.271) unstable; urgency=low
* Bugfix 8300: show proper output for 'show interfaces vrrp'; also
fixes bug 8317
-- John Southworth <john.southworth@vyatta.com> Mon, 17 Sep 2012 14:06:22 -0700
vyatta-op (0.13.270) unstable; urgency=low
* bug fix for 8274 - fix deprecated commands in show tech support.
-- Deepti Kulkarni <deepti@vyatta.com> Mon, 17 Sep 2012 11:06:55 -0700
vyatta-op (0.13.269) unstable; urgency=low
* Make opmode completions show the list on blank completion like
config mode now does
* Bugfix 8310: remove 'show log content-inspection'
-- John Southworth <john.southworth@vyatta.com> Wed, 12 Sep 2012 16:14:34 -0700
vyatta-op (0.13.268) unstable; urgency=low
* Fix use of lesspipe
-- James Davidson <james.davidson@vyatta.com> Wed, 05 Sep 2012 10:24:59 -0700
vyatta-op (0.13.267) unstable; urgency=low
* command wrapper doesn't need a login shell
-- John Southworth <john.southworth@vyatta.com> Thu, 30 Aug 2012 09:31:50 -0700
vyatta-op (0.13.266) unstable; urgency=low
* Move display of entitlement info to the top of tech-support output
-- James Davidson <james.davidson@vyatta.com> Tue, 28 Aug 2012 17:07:40 -0700
vyatta-op (0.13.265) unstable; urgency=low
* Fix handling of single quote character (') when parsing command
-- James Davidson <james.davidson@vyatta.com> Tue, 21 Aug 2012 18:01:24 -0700
vyatta-op (0.13.264) unstable; urgency=low
* Bugfix 8217: VTI: add clear and monitor interfaces commands.
-- Saurabh Mohan <saurabh@vyatta.com> Thu, 09 Aug 2012 13:15:44 -0700
vyatta-op (0.13.263) unstable; urgency=low
* Fix NAT regex to also find MASQ logs.
-- James Davidson <james.davidson@vyatta.com> Wed, 01 Aug 2012 17:46:54 -0700
vyatta-op (0.13.262) unstable; urgency=low
* Fix NAT regex and correct log file sort order.
-- James Davidson <james.davidson@vyatta.com> Mon, 09 Jul 2012 12:31:39 -0700
vyatta-op (0.13.261) unstable; urgency=low
* Ignore the default vti interface.
-- Saurabh Mohan <saurabh@vyatta.com> Mon, 04 Jun 2012 16:43:00 -0700
vyatta-op (0.13.260) unstable; urgency=low
* VTI show support.
-- Saurabh Mohan <saurabh@vyatta.com> Wed, 16 May 2012 16:44:59 -0700
vyatta-op (0.13.259) unstable; urgency=low
* Move VRRP to its own package
* Remove vrrp scripts from Makefile
-- John Southworth <john.southworth@vyatta.com> Tue, 15 May 2012 20:47:26 -0700
vyatta-op (0.13.258) unstable; urgency=low
* Add Vyatta wrappers for new keepalived output
-- John Southworth <john.southworth@vyatta.com> Tue, 15 May 2012 11:38:07 -0700
vyatta-op (0.13.257) unstable; urgency=low
* Moved get_terminal_width to Vyatta::Misc
-- John Southworth <john.southworth@vyatta.com> Wed, 09 May 2012 08:51:47 -0700
vyatta-op (0.13.256) unstable; urgency=low
* Use native perl code to figure othe the terminal width
-- John Southworth <john.southworth@vyatta.com> Tue, 08 May 2012 16:00:22 -0700
vyatta-op (0.13.255) unstable; urgency=low
* Use terminal width for interface description wrapping
-- John Southworth <john.southworth@vyatta.com> Tue, 08 May 2012 15:00:07 -0700
vyatta-op (0.13.254) unstable; urgency=low
* bug 7985: fix regex for rename system image command
-- Deepti Kulkarni <deepti@vyatta.com> Mon, 16 Apr 2012 05:02:11 -0700
vyatta-op (0.13.253) unstable; urgency=low
* bug fix for 5792 - Fix the op-mode system image commands for live-cd
-- Deepti Kulkarni <deepti@vyatta.com> Thu, 12 Apr 2012 03:10:10 -0700
vyatta-op (0.13.252) unstable; urgency=low
* Bugfix 8013: Fix space at end of line in command conversion
-- John Southworth <john.southworth@vyatta.com> Wed, 11 Apr 2012 13:30:45 -0700
vyatta-op (0.13.251) unstable; urgency=low
* Use Interface.pm to find interface state
-- Stephen Hemminger <shemminger@vyatta.com> Tue, 10 Apr 2012 18:30:35 -0700
vyatta-op (0.13.250) unstable; urgency=low
[ Stephen Hemminger ]
* Better perl style in boot image
[ Deepti Kulkarni ]
* fix to use the correct perl function
-- Deepti Kulkarni <deepti@vyatta.com> Tue, 10 Apr 2012 09:53:16 -0700
vyatta-op (0.13.249) unstable; urgency=low
* Make ping feel like all the other system commands
* Remove unneeded debugging information from ping script
-- John Southworth <john.southworth@vyatta.com> Thu, 22 Mar 2012 10:38:50 -0700
vyatta-op (0.13.248) unstable; urgency=low
* better fix for bug 7896
* Initial commit for new ping completion
* Add ping templates for completion
-- John Southworth <john.southworth@vyatta.com> Thu, 15 Mar 2012 00:28:12 +0000
vyatta-op (0.13.247) unstable; urgency=low
[ Stephen Hemminger ]
* Add new ping command script
[ John Southworth ]
* Bugfix 7527: Don't override VYATTA_PAGER value if it was previously
set
* Bugfix 7896: make the pppoe log write as the root user
-- John Southworth <john.southworth@vyatta.com> Tue, 13 Mar 2012 22:57:18 +0000
vyatta-op (0.13.246) unstable; urgency=low
* new branch
-- Deepti Kulkarni <deepti@vyatta.com> Sat, 03 Mar 2012 02:26:17 -0800
vyatta-op (0.13.245) unstable; urgency=low
* Fix tech-support save command
-- John Southworth <john.southworth@vyatta.com> Thu, 01 Mar 2012 17:34:53 +0000
vyatta-op (0.13.244) unstable; urgency=low
* Allow users to import ssh keys when using image commands
-- John Southworth <john.southworth@vyatta.com> Thu, 01 Mar 2012 17:14:20 +0000
vyatta-op (0.13.243) unstable; urgency=low
* Bugfix 7555: Allow users to import ssh keys when using 'show tech-
support save' commands
-- John Southworth <john.southworth@vyatta.com> Thu, 01 Mar 2012 00:54:05 +0000
vyatta-op (0.13.242) unstable; urgency=low
* bug fix for 7826 - fixed to use correct perl functions.
-- Deepti Kulkarni <deepti@vyatta.com> Wed, 29 Feb 2012 06:15:51 -0800
vyatta-op (0.13.241) unstable; urgency=low
* Bugfix 4053: add missing top level 'monitor interfaces'
-- John Southworth <john.southworth@vyatta.com> Tue, 28 Feb 2012 12:49:20 -0800
vyatta-op (0.13.240) unstable; urgency=low
* fix for bug 7719 - delete system image should accept 'y' or 'n'
-- Deepti Kulkarni <deepti@vyatta.com> Mon, 27 Feb 2012 05:08:05 -0800
vyatta-op (0.13.239) unstable; urgency=low
* Bugfix 4053: implement bandwidth utilization montior commands 'mon
int <type> <name>'; 'mon int <type> <name> flow'
* Add dendencies for bugfix 4053 to debian/control
-- John Southworth <john.southworth@vyatta.com> Wed, 22 Feb 2012 23:55:13 +0000
vyatta-op (0.13.238) unstable; urgency=low
* Add console keymap reconfigure op-mode command
* Suggest package dialog
-- Stephen Hemminger <shemminger@vyatta.com> Wed, 22 Feb 2012 14:37:32 -0800
vyatta-op (0.13.237) unstable; urgency=low
* Handle 64 bit counters in show interfaces
-- Stephen Hemminger <shemminger@vyatta.com> Wed, 22 Feb 2012 10:49:08 -0800
vyatta-op (0.13.236) unstable; urgency=low
* Add headers to show montioring command
-- John Southworth <john.southworth@vyatta.com> Wed, 22 Feb 2012 10:11:37 -0800
vyatta-op (0.13.235) unstable; urgency=low
* Bugfix 2581: show protocol debugging summary with 'show monitoring'
* Bugfix 5806: Don't show ntp.vyatta.com by default for show ntp
-- John Southworth <john.southworth@vyatta.com> Wed, 22 Feb 2012 08:55:39 -0800
vyatta-op (0.13.234) unstable; urgency=low
* Bug 4086:fixed order of display in show dns forwarding nameservers,
removed redundant information
-- Gaurav <gaurav.sinha@vyatta.com> Tue, 21 Feb 2012 16:31:54 -0800
vyatta-op (0.13.233) unstable; urgency=low
* Add bridge info to show tech support
-- Stephen Hemminger <shemminger@vyatta.com> Tue, 21 Feb 2012 12:14:33 -0800
vyatta-op (0.13.232) unstable; urgency=low
[ Stephen Hemminger ]
* Add missing newline at end of file
[ John Southworth ]
* escape escape characters so they aren't evaluated during command
processing
-- John Southworth <john.southworth@vyatta.com> Tue, 14 Feb 2012 21:54:50 -0800
vyatta-op (0.13.231) unstable; urgency=low
* Bugfix 7774: fix quoted string variable expression
-- John Southworth <john.southworth@vyatta.com> Mon, 13 Feb 2012 18:54:12 -0800
vyatta-op (0.13.230) unstable; urgency=low
* Improve firewall log matches
-- John Southworth <john.southworth@vyatta.com> Thu, 02 Feb 2012 11:17:04 -0800
vyatta-op (0.13.229) unstable; urgency=low
* Fix 'show bridge' help text
-- John Southworth <john.southworth@vyatta.com> Mon, 30 Jan 2012 22:48:09 +0000
vyatta-op (0.13.228) unstable; urgency=low
* add missing node.def from monitor interfaces vrrp
-- John Southworth <john.southworth@vyatta.com> Fri, 20 Jan 2012 18:36:25 +0000
vyatta-op (0.13.227) unstable; urgency=low
* bug 7714: Fixing runtime script error seen in show dns forwarding
statistics
-- Gaurav Sinha <gaurav.sinha@vyatta.com> Mon, 09 Jan 2012 11:02:57 -0800
vyatta-op (0.13.226) unstable; urgency=low
* Send interpreter errors to stderr
-- John Southworth <john.southworth@vyatta.com> Thu, 05 Jan 2012 10:15:20 -0800
vyatta-op (0.13.225) unstable; urgency=low
* Fix NAT monitor rule log prefix.
-- Daniil Baturin <daniil.baturin@vyatta.com> Wed, 04 Jan 2012 04:50:46 +0700
vyatta-op (0.13.224) unstable; urgency=low
* Update NAT monitor templates.
* Remove old NAT monitor templates.
-- Daniil Baturin <daniil.baturin@vyatta.com> Wed, 04 Jan 2012 02:13:08 +0700
vyatta-op (0.13.223) unstable; urgency=low
* Bugfix 7473: Display hardware model, S/N and UUID if available.
-- Bob Gilligan <gilligan@vyatta.com> Thu, 29 Dec 2011 14:23:19 -0800
vyatta-op (0.13.222) unstable; urgency=low
* Add monitoring for vrrp interfaces
-- John Southworth <john.southworth@vyatta.com> Wed, 14 Dec 2011 15:52:41 -0800
vyatta-op (0.13.221) unstable; urgency=low
* Fix a few completion problems
-- John Southworth <john.southworth@vyatta.com> Fri, 09 Dec 2011 12:16:12 -0800
vyatta-op (0.13.220) unstable; urgency=low
* Adjust show interfaces for maximum length of interface name
-- John Southworth <john.southworth@vyatta.com> Fri, 09 Dec 2011 09:31:38 -0800
vyatta-op (0.13.219) unstable; urgency=low
* Add show interfaces for vrrp interfaces
-- John Southworth <john.southworth@vyatta.com> Mon, 05 Dec 2011 12:04:32 -0800
vyatta-op (0.13.218) unstable; urgency=low
* boot-image: fix perl critic warnings
-- Stephen Hemminger <shemminger@vyatta.com> Tue, 29 Nov 2011 11:01:26 -0800
vyatta-op (0.13.217) unstable; urgency=low
* Fix case where node.tag was sent to script instead of the actual
argument
-- John Southworth <john.southworth@vyatta.com> Tue, 15 Nov 2011 14:13:46 -0800
vyatta-op (0.13.216) unstable; urgency=low
* Force release
-- Daniil Baturin <daniil.baturin@vyatta.com> Tue, 15 Nov 2011 23:51:07 +0700
vyatta-op (0.13.215) unstable; urgency=low
* Rename "reset connection-tracking" to "reset aconntrack" to be
consistent with other packages.
-- Daniil Baturin <daniil.baturin@vyatta.com> Tue, 15 Nov 2011 23:49:06 +0700
vyatta-op (0.13.214) unstable; urgency=low
* :Fixing bug 4086, added support for showing domain overrides
-- Gaurav Sinha <gaurav.sinha@vyatta.com> Wed, 09 Nov 2011 16:38:31 -0800
vyatta-op (0.13.213) unstable; urgency=low
* Fix perlcritic warning about bareword file handle
* cleanup rename-image
-- Stephen Hemminger <shemminger@vyatta.com> Wed, 09 Nov 2011 08:19:04 -0800
vyatta-op (0.13.212) unstable; urgency=low
* Remove accidental commit of 'show system boot-messages commit'
command, this was part of a mockup for a proposed bugfix and I
didn't intend to commit it
-- John Southworth <john.southworth@vyatta.com> Mon, 07 Nov 2011 18:05:50 -0600
vyatta-op (0.13.211) unstable; urgency=low
* Fix install help text
-- John Southworth <john.southworth@vyatta.com> Tue, 01 Nov 2011 13:40:03 -0500
vyatta-op (0.13.210) unstable; urgency=low
* Bugfix 7603: add reset top level to allowed list for operator users
-- John Southworth <john.southworth@vyatta.com> Tue, 01 Nov 2011 13:22:55 -0500
vyatta-op (0.13.209) unstable; urgency=low
* Wait for user to hit enter before continuing with a reboot
-- John Southworth <john.southworth@vyatta.com> Tue, 01 Nov 2011 11:31:53 -0500
vyatta-op (0.13.208) unstable; urgency=low
* Create new ping command with the following semantics
* Add monitor command for traceroutes using mtr
* Add monitor for operational commands
* Directory structure for Monitor NAT
* Move 'clear arp' to 'reset ip arp'
* Move 'clear dns' and 'clear connection-tracking' to 'reset dns' and
* Move init-floppy install-system and install-image
* Initial traceroute rework checkin
* Fixup the help text for top level commands; move terminal to set
terminal
* Add toplevel node.def for install
* Move some more commands
* Fix the help text for connection-tracking
* Move 'clear vrrp' to 'reset vrrp'
* fix help text for 'reset vrrp master interface group'
* Remove no top level verb
* Update operator level user top level commands to reflect changes in
the command structure
* Add reset terminal command to fix broken terminal sessions with out
reconnecting
* move 'remove raid' to 'delete raid'
* Initial monitor vpn implementation. Other montior commands will be
build on these scripts
* Move the background monitoring for vpn under each of the categories
as suggested by support
* Forground monitoring for many daemons
* Background monitoring for services
* Add firewall forground monitoring
* Add background monitoring for firewalls
* Fix ping commands off by one problem, fix help txt for ping ipv4
* Add 'monitor firewall ipv6-name' command
* Move 'show debugging' to 'show monitoring protocols' to reflect new
debugging layout
* Move nodes from services since in other operational commands we
don't
* Cleanup background monitor sessions on logout
* Forgot to fix a typo in the local copy of vyatta-monitor-cleanup
* Add 'show monitoring' script to list active background monitoring
* Forground monitoring for nat
* Add background monitoring for NAT
* Move packet capture to 'monitor interfaces'
* More monitor interface traffic commands
* Fix 'monitor interface traffic save'
* Implement packet capture for vifs
* Remove extraneous run commands
* Fix filter completion
* Fix ipv6 matching in ping and traceroute
* remove run from 'montior interface [type] [name]' command
* remove run from 'montior interface [type] [name] vif [name]' command
* move 'show log tail' to 'monitor log'
* 'show log tail <NUMBER>' should still be a show command, not a
monitor command.
* Add monitor openvpn
* Allow log filtering similar to the way the monitor commands work
* Fix up completion for 'show log firewall'
* Fix up completion for 'monitor firewall'
* Fix up completion for 'monitor nat'
* Fix 'monitor nat' tag
* Add a command to stop all current background monitoring processes
* Bugfix 7557: Move shutdown to poweroff, change confirmation from
default in the affirmative to defualt in the negative.
* Make the reboot syntax the same as the poweroff syntax; require the
affirmative answer instead of defaulting to it
* Bugfix 5806, 7552: Fix set date ntp node.def to list proper servers
from configuration, and run on unprivledged ports so the commands
work at the same time the ntp service is running.
* Bugfix 7575: Make tshark run as a normal user so that writing files
works properly
* Add monitoring for specific openvpn interface processes
-- John Southworth <john.southworth@vyatta.com> Thu, 27 Oct 2011 17:47:27 -0500
vyatta-op (0.13.207) unstable; urgency=low
* Don't show an error message when we can't turn echo on (this is the
case with the webgui)
* Bugfix 7577: Only show the remote uri help if there is no completion
-- John Southworth <john.southworth@vyatta.com> Fri, 21 Oct 2011 15:26:59 -0500
vyatta-op (0.13.206) unstable; urgency=low
* Workaround for bug 7570, turning echo on manually when running a
templated command should fix the majority of the problems. It would
be better to fix the readline/less interaction in the future
-- John Southworth <john.southworth@vyatta.com> Thu, 20 Oct 2011 16:47:21 -0500
vyatta-op (0.13.205) unstable; urgency=low
* Allow completions using normal dirctory paths as well as a shortcut
to running:// in file name completions
-- John Southworth <john.southworth@vyatta.com> Mon, 17 Oct 2011 15:50:09 -0500
vyatta-op (0.13.204) unstable; urgency=low
* Make directory completions, if it is the first word of the
completion, work so that users can easily find scripts they may be
trying to run.
-- John Southworth <john.southworth@vyatta.com> Mon, 17 Oct 2011 13:44:11 -0500
vyatta-op (0.13.203) unstable; urgency=low
* Fix ambiguous error text so that it doesn't show node.def, generate
the completions using compgen -d
-- John Southworth <john.southworth@vyatta.com> Tue, 11 Oct 2011 10:54:22 -0500
vyatta-op (0.13.202) unstable; urgency=low
* Bugfix 7543: remove trailing spaces from the show interfaces output
-- John Southworth <john.southworth@vyatta.com> Mon, 10 Oct 2011 12:09:05 -0500
vyatta-op (0.13.201) unstable; urgency=low
* Fix completions for templates using custom completion functions
(currently image tools)
-- John Southworth <john.southworth@vyatta.com> Fri, 07 Oct 2011 13:32:50 -0500
vyatta-op (0.13.200) unstable; urgency=low
* Bugfix 6747: use bash conditional expressions instead of posix test
expressions when doing comparisons. The conditional expressions
don't do as much expansion as the test expression does, and are the
modern variant
-- John Southworth <john.southworth@vyatta.com> Thu, 06 Oct 2011 16:20:44 -0500
vyatta-op (0.13.199) unstable; urgency=low
* Make operational mode completion when the user enters an unknown
prefix on a tag node consistent with configuration mode
-- John Southworth <john.southworth@vyatta.com> Thu, 06 Oct 2011 10:52:08 -0500
vyatta-op (0.13.198) unstable; urgency=low
* fix help text printing when the command is runnable
-- John Southworth <john.southworth@vyatta.com> Thu, 06 Oct 2011 01:01:57 -0500
vyatta-op (0.13.197) unstable; urgency=low
* Fix: first word completions; empty completions on tag nodes, if
there is a tag node there should always be at least a non-comp so
that the help text will be displayed; invalid completions in the
middle of the string
-- John Southworth <john.southworth@vyatta.com> Thu, 06 Oct 2011 00:36:32 -0500
vyatta-op (0.13.196) unstable; urgency=low
* fix stuck completion on non-lastword
-- John Southworth <john.southworth@vyatta.com> Wed, 05 Oct 2011 17:54:43 -0500
vyatta-op (0.13.195) unstable; urgency=low
* Make non-lastword completions more fluid by using the current prefix
and word provided by bash
-- John Southworth <john.southworth@vyatta.com> Wed, 05 Oct 2011 16:14:42 -0500
vyatta-op (0.13.194) unstable; urgency=low
* Fix a bug in op mode handling of non sticking completions, we want
the help text if the current completion is empty for consistency
-- John Southworth <john.southworth@vyatta.com> Tue, 04 Oct 2011 15:42:20 -0500
vyatta-op (0.13.193) unstable; urgency=low
* Alert users when they have entered a completion that doesn't match.
* Fix top level completions when there are already words on the line