app payload特征配置的l3_header配置增加属性,并且必须输入十六进制字符串,后台转为偏移表达式的字符串配置
This commit is contained in:
@@ -1409,4 +1409,8 @@ desc=Desc
|
||||
unique_num=Unique
|
||||
import_limit_is=The maximum import size is
|
||||
upload_limit_is=The limitation of file uplaod is
|
||||
count=Count
|
||||
count=Count
|
||||
do_blacklist=Blacklist Option
|
||||
l3_header_error=Only four attribute values are allowed to be entered at most
|
||||
IP_HEADER=IP Header
|
||||
ICMP_HEADER=ICMP Header
|
||||
@@ -1413,4 +1413,8 @@ desc=Desc
|
||||
unique_num=Unique
|
||||
import_limit_is=The maximum import size is
|
||||
upload_limit_is=The limitation of file uplaod is
|
||||
count=Count
|
||||
count=Count
|
||||
do_blacklist=Blacklist Option
|
||||
l3_header_error=Only four attribute values are allowed to be entered at most
|
||||
IP_HEADER=IP Header
|
||||
ICMP_HEADER=ICMP Header
|
||||
@@ -1409,4 +1409,8 @@ desc=Desc
|
||||
unique_num=Unique
|
||||
import_limit_is=\u5BFC\u5165\u9650\u5236\u6700\u5927\u6761\u6570
|
||||
upload_limit_is=\u6587\u4EF6\u4E0A\u4F20\u4E2A\u6570\u9650\u5236
|
||||
count=\u6570\u91CF
|
||||
count=\u6570\u91CF
|
||||
do_blacklist=Blacklist Option
|
||||
l3_header_error=Only four attribute values are allowed to be entered at most
|
||||
IP_HEADER=IP Header
|
||||
ICMP_HEADER=ICMP Header
|
||||
11
src/main/resources/sql/20181222/add_app_feature_column
Normal file
11
src/main/resources/sql/20181222/add_app_feature_column
Normal file
@@ -0,0 +1,11 @@
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `header_type` varchar(16) NULL DEFAULT '' AFTER `user_region5`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `ver` varchar(4) NULL DEFAULT '' AFTER `header_type`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `ihl` varchar(4) NULL DEFAULT '' AFTER `ver`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `tos` varchar(8) NULL DEFAULT '' AFTER `ihl`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `total_length` varchar(16) NULL DEFAULT '' AFTER `tos`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `flags` varchar(3) NULL DEFAULT '' AFTER `total_length`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `fragment_offset` varchar(8) NULL DEFAULT '' AFTER `flags`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `protocol` varchar(8) NULL DEFAULT '' AFTER `fragment_offset`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `icmp_type` varchar(8) NULL DEFAULT '' AFTER `protocol`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `icmp_code` varchar(8) NULL DEFAULT '' AFTER `icmp_type`;
|
||||
ALTER TABLE `app_complex_feature_cfg` ADD COLUMN `icmp_identifier` varchar(16) NULL DEFAULT '' AFTER `icmp_code`;
|
||||
Reference in New Issue
Block a user