diff options
author | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2012-07-19 07:47:28 +0000 |
---|---|---|
committer | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2012-07-19 07:47:28 +0000 |
commit | f8da875b1e1d3b425a5a4fa1f80d7989f1ab345e (patch) | |
tree | d350eeee9666055f25fa2ef3af737a64dd1d26a6 | |
parent | 55b0048256173a109e8eb1eee459bbbe519f33d6 (diff) | |
download | awall-f8da875b1e1d3b425a5a4fa1f80d7989f1ab345e.tar.bz2 awall-f8da875b1e1d3b425a5a4fa1f80d7989f1ab345e.tar.xz |
service definitions added: http-alt, pgsql, syslogv0.2.2
-rw-r--r-- | json/services.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/json/services.json b/json/services.json index 2ee5436..cc59392 100644 --- a/json/services.json +++ b/json/services.json @@ -9,6 +9,7 @@ "dhcp": { "proto": "udp", "port": [ 67, 68 ] }, "gre": { "proto": "gre" }, "http": { "proto": "tcp", "port": 80 }, + "http-alt": { "proto": "tcp", "port": 8080 }, "https": { "proto": "tcp", "port": 443 }, "icmp": { "proto": "icmp" }, "igmp": { "proto": "igmp" }, @@ -18,6 +19,7 @@ ], "irc": { "proto": "tcp", "port": 6667 }, "ntp": { "proto": "udp", "port": 123 }, + "pgsql": { "proto": "tcp", "port": 5432 }, "ping": [ { "proto": "icmp", "type": 8 }, { "proto": "icmpv6", "type": 128 } @@ -32,6 +34,7 @@ ], "smtp": { "proto": "tcp", "port": 25 }, "snmp": { "proto": "udp", "port": 161 }, - "ssh": { "proto": "tcp", "port": 22 } + "ssh": { "proto": "tcp", "port": 22 }, + "syslog": { "proto": "udp", "port": 514 } } } |