forked from vyos/vyatta-cfg-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6061 lines (3671 loc) · 178 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-cfg-system (0.20.44+vyos2+current20) unstable; urgency=medium
* Remove nodes which rely on vyatta_update_resolv.pl
in favor of a vyos-1x migration
-- Christian Poessinger <[email protected]> Thu, 14 Feb 2019 22:34:06 +0100
vyatta-cfg-system (0.20.44+vyos2+current3) unstable; urgency=medium
[ Kim Hagen ]
* Update 'is_live_cd_boot' and 'is_union_instal' functions to search on 'overlay' instead of 'overlayfs'
[ Seamus Caveney ]
* vyatta-cfg-system: add support for 6rd tunnel interfaces
[ Daniil Baturin ]
* Sanitize dependencies, use ISC DHCP client.
-- Daniil Baturin <[email protected]> Wed, 27 Jan 2016 08:24:32 -0500
vyatta-cfg-system (0.20.44+vyos2+current2) unstable; urgency=medium
* Update dependencies
-- Kim Hagen <[email protected]> Mon, 25 Jan 2016 03:47:13 -0500
vyatta-cfg-system (0.20.44+vyos2+current1) unstable; urgency=medium
[ UnicronNL ]
* Remove fuse group, not needed in debian jessie
[ Thomas Jepp ]
* Dependency fixes for Jessie. Remove the dependency on vyatta-busybox, use the system busybox.
* Add missing runtime dependencies.
[ Kim Hagen ]
-- Kim Hagen <[email protected]> Sun, 24 Jan 2016 15:04:10 -0500
vyatta-cfg-system (0.20.44+vyos2+lithium41) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: add restart option to vyatta-dns-forwarding.pl
-- Alex Harpin <[email protected]> Thu, 19 Nov 2015 22:25:54 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium40) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: enable usb autosuspend to reduce cpu usage on kvm
-- Alex Harpin <[email protected]> Sun, 15 Nov 2015 10:20:47 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium39) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: add missing changelog entries
-- Alex Harpin <[email protected]> Fri, 13 Nov 2015 20:59:16 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium38) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: rename ethernet offload option nodes
* vyatta-cfg-system: update get_offload_option function due to rename
* vyatta-cfg-system: add option to modify interface scatter-gather option
-- Alex Harpin <[email protected]> Sun, 08 Nov 2015 13:59:11 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium37) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: rename smp_affinity to smp-affinity
* vyatta-cfg-system: bump system version to 7 for smp-affinity rename
-- Alex Harpin <[email protected]> Thu, 05 Nov 2015 20:33:18 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium36) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: ensure bridge slaves are deletable from bridges
* vyatta-cfg-system: allow bridge slaves to be moved from empty bridges
-- Alex Harpin <[email protected]> Mon, 19 Oct 2015 07:52:48 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium35) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: remove ip address requirements from port checking
-- Alex Harpin <[email protected]> Sat, 17 Oct 2015 19:25:16 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium34) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: add scripts/is_port_available.pl for port checking
* vyatta-cfg-system: add listen-address and port checks for telnet
-- Alex Harpin <[email protected]> Sat, 17 Oct 2015 18:23:34 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium33) unstable; urgency=low
[ Carl Byington ]
* allow dhcp interface for the local end of a tunnel
* dhcp bound/reboot must ignore old values
[ Daniil Baturin ]
* Add templates and scripts for the popularity contest.
-- Daniil Baturin <[email protected]> Mon, 27 Jul 2015 04:10:37 +0200
vyatta-cfg-system (0.20.44+vyos2+lithium32) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: use sha-512 instead of md5 for installation password
-- Alex Harpin <[email protected]> Thu, 02 Jul 2015 00:14:27 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium31) unstable; urgency=low
[ Alex Harpin ]
* Revert "vyatta-cfg-system: prevent deletion of all user authentication"
-- Alex Harpin <[email protected]> Mon, 22 Jun 2015 21:20:41 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium30) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: prevent deletion of system based post-hook symlinks
* vyatta-cfg-system: update dh_gencontrol with new development build flag
[ Carl Byington ]
* allow dhcp interface for the local end of a tunnel
* dhcp bound/reboot must ignore old values
-- Alex Harpin <[email protected]> Tue, 16 Jun 2015 07:48:49 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium29) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: 'delete system login user' doesn't remove the user
* vyatta-cfg-system: missing encrypted-password breaks user config node
* vyatta-cfg-system: prevent deletion of all authentication for user
-- Alex Harpin <[email protected]> Sat, 13 Jun 2015 15:31:56 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium28) unstable; urgency=low
* Bug #410: add an option for ARP cache timeout.
-- Daniil Baturin <[email protected]> Mon, 04 May 2015 00:20:52 +0200
vyatta-cfg-system (0.20.44+vyos2+lithium27) unstable; urgency=low
* Bug #541: load l2tp_ip6 module so L2TPv3 over IPv6 can work.
-- Daniil Baturin <[email protected]> Sun, 03 May 2015 19:59:52 +0200
vyatta-cfg-system (0.20.44+vyos2+lithium26) unstable; urgency=low
* Add parted to dependencies, the install scripts need it.
-- Daniil Baturin <[email protected]> Sat, 25 Apr 2015 15:39:47 +0200
vyatta-cfg-system (0.20.44+vyos2+lithium25) unstable; urgency=low
* Further debian/control cleanup.
-- Daniil Baturin <[email protected]> Thu, 09 Apr 2015 03:19:33 +0200
vyatta-cfg-system (0.20.44+vyos2+lithium24) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Thu, 09 Apr 2015 00:20:26 +0200
vyatta-cfg-system (0.20.44+vyos2+lithium23) unstable; urgency=low
* Remove hypervisor_vendor, obsoleted by hvinfo.
-- Daniil Baturin <[email protected]> Thu, 09 Apr 2015 00:19:54 +0200
vyatta-cfg-system (0.20.44+vyos2+lithium22) unstable; urgency=low
[ kouak ]
* Set correct dhclient configuration filename (#508)
* Add dhcpv6 client-id option (#519)
[ Daniil Baturin ]
* Fix package description and copyright information.
-- Daniil Baturin <[email protected]> Thu, 26 Mar 2015 01:23:40 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium21) unstable; urgency=low
[ Benjamin Beret ]
* Set default STP priority to 32768 (#512)
[ Alex Harpin ]
* vyatta-cfg-system: set default stp priority to 32768 (additional)
-- Alex Harpin <[email protected]> Mon, 09 Mar 2015 09:18:45 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium20) unstable; urgency=low
[ Benjamin Beret ]
* Fix broken commit
* Accept custom dyndns services (Bug #507)
[ Alex Harpin ]
* vyatta-cfg-system: remove unnecessary service symlink
* vyatta-cfg-system: update protocol, remove server and node wording
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: add additional services and check for protocols
* vyatta-cfg-system: update node text so that it fits on a console line
-- Alex Harpin <[email protected]> Sat, 07 Mar 2015 21:13:20 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium19) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: ensure grub is installed to the raid slave members
-- Alex Harpin <[email protected]> Sat, 28 Feb 2015 16:44:40 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium18) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: adjust mtu node priority to set mtu after parent
* vyatta-cfg-system: correct typo in node.def
* vyatta-cfg-system: redesign the layout and updating of ntp
* vyatta-cfg-system: rename variable in ntp_format subroutine
* vyatta-cfg-system: update new ntp updating routine to work with dhcp
* vyatta-cfg-system: skip over invalid ntp servers rather than exiting
* vyatta-cfg-system: add vyatta-dhcp3-client to dependencies list
-- Alex Harpin <[email protected]> Sat, 28 Feb 2015 12:43:32 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium17) unstable; urgency=low
[ kouak ]
* Fix a bug in rfc2136 import
* Add ingress-qos-mapping/egress-qos-mapping to VLAN configuration
(#385)
[ Daniil Baturin ]
* Bug #498: dirty hack to disallow remote command execution for
operator level users.
-- Daniil Baturin <[email protected]> Wed, 25 Feb 2015 17:17:53 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium16) unstable; urgency=low
[ Benjamin Beret ]
* Bug #389: Add RFC2136 configuration options for ddclient 3.8.2
[ Alex Harpin ]
* vyatta-cfg-system: add dnsutils to depends following rfc2136 options
-- Alex Harpin <[email protected]> Sun, 22 Feb 2015 15:04:28 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium15) unstable; urgency=low
* Bug #490: use command line options for parameters-only and temporary
* Bug #490: remove priority inversion in dhcpv6-options.
* Bug #491: don't allow temporary and parameters-only
* Bug #492: fail commit in case of DHCPv6 configuration errors.
-- Daniil Baturin <[email protected]> Fri, 20 Feb 2015 15:54:29 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium14) unstable; urgency=low
* Bug #356: use VyOS SNMP OID instead of the old Vyatta one.
-- Daniil Baturin <[email protected]> Sun, 15 Feb 2015 05:21:20 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium13) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: multiple servers for dns forwarding domain override
* vyatta-cfg-system: redesign the layout and updating of /etc/resolv.conf
* vyatta-cfg-system: remove blank domain search and expand comment type
-- Alex Harpin <[email protected]> Sat, 14 Feb 2015 14:37:03 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium12) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: invalid resolv.conf format causing extra DNS request
-- Alex Harpin <[email protected]> Mon, 09 Feb 2015 22:34:02 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium11) unstable; urgency=low
[ Hiroyuki Sato ]
* Bug#382: fix radvd status check
[ Kim Hagen ]
* Bug #467, tos inherit not turned on by default on tunnels (IPIP, GRE)
* Bug #352 - QinQ - changing the ethertype value of vif-s
* Can not change EtherType with vif-c interfaces configured
[ Alex Harpin ]
* vyatta-cfg-system: allow dynamic dns updating from behind nat
-- Alex Harpin <[email protected]> Sun, 08 Feb 2015 20:19:41 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium10) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: changes to update_inittab for xen console access
* vyatta-cfg-system: remove default speed value for console access
-- Alex Harpin <[email protected]> Sun, 25 Jan 2015 09:32:40 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium9) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: update the required version of ddclient
* vyatta-cfg-system: add dynamic dns support for no-ip.com/noip
-- Alex Harpin <[email protected]> Sun, 18 Jan 2015 16:01:51 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium8) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: add dynamic dns support for afraid.org/freedns
* vyatta-cfg-system: set required version of ddclient for freedns support
-- Alex Harpin <[email protected]> Sat, 03 Jan 2015 18:20:32 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium7) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: really remove cpufrequtils from depends this time
-- Alex Harpin <[email protected]> Tue, 30 Dec 2014 21:48:13 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium6) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: remove acpid and cpufrequtils from depends
-- Alex Harpin <[email protected]> Tue, 30 Dec 2014 20:18:42 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium5) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Tue, 23 Dec 2014 01:55:46 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium4) unstable; urgency=low
[ Hiroshi Umehara ]
* vyatta-cfg-system: fix for unusable "link" option (Bug #381)
[ Jared Baldridge ]
* Adding support for spaces in the key comment field (Bug #411)
[ Ryo Nakamura ]
* support "remote" attribute of VXLAN tunnel (Bug #416)
[ Alex Harpin ]
-- Alex Harpin <[email protected]> Sat, 20 Dec 2014 18:38:25 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium3) unstable; urgency=low
[ Jared Baldridge ]
* Adding initial support for loading a config from AWS EC2 user-data
[ Jason Hendry ]
* Expose rsyslog log level 'all' in CLI
* Initial import fo vyatta_update_sysctl.pl
* Creating template for net.ipv4.ipfrag_time sysctl
* Adding all + custom sysctl option nodes
* Removing sysctl all node, adding net.ipv4.igmp_max_memberships
* Adding offload setting management to vyatta-interfaces.pl
* Adding templates for tso options. fixing logic in vyatta-interfaces for tso options
* Making offload setting changes change on a single option
* Updating comments so they make a bit more sense
* Removing default settings offload values
* Cleaning up ethtool execution code
* Correcting udp offload option name form segmentation to fragmentation
* Removing unsed variable from declaration
[ Paul Gear ]
* Omit "Vyatta" from sysDescr
[ Hiroyuki Sato ]
* Fix Bug#382 Removing system ipv6 forwarding causes script error.
[ Alex Harpin ]
-- Alex Harpin <[email protected]> Wed, 10 Dec 2014 07:53:50 +0000
vyatta-cfg-system (0.20.44+vyos2+lithium2) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Wed, 29 Oct 2014 22:45:42 +0100
vyatta-cfg-system (0.20.44+vyos2+lithium1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Wed, 29 Oct 2014 22:44:52 +0100
vyatta-cfg-system (0.20.43+vyos1+helium24) unstable; urgency=low
* vyatta-cfg-system: fix for 'user vyos doesn't exist' on password reset
* vyatta-cfg-system: add complete user config entry on password reset
* vyatta-cfg-system: set default vyos password hash to sha-512 when reset
* vyatta-cfg-system: allow password reset for users other than vyos
* vyatta-cfg-system: fix for deleting encrypted password breaks config
* vyatta-cfg-system: comment change in the plaintext-password node
-- Alex Harpin <[email protected]> Fri, 24 Oct 2014 16:57:23 +0100
vyatta-cfg-system (0.20.43+vyos1+helium23) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-system: allow dhcp and dhcpv6 addresses to be deleted
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Thu, 09 Oct 2014 23:18:31 +0200
vyatta-cfg-system (0.20.43+vyos1+helium22) unstable; urgency=low
* Make EC2 key fetcher start on boot.
-- Daniil Baturin <[email protected]> Thu, 09 Oct 2014 21:18:44 +0200
vyatta-cfg-system (0.20.43+vyos1+helium21) unstable; urgency=low
* Use returnEffectiveValues in intfwatchd so it works outside of
config session.
-- Daniil Baturin <[email protected]> Thu, 09 Oct 2014 00:10:29 +0200
vyatta-cfg-system (0.20.43+vyos1+helium20) unstable; urgency=low
* Fix regular expression so it works with any (I hope!) interface
types.
* Even more specific regex.
-- Daniil Baturin <[email protected]> Wed, 08 Oct 2014 21:17:39 +0200
vyatta-cfg-system (0.20.43+vyos1+helium19) unstable; urgency=low
* Add ex2-check script.
-- Daniil Baturin <[email protected]> Wed, 08 Oct 2014 15:50:02 +0200
vyatta-cfg-system (0.20.43+vyos1+helium18) unstable; urgency=low
* If not running on AWS (system UUID and serial do not start with
EC2), don't do AWS-specific things.
* Bug #335, run the EC2 key fetching script as vyattacfg.
-- Daniil Baturin <[email protected]> Wed, 08 Oct 2014 12:13:29 +0200
vyatta-cfg-system (0.20.43+vyos1+helium17) unstable; urgency=low
[ upa ]
* Add support for VXLAN
* fix create/del error handling
[ Alex Harpin ]
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: revert bb71cf5b7b3a48812e28dbefba8c535f9bbf9973
* vyatta-cfg-system: add 'set system allow-dhcp-nameservers' option
[ Kim Hagen ]
* Remove gre-multipoint encapsulation option, make the tunnel
multipoint if 'remote-ip' is nowt set.
[ Alex Harpin ]
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: expand 'set system allow-dhcp-nameservers' logic
[ Kim Hagen ]
* Fix syntax error
[ Alex Harpin ]
* vyatta-cfg-system: rename allow-dhcp-nameservers and change to
typeless
[ Daniil Baturin ]
* Remove VXLAN templates that are supposed to be generated.
* Add VXLAN to generated templates.
* Remove ip/node.def, it's autogenerated too.
* Remove source-validation templates, those are also autogenerated.
[ Kim Hagen ]
* Fix typo
[ Daniil Baturin ]
* Rename "dev" to "link" under VXLAN for consistency with peth
* Fix a typo in help string.
-- Daniil Baturin <[email protected]> Tue, 07 Oct 2014 19:45:58 +0200
vyatta-cfg-system (0.20.43+vyos1+helium16) unstable; urgency=low
[ UnicronNL ]
* Remove execution of vyatta-update-nhtp script
* Remove obsolete information
* Always allow gre-multipoint
[ Kim Hagen ]
* Bug #285 - Cannot delete bond interface with vif
[ Alex Harpin ]
* vyatta-cfg-system: remove quotes from SysContact and SysLocation
[ Kim Hagen ]
* Do not delete tunnel if it is in use by NHRP config
[ Alex Harpin ]
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: allow interfaces with dhcp addresses to be
deleted
* vyatta-cfg-system: formatting changes for style consistency
* vyatta-cfg-system: prevent dhcp updating dns when statically
configured
[ Daniil Baturin ]
* Bug #306: add option to enable private VLAN proxy ARP on an
interface.
-- Daniil Baturin <[email protected]> Tue, 09 Sep 2014 17:32:43 +0200
vyatta-cfg-system (0.20.43+vyos1+helium15) unstable; urgency=low
* Bug #196: rename "smuxpeer" to "smux-peer" for consistency with
other commands.
* Bug #173: rename "disable" option to "ignore".
* Bug #237: improve ciphers option help and value validation.
-- Daniil Baturin <[email protected]> Sun, 03 Aug 2014 12:45:11 +0200
vyatta-cfg-system (0.20.43+vyos1+helium14) unstable; urgency=low
* Bug #256: adjust mtu node priority.
-- Daniil Baturin <[email protected]> Sat, 02 Aug 2014 03:53:48 +0200
vyatta-cfg-system (0.20.43+vyos1+helium13) unstable; urgency=low
* Bug #246: add multicast querier toggle to bridge.
-- Daniil Baturin <[email protected]> Sat, 02 Aug 2014 01:01:04 +0200
vyatta-cfg-system (0.20.43+vyos1+helium12) unstable; urgency=low
[ ftoyama ]
* Change lower the priority of l2tpv3 than the priority of static
route.
[ Daniil Baturin ]
* Rename dummy interfaces to dumX to avoid confusion with the default
-- Daniil Baturin <[email protected]> Thu, 31 Jul 2014 01:29:51 +0200
vyatta-cfg-system (0.20.43+vyos1+helium11) unstable; urgency=low
* Replace login check with UID check in install-get-partition.
-- Daniil Baturin <[email protected]> Wed, 30 Jul 2014 00:29:58 +0200
vyatta-cfg-system (0.20.43+vyos1+helium10) unstable; urgency=low
* Replace login name check with effective UID check.
* Replace login name check with effective UID check in install-image.
-- Daniil Baturin <[email protected]> Tue, 29 Jul 2014 23:41:07 +0200
vyatta-cfg-system (0.20.43+vyos1+helium9) unstable; urgency=low
* Set vyos-intfwatchd to start at boot by default.
-- Daniil Baturin <[email protected]> Fri, 25 Jul 2014 20:28:44 +0200
vyatta-cfg-system (0.20.43+vyos1+helium8) unstable; urgency=low
[ UnicronNL ]
* Add Freescale i.MX serial device
[ Daniil Baturin ]
* Add vyod-intfwatchd for restoring IPv6 addresses after link flaps.
* Bug #259: do not try to remove addresses that don't exist.
-- Daniil Baturin <[email protected]> Fri, 25 Jul 2014 18:36:30 +0200
vyatta-cfg-system (0.20.43+vyos1+helium7) unstable; urgency=low
[ Paul Gear ]
* Fix ignore-hosts-file operation
* Fix dnsmasq.conf generation for ignore-hosts-file
[ tofoo ]
* Fix modprobe for l2tpv3 over ip
[ Kim Hagen ]
* Skip finding hypervisor vendor if cpu is other than x86_64.
* Only depend on grub if archtecture is i386 or amd64
[ Daniil Baturin ]
* Fix is_live_boot check to account for the overlayfs change.
* Bug #269: missed return in is_ec2_ami.
-- Daniil Baturin <[email protected]> Fri, 25 Jul 2014 12:23:03 +0200
vyatta-cfg-system (0.20.43+vyos1+helium6) unstable; urgency=low
[ Abdelouahed Haitoute ]
* Added feature to send log message to remote syslog server over UDP
or TCP.
* Added feature to add smuxpeer entries in file /etc/snmp/snmpd.conf.
[ Kim Hagen ]
* Add QinQ vlan to ethernet interface config
* Fix variables.
* Change priority in node.def
* Add QinQ vlan to Bonding and pseudo-ethernet interfaces.
* Set help to Nested vlan.
* Bug #21 - Add the ability to adjust system ARP settings via the CLI
on a per interface basis
* Fix build errors due to interface prio in perl script.
* Remove file vyatta-cfg-system.install.
* Set separate virtual interface for QinQ.
[ Daniil Baturin ]
* Bug #255: add an option to ignore hosts file in dnsmasq.
-- Daniil Baturin <[email protected]> Tue, 08 Jul 2014 17:07:35 +0200
vyatta-cfg-system (0.20.43+vyos1+helium5) unstable; urgency=low
[ James Davidson ]
* Support and switch to overlayfs
[ Kim Hagen ]
* Add fuse group for admin users so /dev/fuse is accessible and
[ hydrajump ]
* Remove trailing whitespace
* Add support for installing a new image on the Amazon AMI
* Fix AWS EC2 AMI support
* Revert to state before add-aws-ami-support
* Fix to enable ec2-fetch-ssh-public-key init script
[ neutralrockets ]
* Add support for ciphers and macs override in ssh
[ Kim Hagen ]
* Bug #239 - Getting the version number by using dpkg will not work
when upgrading to newer version of debian.
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Mon, 16 Jun 2014 13:00:08 +0200
vyatta-cfg-system (0.20.43+vyos1+helium4) unstable; urgency=low
[ hydrajump ]
* Add system option for ctrl-alt-del-action to configuration
* Use elif conditional instead of if
* Add syntax check to validate value
[ Daniil Baturin ]
* Bug #170: Rename nodes for consistency with the rest of the system.
* Bug #170: Set default wait time to 0.
* Bug #170: Set link up at after creating tunnel.
* Bug #170: Add address, disable, and description options.
* Bug #170: Break iproute2 commands in multiple line for better
readability.
* Bug #170: Specify interface name in iproute2 command to override
default numering.
* Bug #170: Remove "wait" option.
* Bug #170: Improve help strings.
-- Daniil Baturin <[email protected]> Sat, 12 Apr 2014 22:24:22 +0200
vyatta-cfg-system (0.20.43+vyos1+helium3) unstable; urgency=low
* Bug #159: add dummy type to network interface type list.
* Remove extra space before pppoe in interface types for nicer
formatting.
* Bug #170: add L2TPv3 to the interface type list.
-- Daniil Baturin <[email protected]> Sun, 06 Apr 2014 14:58:14 +0200
vyatta-cfg-system (0.20.43+vyos1+helium2) unstable; urgency=low
[ hydrajump ]
* Fixed parted command for root partition alignment.
[ higebu ]
* Add support for l2tpv3
* Fix support for l2tpv3 over ip
[ hydrajump ]
* Cleanup of unused parted root partitioning starting offset
[ higebu ]
* Remove endpoint, and add mtu support
[ tea2ka ]
* using a DNS server with an IPv6 address.
* collect dhcpv6-options
[ hydrajump ]
* Delete SSH blacklists as they are no longer needed
[ Daniil Baturin ]
* Bug #159: add conf mode templates for dummy interfaces.
* Bug #159: add delete action for dummy interfaces.
-- Daniil Baturin <[email protected]> Sun, 06 Apr 2014 11:52:08 +0200
vyatta-cfg-system (0.20.43+vyos1+helium1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Sat, 15 Feb 2014 16:53:19 +0100
vyatta-cfg-system (0.20.43+hydrogen12) unstable; urgency=low
* Merge changes to SNMPv3 templates and scripts from vRouter 5400
trial ISO.
-- Daniil Baturin <[email protected]> Fri, 31 Jan 2014 03:55:52 +0100
vyatta-cfg-system (0.20.43+hydrogen11) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Sat, 18 Jan 2014 01:41:12 +0100
vyatta-cfg-system (0.20.43+hydrogen10) unstable; urgency=low
* Bug #98: add an option for redirect support to curl call.
-- Daniil Baturin <[email protected]> Sat, 18 Jan 2014 01:40:28 +0100
vyatta-cfg-system (0.20.43+hydrogen9) unstable; urgency=low
* Change image name for new installs to just numeric version.
-- Daniil Baturin <[email protected]> Sun, 22 Dec 2013 11:16:14 +0100
vyatta-cfg-system (0.20.43+hydrogen8) unstable; urgency=low
* Bug #96: fix menu entry generation so image version is included.
* Fix curl command to fetch the signature file.
-- Daniil Baturin <[email protected]> Sun, 22 Dec 2013 09:28:12 +0100
vyatta-cfg-system (0.20.43+hydrogen7) unstable; urgency=low
* Bug #92: change default timezone to UTC for the sake of scientific
* Bug #51: update /etc/timezone when timezone changes.
-- Daniil Baturin <[email protected]> Wed, 18 Dec 2013 04:23:05 +0100
vyatta-cfg-system (0.20.43+hydrogen6) unstable; urgency=low
[ Stig Thormodsrud ]
* Fix bug 318 - Use SHA-512 hashing for user passwords instead of MD5
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Tue, 17 Dec 2013 03:35:52 +0100
vyatta-cfg-system (0.20.43+hydrogen5) unstable; urgency=low
* Remove init-floppy script
* Replace s/Vyatta/VyOS/ in parition handling installer functions
* Remove init-floppy from automake rules
* Bug #55: fix user name in password reset script.
-- Daniil Baturin <[email protected]> Sun, 03 Nov 2013 14:15:26 +0100
vyatta-cfg-system (0.20.43+hydrogen4) unstable; urgency=low
* Fix some shell quoting weirdness (curl dumped the ISO on stdout)
-- Daniil Baturin <[email protected]> Sat, 02 Nov 2013 06:34:43 +0100
vyatta-cfg-system (0.20.43+hydrogen3) unstable; urgency=low
* Fix image name, according to new numeric-only vyatta-version naming
* Replace missed vyatta names in installer
* Set User-Agent: to VyOS/$version for statistics collection.
-- Daniil Baturin <[email protected]> Sat, 02 Nov 2013 02:34:57 +0100
vyatta-cfg-system (0.20.43+hydrogen2) unstable; urgency=low
* Test release
-- Daniil Baturin <[email protected]> Fri, 01 Nov 2013 23:55:00 +0100
vyatta-cfg-system (0.20.43+hydrogen1) unstable; urgency=low
* Fix branch
-- Daniil Baturin <[email protected]> Fri, 01 Nov 2013 22:41:42 +0100
vyatta-cfg-system (0.20.42+daisy25) unstable; urgency=low
* Replace s/Vyatta/VyOS/ in install-system script.
-- Daniil Baturin <[email protected]> Fri, 01 Nov 2013 21:41:42 +0100
vyatta-cfg-system (0.20.42+daisy24) unstable; urgency=low
* Remote unused file test_bootfile
-- Daniil Baturin <[email protected]> Thu, 31 Oct 2013 13:34:48 +0100
vyatta-cfg-system (0.20.42+daisy23) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Thu, 31 Oct 2013 13:14:19 +0100
vyatta-cfg-system (0.20.42+daisy22) unstable; urgency=low
* Dedicated alias for vyos maintainers as email.
* s/Vyatta/VyOS/ in default config.
* Update debian/control email too.
* ...and AUTHORS.
-- Daniil Baturin <[email protected]> Thu, 31 Oct 2013 13:12:19 +0100
vyatta-cfg-system (0.20.42+daisy21) unstable; urgency=low
* Update names in grub config templates.
* Update default user in installer script.
* Update default hostname.
* Update maintainers addresses.
-- Daniil Baturin <[email protected]> Mon, 21 Oct 2013 21:49:05 -0700
vyatta-cfg-system (0.20.42+daisy20) unstable; urgency=low
* SNMP: Group secLevel check. Fix 'delete priv on user'
-- James Davidson <[email protected]> Wed, 05 Jun 2013 09:19:58 -0700
vyatta-cfg-system (0.20.42+daisy19) unstable; urgency=low
* SNMP sync up
-- James Davidson <[email protected]> Thu, 16 May 2013 10:20:53 -0700
vyatta-cfg-system (0.20.42+daisy18) unstable; urgency=low
* Replace original config file handling behaviour
-- James Davidson <[email protected]> Mon, 15 Apr 2013 14:26:25 -0700
vyatta-cfg-system (0.20.42+daisy17) unstable; urgency=low
* Bugfix 8711: Switch to Bash syntax for conditionals
-- John Southworth <[email protected]> Fri, 12 Apr 2013 14:16:11 -0700
vyatta-cfg-system (0.20.42+daisy16) unstable; urgency=low
[ Stephen Hemminger ]
* ethernet: deleting device should put in admin down
[ John Southworth ]
-- John Southworth <[email protected]> Fri, 12 Apr 2013 09:28:34 -0700
vyatta-cfg-system (0.20.42+daisy15) unstable; urgency=low
* Bugfix 8526: don't use REQUIRED on remote-ip
-- John Southworth <[email protected]> Fri, 12 Apr 2013 09:26:47 -0700
vyatta-cfg-system (0.20.42+daisy14) unstable; urgency=low
* Bugfix 8804
-- John Southworth <[email protected]> Fri, 12 Apr 2013 09:13:36 -0700
vyatta-cfg-system (0.20.42+daisy13) unstable; urgency=low
[ Stephen Hemminger ]
* snmpv3: enable strict warnings and fix perlcritic
* fix device naming on boot
[ James Davidson ]
-- James Davidson <[email protected]> Tue, 02 Apr 2013 08:52:37 -0700
vyatta-cfg-system (0.20.42+daisy12) unstable; urgency=low
* Fix typo in domain-name delete action
-- James Davidson <[email protected]> Mon, 01 Apr 2013 09:26:05 -0700
vyatta-cfg-system (0.20.42+daisy11) unstable; urgency=low
* SNMP: Add multicast smux peers
-- James Davidson <[email protected]> Wed, 20 Mar 2013 09:07:37 -0700
vyatta-cfg-system (0.20.42+daisy10) unstable; urgency=low
* Sync up SNMPv3 support
-- James Davidson <[email protected]> Wed, 06 Mar 2013 11:24:17 -0800
vyatta-cfg-system (0.20.42+daisy9) unstable; urgency=low
* mGRE bug fixes local-ip address changes and v6 check.
-- Saurabh Mohan <[email protected]> Tue, 12 Feb 2013 16:11:05 -0800
vyatta-cfg-system (0.20.42+daisy8) unstable; urgency=low
* Initial SNMPv3 support
-- James Davidson <[email protected]> Tue, 12 Feb 2013 13:39:56 -0800
vyatta-cfg-system (0.20.42+daisy7) unstable; urgency=low
* Skip biosdevname if running in Xen
-- James Davidson <[email protected]> Wed, 06 Feb 2013 15:27:01 -0800
vyatta-cfg-system (0.20.42+daisy6) unstable; urgency=low
* Add ability to restart services when hostname changes
-- James Davidson <[email protected]> Tue, 29 Jan 2013 09:58:49 -0800
vyatta-cfg-system (0.20.42+daisy5) unstable; urgency=low
* Dmvpn merge with mirantis jan22-2013
-- Saurabh Mohan <[email protected]> Tue, 22 Jan 2013 12:30:35 -0800
vyatta-cfg-system (0.20.42+daisy4) unstable; urgency=low
* Bug 7856: Set default neighbour table size to 8192
-- James Davidson <[email protected]> Tue, 08 Jan 2013 15:14:20 -0800
vyatta-cfg-system (0.20.42+daisy3) unstable; urgency=low
* mgre support initial commit.
-- Saurabh Mohan <[email protected]> Wed, 26 Dec 2012 15:31:07 -0800
vyatta-cfg-system (0.20.42+daisy2) unstable; urgency=low
* revert 918bd40d3e3f238a800b1486f70e2d5ee1d71a72
-- John Southworth <[email protected]> Wed, 12 Dec 2012 14:40:34 -0800
vyatta-cfg-system (0.20.42+daisy1) unstable; urgency=low
* create daisy branch
-- John Southworth <[email protected]> Sat, 13 Oct 2012 13:30:43 -0700
vyatta-cfg-system (0.20.42) unstable; urgency=low
* new branch
-- John Southworth <[email protected]> Fri, 12 Oct 2012 19:46:58 -0700
vyatta-cfg-system (0.20.41) unstable; urgency=low
* Bug 8423 move serial interfaces to vyatta-serial
-- John Southworth <[email protected]> Mon, 08 Oct 2012 22:32:02 -0700
vyatta-cfg-system (0.20.40) unstable; urgency=low
* Bugfix 8423 add interface types to netdevice
-- John Southworth <[email protected]> Mon, 08 Oct 2012 21:27:40 -0700
vyatta-cfg-system (0.20.39) unstable; urgency=low