-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathchangelog
1832 lines (1050 loc) · 53 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-firewall (0.14.0+vyos2+current2) unstable; urgency=medium
* T59: Inspect action still exists in firewall and should be removed
-- hagbard <[email protected]> Fri, 26 Oct 2018 11:54:38 -0700
vyatta-cfg-firewall (0.14.0+vyos2+current1) unstable; urgency=medium
[ Thomas Jepp ]
* Fix build depends.
* Fix runtime depends.
[ Kim Hagen ]
-- Kim Hagen <[email protected]> Sun, 24 Jan 2016 15:00:40 -0500
vyatta-cfg-firewall (0.14.0+vyos2+lithium16) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-firewall: update network-group check to allow "this" network
* vyatta-cfg-firewall: formatting changes for style consistency
-- Alex Harpin <[email protected]> Sat, 12 Dec 2015 20:13:00 +0000
vyatta-cfg-firewall (0.14.0+vyos2+lithium15) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-firewall: drop executable permissions on node.defs
* vyatta-cfg-firewall: check rules for errors before processing them
* vyatta-cfg-firewall: formatting changes for style consistency
* vyatta-cfg-firewall: update nfct commands to use the new syntax
-- Alex Harpin <[email protected]> Sun, 29 Nov 2015 18:51:08 +0000
vyatta-cfg-firewall (0.14.0+vyos2+lithium14) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-firewall: temporarily disable p2p option in firewall config
-- Alex Harpin <[email protected]> Sat, 24 Oct 2015 11:29:12 +0100
vyatta-cfg-firewall (0.14.0+vyos2+lithium13) unstable; urgency=low
* vyatta-cfg-firewall: add port 1536 to the initial ct helper chain
-- Alex Harpin <[email protected]> Wed, 24 Jun 2015 08:13:39 +0100
vyatta-cfg-firewall (0.14.0+vyos2+lithium12) unstable; urgency=low
* vyatta-cfg-firewall: update dh_gencontrol with new development flag
-- Alex Harpin <[email protected]> Mon, 15 Jun 2015 08:16:45 +0100
vyatta-cfg-firewall (0.14.0+vyos2+lithium11) unstable; urgency=low
* Missing comma in gen-interface-templates script interface hash.
-- Daniil Baturin <[email protected]> Thu, 14 May 2015 15:40:27 +0200
vyatta-cfg-firewall (0.14.0+vyos2+lithium10) unstable; urgency=low
[ Carl Byington ]
* add firewall config for vrrp interfaces
* add firewall config for vrrp interfaces
* add interfaces/vti/<intf>/policy add
interfaces/ethernet/<intf>/vrrp/vrrp-group/policy remove
interfaces/ethernet/<intf>/pppoa
* fix syntax error from sorting
* fix syntax error from sorting
* http://bugzilla.vyos.net/show_bug.cgi?id=494
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Sun, 03 May 2015 23:42:07 +0200
vyatta-cfg-firewall (0.14.0+vyos2+lithium9) unstable; urgency=low
* Bug #406: display uncommited firewall group names in completion.
-- Daniil Baturin <[email protected]> Sun, 03 May 2015 20:26:36 +0200
vyatta-cfg-firewall (0.14.0+vyos2+lithium8) unstable; urgency=low
* Sanitize the package.
-- Daniil Baturin <[email protected]> Thu, 09 Apr 2015 01:01:41 +0200
vyatta-cfg-firewall (0.14.0+vyos2+lithium7) unstable; urgency=low
[ kouak ]
* Add SNPT and DNPT firewall hooks and load ip6t_NPT kernel module
(#387)
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Tue, 17 Feb 2015 09:55:08 +0100
vyatta-cfg-firewall (0.14.0+vyos2+lithium6) unstable; urgency=low
* Bug #487: complete names for added but not commited firewall
rulesets.
-- Daniil Baturin <[email protected]> Sat, 14 Feb 2015 20:45:34 +0100
vyatta-cfg-firewall (0.14.0+vyos2+lithium5) unstable; urgency=low
* Update maintainer address
-- Alex Harpin <[email protected]> Thu, 25 Dec 2014 14:11:08 +0000
vyatta-cfg-firewall (0.14.0+vyos2+lithium4) unstable; urgency=low
* Force release
-- Alex Harpin <[email protected]> Mon, 15 Dec 2014 19:19:07 +0000
vyatta-cfg-firewall (0.14.0+vyos2+lithium3) unstable; urgency=low
[ William Steve Applegate ]
* Fix missing autogenerated chain for IPv6 policy routing.
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Fri, 21 Nov 2014 18:56:33 +0100
vyatta-cfg-firewall (0.14.0+vyos2+lithium2) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Tue, 18 Nov 2014 18:49:38 +0100
vyatta-cfg-firewall (0.14.0+vyos2+lithium1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Tue, 18 Nov 2014 18:48:30 +0100
vyatta-cfg-firewall (0.13.91+vyos1+helium8) unstable; urgency=low
* Add VXLAN to generated templates.
-- Daniil Baturin <[email protected]> Sat, 20 Sep 2014 10:09:34 +0200
vyatta-cfg-firewall (0.13.91+vyos1+helium7) unstable; urgency=low
* Bug #115: disallow reserved firewall names in CLI validation.
-- Daniil Baturin <[email protected]> Sat, 02 Aug 2014 02:25:10 +0200
vyatta-cfg-firewall (0.13.91+vyos1+helium6) unstable; urgency=low
* Bug #128: do not call ipset for every port/address in range.
-- Daniil Baturin <[email protected]> Sat, 02 Aug 2014 00:07:08 +0200
vyatta-cfg-firewall (0.13.91+vyos1+helium5) unstable; urgency=low
* Bug #45: add port range validation script.
* Bug #45: add port range validation to firewall templates.
-- Daniil Baturin <[email protected]> Fri, 01 Aug 2014 22:15:54 +0200
vyatta-cfg-firewall (0.13.91+vyos1+helium4) unstable; urgency=low
[ Daniil Baturin ]
* Bug #144: change priorities so route policy is after firewall groups
[ Kim Hagen ]
* Add QinQ to interfaces in template generators.
* Add QinQ to interfaces in template generators node hashes.
* Set separate virual interface for QinQ.
[ Daniil Baturin ]
* Bug #108: add an option to enable RFC1337 TCP TIME-WAIT hazards
protection
-- Daniil Baturin <[email protected]> Thu, 31 Jul 2014 20:59:45 +0200
vyatta-cfg-firewall (0.13.91+vyos1+helium3) unstable; urgency=low
* Bug #170: add L2TPv3 interface type to policy template generator.
-- Daniil Baturin <[email protected]> Sun, 06 Apr 2014 15:52:12 +0200
vyatta-cfg-firewall (0.13.91+vyos1+helium2) unstable; urgency=low
* Bug #170: add L2TPv3 interface type to firewall templates generator.
-- Daniil Baturin <[email protected]> Sun, 06 Apr 2014 15:48:20 +0200
vyatta-cfg-firewall (0.13.91+vyos1+helium1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Sat, 15 Feb 2014 16:06:21 +0100
vyatta-cfg-firewall (0.13.91+hydrogen1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Sun, 17 Nov 2013 00:08:19 +0100
vyatta-cfg-firewall (0.13.91+daisy7) unstable; urgency=low
* Add config node for firewall config change trap
* Add script to generate traps
* Enable generation of SNMP traps on firewall config changes
-- James Davidson <[email protected]> Mon, 10 Jun 2013 08:45:42 -0700
vyatta-cfg-firewall (0.13.91+daisy6) unstable; urgency=low
* Fixing 8622
-- Gaurav Sinha <[email protected]> Tue, 22 Jan 2013 16:39:42 -0800
vyatta-cfg-firewall (0.13.91+daisy5) unstable; urgency=low
* fix for 8492. Don't declare error and bail out on attempt to
deletion of ipset.
-- Gaurav Sinha <[email protected]> Wed, 21 Nov 2012 16:24:23 -0800
vyatta-cfg-firewall (0.13.91+daisy4) unstable; urgency=low
* Fix rc usage as per ispet_delete and other commands
-- Gaurav Sinha <[email protected]> Tue, 20 Nov 2012 10:36:29 -0800
vyatta-cfg-firewall (0.13.91+daisy3) unstable; urgency=low
* Bugfix 7613: cleanup firewall groups correctly
-- John Southworth <[email protected]> Mon, 19 Nov 2012 13:15:09 -0800
vyatta-cfg-firewall (0.13.91+daisy2) unstable; urgency=low
* initial script for reset firewall group command
* reset functions for named ipset rule implementation with commit lock
* added reset all groups functions
* Add warning prompt before doing reset
* Add signal handler to handle CTRL+C to avoid commit blockade on lock
file
* Add show functions for allowed scripts for firewall groups
-- Gaurav Sinha <[email protected]> Mon, 19 Nov 2012 12:33:39 -0800
vyatta-cfg-firewall (0.13.91+daisy1) unstable; urgency=low
* create daisy branch
-- John Southworth <[email protected]> Sat, 13 Oct 2012 13:30:29 -0700
vyatta-cfg-firewall (0.13.91) unstable; urgency=low
* new branch
-- John Southworth <[email protected]> Fri, 12 Oct 2012 19:46:43 -0700
vyatta-cfg-firewall (0.13.90) unstable; urgency=low
* PBR: config command validations, help strings etc. cleaned up and
-- susheela <[email protected]> Sat, 06 Oct 2012 15:09:36 -0700
vyatta-cfg-firewall (0.13.89) unstable; urgency=low
[ Bharat ]
* Bug 8200: Changed gred to not display shim6
[ bharat ]
-- bharat <[email protected]> Thu, 04 Oct 2012 11:55:24 -0700
vyatta-cfg-firewall (0.13.88) unstable; urgency=low
* Bug 8348: policy route <> rule <> action, 'modify' shouldn't be
allowed
-- Robert Bays <[email protected]> Thu, 13 Sep 2012 16:53:57 -0700
vyatta-cfg-firewall (0.13.87) unstable; urgency=low
* 8330: return rule number in error message
-- Gaurav Sinha <[email protected]> Thu, 13 Sep 2012 09:42:12 -0700
vyatta-cfg-firewall (0.13.86) unstable; urgency=low
* Fixing 3167, mandate multiport values after single port, remove
misleading error message
-- Gaurav Sinha <[email protected]> Fri, 07 Sep 2012 17:22:05 -0700
vyatta-cfg-firewall (0.13.85) unstable; urgency=low
* reserve upper table numbers for future use
-- Robert Bays <[email protected]> Wed, 05 Sep 2012 15:32:06 -0700
vyatta-cfg-firewall (0.13.84) unstable; urgency=low
* initial checkin for pbr functionality
* update script executable permissions
* lower priority on policy route node so it is run before interfaces
* Add val_help for table numbers
* Table should be between 1-250, not 1-249.
* changes to policy tables to add accept
* populate firewall policy tables based on refcount
* add support for main table
-- Robert Bays <[email protected]> Wed, 05 Sep 2012 14:26:40 -0700
vyatta-cfg-firewall (0.13.83) unstable; urgency=low
* fix 8200, don't allow shim6 in allowed list of ipv4 protocols for
firewall
-- Gaurav Sinha <[email protected]> Wed, 29 Aug 2012 17:03:52 -0700
vyatta-cfg-firewall (0.13.82) unstable; urgency=low
* add conntrack raw table ignore chain
* move CT_IGNORE chain up, first in raw table
-- Gaurav Sinha <[email protected]> Wed, 22 Aug 2012 17:42:02 -0700
vyatta-cfg-firewall (0.13.81) unstable; urgency=low
* Bugfix 8271: Remove Vestigial VRRP hooks. The implementation changed
and these are no longer needed.
* 0.13.80
-- John Southworth <[email protected]> Thu, 09 Aug 2012 16:53:27 -0700
vyatta-cfg-firewall (0.13.80) unstable; urgency=low
* Bugfix 8271: Remove Vestigial VRRP hooks. The implementation changed
and these are no longer needed.
-- John Southworth <[email protected]> Thu, 09 Aug 2012 16:53:20 -0700
vyatta-cfg-firewall (0.13.79) unstable; urgency=low
* Bugfix 8217: VTI: add firewall cfg commands under interfaces vti
* 0.13.78
-- Saurabh Mohan <[email protected]> Thu, 09 Aug 2012 14:01:58 -0700
vyatta-cfg-firewall (0.13.78) unstable; urgency=low
* Bugfix 8217: VTI: add firewall cfg commands under interfaces vti
-- Saurabh Mohan <[email protected]> Thu, 09 Aug 2012 13:29:07 -0700
vyatta-cfg-firewall (0.13.77) unstable; urgency=low
* fixing 8173: moving CT_HELPER chain just before CTTIMEOUT
-- Gaurav Sinha <[email protected]> Fri, 22 Jun 2012 15:21:31 -0700
vyatta-cfg-firewall (0.13.76) unstable; urgency=low
* fix 8112
-- Gaurav Sinha <[email protected]> Mon, 18 Jun 2012 15:13:32 -0700
vyatta-cfg-firewall (0.13.75) unstable; urgency=low
* Bugfix 8042: increase number of firewall groups to a reasonable
number
-- John Southworth <[email protected]> Fri, 08 Jun 2012 14:02:27 -0700
vyatta-cfg-firewall (0.13.74) unstable; urgency=low
* Adding functions to conditionally add CT_HELPER chain and remove
when not in use, neither by FW nor by NAT.
-- Gaurav Sinha <[email protected]> Thu, 07 Jun 2012 22:17:09 -0700
vyatta-cfg-firewall (0.13.73) unstable; urgency=low
* create CT_HELPER chain in PREROUTING and OUTPUT
* don't add CTHELPER chain by default on boot. add when needed.
* create nfct helper policies and prepare VYATTA_CT_HELPER chain
-- Gaurav Sinha <[email protected]> Wed, 06 Jun 2012 21:47:45 -0700
vyatta-cfg-firewall (0.13.72) unstable; urgency=low
* Remove sudo from port-group syntax check call
-- John Southworth <[email protected]> Sun, 03 Jun 2012 12:16:21 -0700
vyatta-cfg-firewall (0.13.71) unstable; urgency=low
* Make firewall syntax checks use the vyatta-util library
-- John Southworth <[email protected]> Sat, 02 Jun 2012 21:05:27 -0700
vyatta-cfg-firewall (0.13.70) unstable; urgency=low
* No need to have vrrp specific interface templates anymore
-- John Southworth <[email protected]> Tue, 15 May 2012 20:43:09 -0700
vyatta-cfg-firewall (0.13.69) unstable; urgency=low
* service names with hyphen need to be escaped using square brackets.
-- Gaurav Sinha <[email protected]> Mon, 30 Apr 2012 16:13:31 -0700
vyatta-cfg-firewall (0.13.68) unstable; urgency=low
* fixing 7998
-- Gaurav Sinha <[email protected]> Mon, 16 Apr 2012 11:12:28 -0700
vyatta-cfg-firewall (0.13.67) unstable; urgency=low
* include CT_TIMEOUT chain for conntrack timeouts.
-- Gaurav <[email protected]> Fri, 23 Mar 2012 18:18:39 -0700
vyatta-cfg-firewall (0.13.66) unstable; urgency=low
* new branch
-- Deepti Kulkarni <[email protected]> Sat, 03 Mar 2012 02:25:26 -0800
vyatta-cfg-firewall (0.13.65) unstable; urgency=low
* 7047:use DEFLT instead of default
-- Gaurav <[email protected]> Wed, 29 Feb 2012 15:59:30 -0800
vyatta-cfg-firewall (0.13.64) unstable; urgency=low
* fixing 7047
-- Gaurav <[email protected]> Wed, 29 Feb 2012 13:51:06 -0800
vyatta-cfg-firewall (0.13.63) unstable; urgency=low
* Bug Fix for 7751, 7753, 7757
-- Mohit Mehta <[email protected]> Fri, 24 Feb 2012 19:11:48 -0800
vyatta-cfg-firewall (0.13.62) unstable; urgency=low
* Fix help string of state-policy for related connections
-- Mohit Mehta <[email protected]> Fri, 06 Jan 2012 11:37:16 -0800
vyatta-cfg-firewall (0.13.61) unstable; urgency=low
* Create VRRP output filter to filter IGMP from vmac interfaces
-- John Southworth <[email protected]> Tue, 27 Dec 2011 10:32:23 -0800
vyatta-cfg-firewall (0.13.60) unstable; urgency=low
* Setup filter for VRRP vmac interfaces
-- John Southworth <[email protected]> Mon, 12 Dec 2011 15:18:47 -0800
vyatta-cfg-firewall (0.13.59) unstable; urgency=low
* Add vrrp interface parameters for bonding vifs
-- John Southworth <[email protected]> Fri, 02 Dec 2011 11:24:59 -0800
vyatta-cfg-firewall (0.13.58) unstable; urgency=low
* Warn users when stateful rules are set with state-policy configured
-- Mohit Mehta <[email protected]> Fri, 02 Dec 2011 03:58:22 -0800
vyatta-cfg-firewall (0.13.57) unstable; urgency=low
[ Daniil Baturin ]
* Remove conntrack-related templates from firewall
* Remove remaining conntrack-related templates.
* Remove conntrack modprobe config file (will be in vyatta-conntrack
now).
* Delete conntrack modprobe config file from automake rules.
[ John Southworth ]
* generate firewall templates for vrrp interfaces
-- John Southworth <[email protected]> Thu, 01 Dec 2011 16:54:09 -0800
vyatta-cfg-firewall (0.13.56) unstable; urgency=low
* Bug 6063 ENH: Provide option(s) to globally allow stateful return
traffic
-- Mohit Mehta <[email protected]> Thu, 01 Dec 2011 05:38:33 -0800
vyatta-cfg-firewall (0.13.55) unstable; urgency=low
* Move check-params-on-reboot script for conntrack hash size to
-- Daniil Baturin <[email protected]> Thu, 24 Nov 2011 01:05:16 +0700
vyatta-cfg-firewall (0.13.54) unstable; urgency=low
* Remove conntrack-related code from firewall top level template
-- Daniil Baturin <[email protected]> Tue, 08 Nov 2011 04:15:53 +0700
vyatta-cfg-firewall (0.13.53) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Sat, 05 Nov 2011 06:16:01 +0700
vyatta-cfg-firewall (0.13.52) unstable; urgency=low
* Remove conntrack-related templates from firewall
* Remove remaining conntrack-related templates.
* Remove conntrack modprobe config file (will be in vyatta-conntrack
now).
* Change firewall version from 4 to 5.
* Fix automake rules to reflect version change and removal of
conntrack modprobe config.
-- Daniil Baturin <[email protected]> Sat, 05 Nov 2011 06:14:59 +0700
vyatta-cfg-firewall (0.13.51) unstable; urgency=low
* Add support for vif on pseudo-ethernet
* fix duplicate definiton in Makefile
* Add dependency on version of vyatta-cfg-system
-- Stephen Hemminger <[email protected]> Thu, 03 Nov 2011 14:41:47 -0700
vyatta-cfg-firewall (0.13.50) unstable; urgency=low
[ Stig ]
* Fix Bug 7477 firewall group negation doesn't work in vc6.3
[ Mohit Mehta ]
-- Mohit Mehta <[email protected]> Mon, 29 Aug 2011 14:44:37 -0700
vyatta-cfg-firewall (0.13.49) unstable; urgency=low
* Fix README
-- Mohit Mehta <[email protected]> Mon, 18 Jul 2011 19:02:05 -0700
vyatta-cfg-firewall (0.13.48) unstable; urgency=low
* Fix Bug 7340 Unable to apply modify firewall to interface when zone
policy exists
-- Mohit Mehta <[email protected]> Fri, 15 Jul 2011 12:04:29 -0700
vyatta-cfg-firewall (0.13.47) unstable; urgency=low
* new branch
-- Deepti Kulkarni <[email protected]> Thu, 07 Jul 2011 20:55:14 -0700
vyatta-cfg-firewall (0.13.46) unstable; urgency=low
* add "two-stage commit" equivalent to previous fix for bug 5227.
-- An-Cheng Huang <[email protected]> Fri, 20 May 2011 12:17:44 -0700
vyatta-cfg-firewall (0.13.45) unstable; urgency=low
* modify firewall groups to work with new commit
-- An-Cheng Huang <[email protected]> Tue, 10 May 2011 09:22:01 +0800
vyatta-cfg-firewall (0.13.44) unstable; urgency=low
* * Fix Bug 6915 conntrack-hash-size reverts to default after upgrade
-- Mohit Mehta <[email protected]> Mon, 18 Apr 2011 18:17:25 -0700
vyatta-cfg-firewall (0.13.43) unstable; urgency=low
* more ipset 6.0 change
-- An-Cheng Huang <[email protected]> Mon, 07 Mar 2011 11:42:28 -0800
vyatta-cfg-firewall (0.13.42) unstable; urgency=low
* changes for ipset 6.0
-- An-Cheng Huang <[email protected]> Fri, 04 Mar 2011 19:14:31 -0800
vyatta-cfg-firewall (0.13.41) unstable; urgency=low
* Partial fix for bug 6759 serial packages are incorrectly included in
virt ISO
-- Mohit Mehta <[email protected]> Wed, 02 Feb 2011 12:05:35 -0800
vyatta-cfg-firewall (0.13.40) unstable; urgency=low
* Fix Bug 6292 iptables chain-name must be reduced to 28 characters
max
-- Mohit Mehta <[email protected]> Mon, 10 Jan 2011 17:36:06 -0800
vyatta-cfg-firewall (0.13.39) unstable; urgency=low
* new branch
-- An-Cheng Huang <[email protected]> Tue, 28 Dec 2010 13:47:02 -0800
vyatta-cfg-firewall (0.13.38) unstable; urgency=low
* Fix help text for firewall interface rules
-- Stephen Hemminger <[email protected]> Mon, 06 Dec 2010 17:08:10 -0800
vyatta-cfg-firewall (0.13.37) unstable; urgency=low
* Fix help text in generated templates
-- Stephen Hemminger <[email protected]> Fri, 03 Dec 2010 13:48:09 -0800
vyatta-cfg-firewall (0.13.36) unstable; urgency=low
* Fix 6442: Request to remove "Error: ipt_disable_conntrack failed to
find
-- Stig Thormodsrud <[email protected]> Mon, 29 Nov 2010 17:27:49 -0800
vyatta-cfg-firewall (0.13.35) unstable; urgency=low
* Show if logging is enabled on the default action.
-- Stig Thormodsrud <[email protected]> Mon, 29 Nov 2010 15:01:47 -0800
vyatta-cfg-firewall (0.13.34) unstable; urgency=low
* Use regex to test for name length rather than wc program
-- Stephen Hemminger <[email protected]> Wed, 24 Nov 2010 09:12:43 -0800
vyatta-cfg-firewall (0.13.33) unstable; urgency=low
* Updated to change in error location api.
-- Michael Larson <[email protected]> Tue, 16 Nov 2010 09:36:48 -0800
vyatta-cfg-firewall (0.13.32) unstable; urgency=low
* Fix Bug 6421 cannot set content-inspection in the same
-- Mohit Mehta <[email protected]> Thu, 11 Nov 2010 18:09:13 -0800
vyatta-cfg-firewall (0.13.31) unstable; urgency=low
* Fix 5247: Firewall groups CLI becomes out of sync with ipset when
sets and deletes are contained within a single commit
-- Stig Thormodsrud <[email protected]> Sat, 30 Oct 2010 13:20:25 -0700
vyatta-cfg-firewall (0.13.30) unstable; urgency=low
* use single variable to reference firewall IN and OUT hooks
* add local hook setup/tear for filter table similar to in|out hooks
-- Mohit Mehta <[email protected]> Tue, 19 Oct 2010 18:59:56 -0700
vyatta-cfg-firewall (0.13.29) unstable; urgency=low
* Change snort queue target use default queue.
-- Stig Thormodsrud <[email protected]> Fri, 15 Oct 2010 18:16:38 -0700
vyatta-cfg-firewall (0.13.28) unstable; urgency=low
* Fix 6296: "iptables: No chain..." message when committing the
firewall group configuration.
-- Stig Thormodsrud <[email protected]> Fri, 15 Oct 2010 16:38:25 -0700
vyatta-cfg-firewall (0.13.27) unstable; urgency=low
* missing paren
-- root <[email protected]> Fri, 15 Oct 2010 16:09:48 -0700
vyatta-cfg-firewall (0.13.26) unstable; urgency=low
* additional errors w/ location of error.
-- root <[email protected]> Fri, 15 Oct 2010 15:08:19 -0700
vyatta-cfg-firewall (0.13.25) unstable; urgency=low
[ Stephen Hemminger ]
* Use Sys::Syslog to avoid calling logger excessively
[ Stig Thormodsrud ]
* Add Iptables::Mgr route to get queue target.
-- Stig Thormodsrud <[email protected]> Thu, 14 Oct 2010 14:11:01 -0700
vyatta-cfg-firewall (0.13.24) unstable; urgency=low
* Fix dependency on sysklogd
* Fix dependency on virtual-package
-- Stephen Hemminger <[email protected]> Thu, 07 Oct 2010 11:41:43 -0700
vyatta-cfg-firewall (0.13.23) unstable; urgency=low
* move chain_referenced function to Mgr.pm module
-- Mohit Mehta <[email protected]> Fri, 01 Oct 2010 11:32:43 -0700
vyatta-cfg-firewall (0.13.22) unstable; urgency=low
* * move count_iptables_rule to Iptables::Mgr and update it's usage
-- Mohit Mehta <[email protected]> Tue, 21 Sep 2010 21:16:45 -0700
vyatta-cfg-firewall (0.13.21) unstable; urgency=low
* * separate out post fw hooks for IN, FWD, OUT. Use
count_iptables_rule from lib
-- Mohit Mehta <[email protected]> Tue, 21 Sep 2010 17:35:13 -0700
vyatta-cfg-firewall (0.13.20) unstable; urgency=low
* rename existing file no matter what; don't need the -n flag
-- Mohit Mehta <[email protected]> Mon, 13 Sep 2010 15:34:09 -0700
vyatta-cfg-firewall (0.13.19) unstable; urgency=low
* Fix bug 6149 Warning on boot because of modprobe config file names
-- Mohit Mehta <[email protected]> Mon, 13 Sep 2010 15:03:33 -0700
vyatta-cfg-firewall (0.13.18) unstable; urgency=low
* Fix Bug 6149 Warning on boot because of modprobe config file names
-- Mohit Mehta <[email protected]> Mon, 13 Sep 2010 14:07:16 -0700
vyatta-cfg-firewall (0.13.17) unstable; urgency=low
* Fix Bug 5309 Allow modifyining TCP MSS option
-- Mohit Mehta <[email protected]> Fri, 10 Sep 2010 16:49:42 -0700
vyatta-cfg-firewall (0.13.16) unstable; urgency=low
* add Replaces field for vyatta-cfg-firewall-serial
-- An-Cheng Huang <[email protected]> Wed, 08 Sep 2010 11:33:31 -0700
vyatta-cfg-firewall (0.13.15) unstable; urgency=low
* Split serial templates into separate package
-- Stephen Hemminger <[email protected]> Tue, 07 Sep 2010 08:54:41 -0700
vyatta-cfg-firewall (0.13.14) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Thu, 02 Sep 2010 18:28:11 -0700
vyatta-cfg-firewall (0.13.13) unstable; urgency=low
* Fix 6125: iptables errors on boot up of mendocino
-- Stig Thormodsrud <[email protected]> Tue, 31 Aug 2010 16:09:26 -0700
vyatta-cfg-firewall (0.13.12) unstable; urgency=low
* remove low-level config dir usage
-- An-Cheng Huang <[email protected]> Tue, 17 Aug 2010 18:24:25 -0700
vyatta-cfg-firewall (0.13.11) unstable; urgency=low
* update help text to use val_help
-- An-Cheng Huang <[email protected]> Tue, 17 Aug 2010 15:31:04 -0700
vyatta-cfg-firewall (0.13.10) unstable; urgency=low
[ Mohit Mehta ]
* fix range in help strings for count parameter under recent
* fix bug 6055 firewall rule help strings are confusing
[ Stig Thormodsrud ]
* Fix 5917: FW: Max characters exceeded for ipset rule when using "set
firewall
-- Stig Thormodsrud <[email protected]> Tue, 17 Aug 2010 10:58:05 -0700
vyatta-cfg-firewall (0.13.9) unstable; urgency=low
* remove low-level config dir usage
-- An-Cheng Huang <[email protected]> Mon, 16 Aug 2010 18:32:41 -0700
vyatta-cfg-firewall (0.13.8) unstable; urgency=low
* remove CLI backend env variables usage
* get rid of lintian warnings
-- An-Cheng Huang <[email protected]> Wed, 11 Aug 2010 18:46:50 -0700
vyatta-cfg-firewall (0.13.7-94) unstable; urgency=low
[ Stephen Hemminger ]
* Convert firewall rules to val_help:
[ Stig Thormodsrud ]
* Fix 5917: FW: Max characters exceeded for ipset rule when using "set
firewall group address-group" command
-- Stig Thormodsrud <[email protected]> Tue, 27 Jul 2010 15:58:57 -0700
vyatta-cfg-firewall (0.13.7-93) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Thu, 22 Jul 2010 17:23:10 -0700
vyatta-cfg-firewall (0.13.7-92) unstable; urgency=low
* undo verb usage at the start of help strings
-- Mohit Mehta <[email protected]> Wed, 21 Jul 2010 14:10:52 -0700
vyatta-cfg-firewall (0.13.7-91) unstable; urgency=low
* Fix bug 4629 configuration limit of recent count firewall rule is 20
-- Mohit Mehta <[email protected]> Thu, 15 Jul 2010 10:55:42 -0700
vyatta-cfg-firewall (0.13.7-90) unstable; urgency=low
* Fix Bug 5744 unable to use firewall group with recent match
condition
-- Mohit Mehta <[email protected]> Tue, 13 Jul 2010 18:54:01 -0700
vyatta-cfg-firewall (0.13.7-89) unstable; urgency=low
* Dont tear down conntrack if the other table is using it.
-- Stig Thormodsrud <[email protected]> Sat, 12 Jun 2010 15:47:49 -0700
vyatta-cfg-firewall (0.13.7-88) unstable; urgency=low
* Dont create FW_CONNTRACK if it already exists.
-- Stig Thormodsrud <[email protected]> Sat, 12 Jun 2010 15:20:36 -0700
vyatta-cfg-firewall (0.13.7-87) unstable; urgency=low
* Add support for firewall enable-default-log.
-- Stig Thormodsrud <[email protected]> Fri, 11 Jun 2010 18:10:17 -0700
vyatta-cfg-firewall (0.13.7-86) unstable; urgency=low
* Fix ipt_disable_conntrack() to delete correct chain.
-- Stig Thormodsrud <[email protected]> Fri, 11 Jun 2010 10:21:10 -0700
vyatta-cfg-firewall (0.13.7-85) unstable; urgency=low
* Infrastruction needed for bug 5583.
-- Stig Thormodsrud <[email protected]> Thu, 10 Jun 2010 15:02:08 -0700
vyatta-cfg-firewall (0.13.7-84) unstable; urgency=low
* Bugfix 5632: Add ability to configure SIP UDP port numbers.
-- Bob Gilligan <[email protected]> Mon, 31 May 2010 00:36:47 -0700
vyatta-cfg-firewall (0.13.7-83) unstable; urgency=low
* need to restart conntrackd when conntrack table size changes
-- Mohit Mehta <[email protected]> Thu, 20 May 2010 19:28:57 -0700
vyatta-cfg-firewall (0.13.7-82) unstable; urgency=low
* Fix Bug 5588 Add ability to modify conntrack expectation table size
-- Mohit Mehta <[email protected]> Mon, 17 May 2010 15:29:58 -0700
vyatta-cfg-firewall (0.13.7-81) unstable; urgency=low
* add input interface templates
* Make sure perl packages load successfully
-- Stephen Hemminger <[email protected]> Thu, 06 May 2010 16:19:09 -0700
vyatta-cfg-firewall (0.13.7-80) unstable; urgency=low
* Add VYATTA_PRE_DNAT_HOOK in nat PREROUTING table.
-- Stig Thormodsrud <[email protected]> Fri, 09 Apr 2010 14:54:20 -0700
vyatta-cfg-firewall (0.13.7-79) unstable; urgency=low
* Fix 5203: negation in firewall rule causes deprecation message
-- Stig Thormodsrud <[email protected]> Wed, 24 Mar 2010 17:12:32 -0700
vyatta-cfg-firewall (0.13.7-78) unstable; urgency=low
* Fix firewall group parent delete while still referenced.
-- Stig Thormodsrud <[email protected]> Thu, 18 Mar 2010 19:45:24 -0700
vyatta-cfg-firewall (0.13.7-77) unstable; urgency=low
* Fix 5453: can't delete "address" under "firewall group <> address-
group <> "
-- Stig Thormodsrud <[email protected]> Wed, 17 Mar 2010 16:43:04 -0700
vyatta-cfg-firewall (0.13.7-76) unstable; urgency=low
* Fix 5453: can't delete "address" under "firewall group <> address-
group <>"
-- Stig Thormodsrud <[email protected]> Wed, 17 Mar 2010 14:32:14 -0700
vyatta-cfg-firewall (0.13.7-75) unstable; urgency=low
* Fix firewall conntrack teardown.
-- Stig Thormodsrud <[email protected]> Fri, 05 Mar 2010 11:43:23 -0800
vyatta-cfg-firewall (0.13.7-74) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Wed, 17 Feb 2010 16:13:01 -0800
vyatta-cfg-firewall (0.13.7-73) unstable; urgency=low
* Fix 5227: firewall group config can get out of sync with ipset
-- Stig Thormodsrud <[email protected]> Mon, 15 Feb 2010 13:10:57 -0800
vyatta-cfg-firewall (0.13.7-72) unstable; urgency=low
[ Stephen Hemminger ]
* Remove old Xorp template
[ Stig Thormodsrud ]
* Fix 5326: firewall group address range wraps at 255.
-- Stig Thormodsrud <[email protected]> Fri, 12 Feb 2010 13:12:03 -0800
vyatta-cfg-firewall (0.13.7-71) unstable; urgency=low
* Fix 5248: Firewall config and show commands hang when showing and
committing address groups.
-- Stig Thormodsrud <[email protected]> Fri, 22 Jan 2010 15:01:46 -0800
vyatta-cfg-firewall (0.13.7-70) unstable; urgency=low
* Add same restrictions to ipv6-firewall name
-- Stephen Hemminger <[email protected]> Mon, 04 Jan 2010 16:08:14 -0800
vyatta-cfg-firewall (0.13.7-69) unstable; urgency=low
* Add VIF for wireless templates
* Don't allow spaces or other shell-confusing characters in firewall
name
-- Stephen Hemminger <[email protected]> Mon, 04 Jan 2010 15:26:19 -0800
vyatta-cfg-firewall (0.13.7-68) unstable; urgency=low
* Fix Bug 5173 Firewall becomes out of sync with iptables when logging
is used
-- Mohit Mehta <[email protected]> Tue, 22 Dec 2009 21:01:08 -0800
vyatta-cfg-firewall (0.13.7-67) unstable; urgency=low