-
Notifications
You must be signed in to change notification settings - Fork 1
/
error.ini
4193 lines (3361 loc) · 79.6 KB
/
error.ini
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
################################################
# id range : 0~0xffff
# desc bytes : <256
# desc_en bytes : <128
################################################
##################################
## [VOS_ERROR_CODE = 0]
## begin at hex :0x0000 dec :0
##################################
[0]
id = 0
desc = OK
desc_en = OK
[1]
id = 1
desc = ERROR Code
desc_en = ERROR Code
[2]
id = 2
desc = More Data
desc_en = More Data
[3]
id = 3
desc = 读失败
desc_en = Read error
[4]
id = 4
desc = 分配内存失败
desc_en = Alloc memory failed
[5]
id = 5
desc = 读文件错误
desc_en = Read file error
[6]
id = 6
desc = 写文件错误
desc_en = Write file error
[7]
id = 7
desc = 读socket错误
desc_en = Read socket error
[8]
id = 8
desc = 写socket错误
desc_en = Write socket error
[9]
id = 9
desc = 连接socket错误
desc_en = Connect socket error
[10]
id = 10
desc = 接口不存在
desc_en = Interface does not exist
[11]
id = 11
desc = 地址格式错误
desc_en = Malformed address
[12]
id = 12
desc = 设置接口IP失败
desc_en = Set interface IP address failed
[13]
id = 13
desc = 找不到IP地址
desc_en = Can't find IP address
[14]
id = 14
desc = 取消接口ip失败
desc_en = Unset interface IP address failed
[15]
id = 15
desc = ha运行期间不能配置备份接口
desc_en = Can't config backup interface while ha is running
[16]
id = 16
desc = ha接口不能与被监控接口相同
desc_en = Can't config ha interface as monitor interface
[17]
id = 17
desc = 内存不足
desc_en = Malloc memory error
[18]
id = 18
desc = 被监控接口不能与ha接口相同
desc_en = Can't set monitor interface as ha interface
[19]
id = 19
desc = 优先级被其它成员是占用
desc_en = Priority is obtained by other member
[20]
id = 20
desc = 没有配置ha接口
desc_en = No config ha interface
[21]
id = 21
desc = 没有配置监控接口
desc_en = No config monitor interface
[22]
id = 22
desc = ha状态错误
desc_en = Ha state error
[23]
id = 23
desc = 创建Socket失败
desc_en = Socket create error
[24]
id = 24
desc = 非法网关
desc_en = Invalid gateway
[25]
id = 25
desc = 不能删除绑定在vpn通道上阶段1的网关
desc_en = Can not remove a binded gateway by tunnel
[26]
id = 26
desc = 隧道名称冲突
desc_en = conflicted tunnel name
[27]
id = 27
desc = 不能删除绑定在防火墙上的隧道
desc_en = Can not remove a binded tunnel by firewall
[28]
id = 28
desc = 无效的隧道
desc_en = Invalid tunnel
[29]
id = 29
desc = 无效的阶段2的变换集
desc_en = Invalid propasal
[30]
id = 30
desc = 无效的阶段2IPSec通道
desc_en = It's not tunnel in phase2
[31]
id = 31
desc = 无效的手工IPSec通道
desc_en = It's not tunnel in manual
[32]
id = 32
desc = ha运行期间不能配置ha接口
desc_en = Can't config ha interface while ha is running...
[33]
id = 33
desc = 超过最大的SA建立数
desc_en = Exceed Max crypto node
[34]
id = 34
desc = 非法的主机地址
desc_en = Invalid host address
[35]
id = 35
desc = 地址与其它接口地址冲突
desc_en = Address overlaps with other interface
[36]
id = 36
desc = 找不到静态路由
desc_en = Cannot get static route
[37]
id = 37
desc = 手工隧道与策略绑定
desc_en = Bind a manual tunnel to policy
[38]
id = 38
desc = 没有指定用户
desc_en = No specify user
[39]
id = 39
desc = xml文件解析错误
desc_en = Xml file parse error
[40]
id = 40
desc = 下一跳超过限制数量
desc_en = Too many nexthops
[41]
id = 41
desc = 非法的IP地址
desc_en = Invalid ip address
[42]
id = 42
desc = 目标不存在
desc_en = Target missing
[43]
id = 43
desc = 目标正在被使用(现在不能被删除)
desc_en = Target used now
[44]
id = 44
desc = 接口类型错误
desc_en = Invalid interface type
[45]
id = 45
desc = 缺省网关超过限制数量
desc_en = Too many defaut gateway
[46]
id = 46
desc =
desc_en = HOLD
[47]
id = 47
desc =
desc_en = HOLD
[48]
id = 48
desc = 获取接口MTU失败
desc_en = Failed to get mtu of interface
[49]
id = 49
desc = IPv6接口的MTU最小值为1280
desc_en = The min of the mtu on interface with IPv6 is 1280
[50]
id = 50
desc = IP地址错误
desc_en = Bad ip address
[51]
id = 51
desc = MAC地址错误
desc_en = Bad mac address
[52]
id = 52
desc = 没有找到该接口
desc_en = The interface is not found
[53]
id = 53
desc = 该接口已被设置为dhcp中继代理
desc_en = The interface is set dhcp relay
[54]
id = 54
desc = 该接口已被设置为dhcp服务器
desc_en = The interface is set dhcp server
[55]
id = 55
desc = 该接口已经运行dhcp客户端
desc_en = The interface is running dhcp client
[56]
id = 56
desc = 该接口已经运行dhcp中继代理
desc_en = The interface is running dhcp relay
[57]
id = 57
desc = 接口上启用dhcp中继代理失败
desc_en = Start dhcp relay failed on interface
[58]
id = 58
desc = 接口上启用dhcp客户端失败
desc_en = Start dhcp client failed on interface
[59]
id = 59
desc = 接口上启用dhcp服务失败
desc_en = Start dhcp server failed
[60]
id = 60
desc = dhcp服务器正在运行
desc_en = Dhcp server is already running
[61]
id = 61
desc = dhcp服务器配置错误
desc_en = Dhcp server no config or config is incorrect
[62]
id = 62
desc = 子网没有配置subnet
desc_en = Share-net has no subnet
[63]
id = 63
desc = 子网没有配置地址池
desc_en = Share-net has no pool
[64]
id = 64
desc = 名称的最大长度是64
desc_en = The max length of the name is 64
[65]
id = 65
desc = 配置最大项是100
desc_en = The max number of item is 100
[66]
id = 66
desc = 子网与地址池不匹配
desc_en = The subnet does not match the pool
[67]
id = 67
desc = 地址池错误
desc_en = Incorrect address pool
[68]
id = 68
desc = 地址池冲突
desc_en = Reduplicate pool
[69]
id = 69
desc = 每个子网只支持一个地址池
desc_en = Already has one pool, we support one pool
[70]
id = 70
desc = 请输入租期:天 小时 分
desc_en = Please input the lease time: days, hours and minutes
[71]
id = 71
desc = 地址租约范围5分钟到100天
desc_en = Valid lease is 5 minutes to 100 days
[72]
id = 72
desc = 地址池范围超过B类地址
desc_en = The pool is too bigger than 1 B class networks
[73]
id = 73
desc = IP地址的数量超过最大限制(327680)
desc_en = The number of ip addresses exceed limits (327680)
[74]
id = 74
desc = 该mac已经被绑定
desc_en = The mac has be bound
[75]
id = 75
desc = 该IP已经被绑定
desc_en = The IP has be bound
[76]
id = 76
desc = 地址池IP不能是网络地址或广播地址
desc_en = The IP cannot be network address or broadcast address
[77]
id = 77
desc = 错误的子网
desc_en = Incorrect subnet
[78]
id = 78
desc = 配置最大项是4096
desc_en = The max number of item is 4096
[79]
id = 79
desc = end of dhcp message
desc_en = DHCP HOLD
[80]
id = 80
desc = 该授权表已经存在
desc_en = Already have a same authorized table
[81]
id = 81
desc = 该授权表不存在
desc_en = The authorized table doesn't exist
[82]
id = 82
desc = 该授权表正在被使用,不能删除
desc_en = The authorized table is in used ,cannot be delete!
[83]
id = 83
desc = 该授权表是默认表,不能被删除
desc_en = The authorized table is default table ,cannot be delete!
[84]
id = 84
desc = 别名重复
desc_en = Aliasname duplite with other aliasname
[85]
id = 85
desc = 别名与接口实名相同
desc_en = Aliasname duplite with interface name
[86]
id = 86
desc = 该用户不存在
desc_en = User does not exist
[87]
id = 87
desc = 目标策略不存在
desc_en = Taget policy doesn't exist
[88]
id = 88
desc = 参考策略不存在
desc_en = Reference policy does not exist
[89]
id = 89
desc = 目标策略已经存在
desc_en = Taget policy is already existed
[90]
id = 90
desc = 出接口或入接口不存在
desc_en = Interface in or out does not exist
[91]
id = 91
desc = 出接口或入接口已经和网桥接口绑定
desc_en = Interface in or out has been bind to a bridge already
[92]
id = 92
desc = 入接口被包含在安全域里
desc_en = Interface in is included in a security zone
[93]
id = 93
desc = 出接口被包含在安全域里
desc_en = Interface out is included in a security zone
[94]
id = 94
desc = 源地址不存在
desc_en = Source address does not exist
[95]
id = 95
desc = 目的地址不存在
desc_en = Destination address does not exist
[96]
id = 96
desc = 服务不存在
desc_en = Service does not exist
[97]
id = 97
desc = 时间范围不存在
desc_en = Time range does not exist
[98]
id = 98
desc = 策略定义在不同接口对下,不能改变顺序
desc_en = Policies are not in the same interface pair
[99]
id = 99
desc = 用户组不存在
desc_en = Group does not exist
[100]
id = 100
desc = 用户和用户组都不存在
desc_en = User and group does not exist
[101]
id = 101
desc = radius服务器不存在
desc_en = Radius-server does not exist
[102]
id = 102
desc = 名称超长
desc_en = The length of Name is too long
[103]
id = 103
desc = 字符长度超过最长限制
desc_en = Invalid length of string
[104]
id = 104
desc = 对象正被使用,无法删除
desc_en = The object is being used, can't delete
[105]
id = 105
desc = 对象数量已达到最大限制
desc_en = Objects number reach the maximum
[106]
id = 106
desc = 名称冲突
desc_en = Conflict object
[107]
id = 107
desc = 对象名称不存在
desc_en = The object name does not exist
[108]
id = 108
desc = 该接口被包含在安全域中或者与策略相关
desc_en = The interface configuration collided
[109]
id = 109
desc = 名称错误
desc_en = The name is unavailable
[110]
id = 110
desc = IP地址错误
desc_en = Bad ip address
[111]
id = 111
desc = 对象类型错误
desc_en = The object type is wrong
[112]
id = 112
desc = 服务字符串错误
desc_en = The service string can not be parsed
[113]
id = 113
desc = 时间范围错误
desc_en = The time range is wrong
[114]
id = 114
desc = 描述或名称超长
desc_en = The name or description is too long
[115]
id = 115
desc = 目标已经存在
desc_en = Target is already existed
[116]
id = 116
desc = 非法的MAC地址
desc_en = Invalid Mac address
[117]
id = 117
desc = 地址名称不能为any
desc_en = Can't set the address any
[118]
id = 118
desc = 非法的手工密钥
desc_en = Invalid maunal key
[119]
id = 119
desc = VPN隧道名称超长
desc_en = Vpn tunnel name is too long
[120]
id = 120
desc = 终止IP应大于起始IP
desc_en = End ip must larger than start ip for l2tp peer ip pool
[121]
id = 121
desc = 策略数量已达到最大限制
desc_en = Policy number reach the maximum
[122]
id = 122
desc = 该策略已经存在
desc_en = The same policy existed already
[123]
id = 123
desc = 出接口和入接口被设置在不同桥组中
desc_en = Interface in and out have been set to different bridges
[124]
id = 124
desc = 备份dns服务器地址与首选dns服务器地址相同
desc_en = Master dns server address overlapped with backup
[125]
id = 125
desc = 测试dns服务器失败
desc_en = Test dns server failed
[126]
id = 126
desc = IP地址已被绑定
desc_en = IP address already bind
[127]
id = 127
desc = MAC地址已经被绑定
desc_en = Mac address already bind
[128]
id = 128
desc = 主接口已经被设置为桥
desc_en = Failed , for the master interface has be set to bridge
[129]
id = 129
desc = DNS解析错误,请稍后再试
desc_en = DNS resolve failed,retry it later
[130]
id = 130
desc = 别名与安全域名称冲突
desc_en = Aliasname conflict with zone name
[131]
id = 131
desc = SSLVPN服务没有开启
desc_en = SSLVPN service dosen't enable
[132]
id = 132
desc = 设置SSLVPN服务端口失败
desc_en = Set SSVLPN service port failed
[133]
id = 133
desc = 终止IP必须大于起始IP
desc_en = IP RANGE:start ip must not exceed end ip
[134]
id = 134
desc = 地址范围不能超过65535
desc_en = IP RANGE must not exceed 65535
[135]
id = 135
desc = 版本文件不存在
desc_en = No version file found
[136]
id = 136
desc = 没有空间执行该操作
desc_en = No space to perform this operation
[137]
id = 137
desc = 无效的系统升级文件
desc_en = Invalid magic number in version file
[138]
id = 138
desc = 版本文件的CRC校验失败
desc_en = CRC check error for version file
[139]
id = 139
desc = 保存版本文件失败
desc_en = Cannot store version file to disk
[140]
id = 140
desc = 接口被桥接口引用
desc_en = Interface used by bridge
[141]
id = 141
desc = 接口被安全域引用
desc_en = Interface used by security zone
[142]
id = 142
desc = 接口被业务引用
desc_en = Interface used by service policy
[143]
id = 143
desc = 接口被策略路由引用
desc_en = Interface used by policy route
[144]
id = 144
desc = 接口被NAT引用
desc_en = Interface used by NAT
[145]
id = 145
desc = 用户名不是当前用户
desc_en = Username is not the current user
[146]
id = 146
desc = radius或ldap用户不能修改密码
desc_en = RADIUS or LDAP user can't change password
[147]
id = 147
desc = 旧密码和用户密码不符
desc_en = Old password is wrong
[148]
id = 148
desc = radius服务器和用户组不存在
desc_en = This radius-server and group does not exist
[149]
id = 149
desc = 不能更改用户组的类型
desc_en = Can't change usergroup's type
[150]
id = 150
desc = 非法的手工隧道
desc_en = Invalid manual tunnel
[151]
id = 151
desc = 接口配置冲突
desc_en = Interface config collided
[152]
id = 152
desc = 接口名称与别名冲突
desc_en = Interface name duplite with aliasname
[153]
id = 153
desc = 接口名称与安全域名称冲突
desc_en = Interface name duplite with security zone name
[154]
id = 154
desc = 用户不在该组中
desc_en = This user is not in the group
[155]
id = 155
desc = 读socket错误
desc_en = Read socket error
[156]
id = 156
desc = 写socket错误
desc_en = Write socket error
[157]
id = 157
desc = smtp base64编码错误
desc_en = Smtp base64 encode error
[158]
id = 158
desc = smtp配置错误
desc_en = Smtp config error
[159]
id = 159
desc = 查找主机名失败
desc_en = Find host by name error
[160]
id = 160
desc = 与服务器连接错误
desc_en = Connect to server error
[161]
id = 161
desc = smtp接收到错误的信息
desc_en = Smtp receive error message
[162]
id = 162
desc = 辅IP个数超过限制
desc_en = Too many secondary IP address
[163]
id = 163
desc = 不允许设置超过4096个ip
desc_en = Not allowed set ip counts larger than 4096
[164]
id = 164
desc =
desc_en = Session Hold
[165]
id = 165
desc =
desc_en = Session Hold
[166]
id = 166
desc =
desc_en = Session Hold
[167]
id = 167
desc =
desc_en = Session Hold
[168]
id = 168
desc = 虚拟防火墙与HA 配置冲突
desc_en = Session Hold
[169]
id = 169
desc = HA 已经配置了抢占模式
desc_en = Ha is already under grob_style
[170]
id = 170
desc = 端口范围错误
desc_en = Bad input PORT range
[171]
id = 171
desc = 端口错误
desc_en = Bad input PORT
[172]
id = 172
desc = IP范围错误
desc_en = Bad input IP range
[173]
id = 173
desc = IP掩码错误
desc_en = Bad input IP mask
[174]
id = 174
desc = IP地址错误
desc_en = Bad input IP address
[175]
id = 175
desc = 系统限制值必须大于协议限制值
desc_en = System limit must larger than the same in protocol
[176]
id = 176
desc = 上限值应大于下限值
desc_en = High limit must larger than low limit
[177]
id = 177
desc = 半连接上限值必须大于除总连接限制之外的其它限制值
desc_en = Halfopen high limit must larger than other except sum limit
[178]
id = 178
desc = 连接总数限制值必须是最大值
desc_en = Sum limit must be largest
[179]
id = 179
desc = 会话与内核通讯失败
desc_en = Session can not communicate with kernel
[180]
id = 180
desc = 会话内部错误
desc_en = Session inner error
[181]
id = 181
desc = Email地址格式错误
desc_en = Email address format error
[182]
id = 182
desc = 名称或描述中不能包含空格
desc_en = Name/Description string cannot include space
[183]
id = 183
desc = 该命令只能在主模式下运行
desc_en = This command can only be run under master state
[184]
id = 184
desc = HA已经处于停止状态
desc_en = Ha is already under standby state
[185]
id = 185
desc = VLAN接口数目已经超过最大值
desc_en = VLAN interface counter exceed max number
[186]
id = 186
desc = 静态路由数目超过最大值
desc_en = Static routes reached the limit
[187]
id = 187
desc = 导入文件错误
desc_en = Import file error.
[188]
id = 188
desc = 升级库错误
desc_en = Update library error.
[189]
id = 189
desc = 升级库的URL格式错误,应该为http://..../...
desc_en = Update server URL error
[190]
id = 190
desc = 设置的邮件发送间隔不在范围之内<1-60>
desc_en = Set smtp send interval error
[191]
id = 191
desc = 不能删除默认管理员'admin'
desc_en = Default administator 'admin' can not be delete
[192]
id = 192
desc = 不能删除默认权限表'admin'
desc_en = Default authority-table 'admin' can not be delete
[193]
id = 193
desc = IP地址格式错误
desc_en = IP address format error
[194]
id = 194
desc = 库格式错误
desc_en = library format error
[195]
id = 195
desc = 系统配置文件格式错误
desc_en = System config file format error
[196]
id = 196
desc = NAT 地址池数目已到限制值
desc_en = The number of NAT pool exceed the limit
[197]
id = 197
desc = 接口被GRE接口引用
desc_en = Interface used by GRE