mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
Added error handling in case of edit/add/delete (#8696)
This commit is contained in:
parent
4b5e2cee3d
commit
736932e977
10 changed files with 128 additions and 95 deletions
|
|
@ -8,25 +8,24 @@
|
|||
local l4_protocol_list = {}
|
||||
|
||||
l4_protocol_list.l4_keys = {
|
||||
{ "IP", "ip", 0 },
|
||||
{ "ICMP", "icmp", 1 },
|
||||
{ "IGMP", "igmp", 2 },
|
||||
{ "TCP", "tcp", 6 },
|
||||
{ "UDP", "udp", 17 },
|
||||
{ "IPv6", "ipv6", 41 },
|
||||
{ "RSVP", "rsvp", 46 },
|
||||
{ "GRE", "gre", 47 },
|
||||
{ "ESP", "esp", 50 },
|
||||
{ "IPv6-ICMP", "ipv6icmp", 58 },
|
||||
{ "EIGRP", "eigrp", 88 },
|
||||
{ "OSPF", "ospf", 89 },
|
||||
{ "PIM", "pim", 103 },
|
||||
{ "VRRP", "vrrp", 112 },
|
||||
{ "L2TP", "l2tp", 115 },
|
||||
{ "ESP", "esp", 50 },
|
||||
{ "GRE", "gre", 47 },
|
||||
{ "HIP", "hip", 139 },
|
||||
{ "SCTP", "sctp", 132 },
|
||||
{ "ICMP", "icmp", 1 },
|
||||
{ "ICMPv6", "icmpv6", 58 },
|
||||
{ "IGMP", "igmp", 2 },
|
||||
{ "IP", "ip", 0 },
|
||||
{ "IPv6", "ipv6", 41 },
|
||||
{ "IPv6-ICMP", "ipv6icmp", 58 },
|
||||
{ "L2TP", "l2tp", 115 },
|
||||
{ "OSPF", "ospf", 89 },
|
||||
{ "PIM", "pim", 103 },
|
||||
{ "RSVP", "rsvp", 46 },
|
||||
{ "SCTP", "sctp", 132 },
|
||||
{ "VRRP", "vrrp", 112 },
|
||||
{ "Other IP", "other_ip", -1 }
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue