~ubuntu-branches/ubuntu/trusty/ufw/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/bugs/rules/result

  • Committer: Package Import Robot
  • Author(s): Jamie Strandboge
  • Date: 2011-07-18 17:09:57 UTC
  • mfrom: (0.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20110718170957-z7izfiknijlefszw
Tags: 0.30.1-2ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/rules: Don't install the upstream application profiles that are
    shipped with the Debian package.
  - debian/control: use ufw-0.30-oneiric for Vcs-Bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
Rules updated
44
44
 
45
45
 
 
46
proto ipv6 when IPV6=yes
 
47
1: --dry-run allow to any proto ipv6
 
48
WARN: Checks disabled
 
49
*filter
 
50
:ufw-user-input - [0:0]
 
51
:ufw-user-output - [0:0]
 
52
:ufw-user-forward - [0:0]
 
53
:ufw-before-logging-input - [0:0]
 
54
:ufw-before-logging-output - [0:0]
 
55
:ufw-before-logging-forward - [0:0]
 
56
:ufw-user-logging-input - [0:0]
 
57
:ufw-user-logging-output - [0:0]
 
58
:ufw-user-logging-forward - [0:0]
 
59
:ufw-after-logging-input - [0:0]
 
60
:ufw-after-logging-output - [0:0]
 
61
:ufw-after-logging-forward - [0:0]
 
62
:ufw-logging-deny - [0:0]
 
63
:ufw-logging-allow - [0:0]
 
64
:ufw-user-limit - [0:0]
 
65
:ufw-user-limit-accept - [0:0]
 
66
### RULES ###
 
67
 
 
68
### tuple ### allow ipv6 any 0.0.0.0/0 any 0.0.0.0/0 in
 
69
-A ufw-user-input -p ipv6 -j ACCEPT
 
70
 
 
71
### END RULES ###
 
72
 
 
73
### LOGGING ###
 
74
-A ufw-after-logging-input -j LOG --log-prefix "[UFW BLOCK] " -m limit --limit 3/min --limit-burst 10
 
75
-A ufw-after-logging-forward -j LOG --log-prefix "[UFW BLOCK] " -m limit --limit 3/min --limit-burst 10
 
76
-I ufw-logging-deny -m state --state INVALID -j RETURN -m limit --limit 3/min --limit-burst 10
 
77
-A ufw-logging-deny -j LOG --log-prefix "[UFW BLOCK] " -m limit --limit 3/min --limit-burst 10
 
78
-A ufw-logging-allow -j LOG --log-prefix "[UFW ALLOW] " -m limit --limit 3/min --limit-burst 10
 
79
### END LOGGING ###
 
80
 
 
81
### RATE LIMITING ###
 
82
-A ufw-user-limit -m limit --limit 3/minute -j LOG --log-prefix "[UFW LIMIT BLOCK] "
 
83
-A ufw-user-limit -j REJECT
 
84
-A ufw-user-limit-accept -j ACCEPT
 
85
### END RATE LIMITING ###
 
86
COMMIT
 
87
Rules updated
 
88
 
 
89