2016-10-11 17:02:44 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2016-10-12 10:11:13 -04:00
|
|
|
package v2ray.core.app.router;
|
2016-12-22 18:24:28 -05:00
|
|
|
option csharp_namespace = "V2Ray.Core.App.Router";
|
2016-10-12 10:11:13 -04:00
|
|
|
option go_package = "router";
|
|
|
|
option java_package = "com.v2ray.core.app.router";
|
2017-02-03 17:15:10 -05:00
|
|
|
option java_multiple_files = true;
|
2016-10-11 17:02:44 -04:00
|
|
|
|
|
|
|
import "v2ray.com/core/common/net/port.proto";
|
|
|
|
import "v2ray.com/core/common/net/network.proto";
|
|
|
|
|
|
|
|
// Domain for routing decision.
|
|
|
|
message Domain {
|
|
|
|
// Type of domain value.
|
|
|
|
enum Type {
|
|
|
|
// The value is used as is.
|
|
|
|
Plain = 0;
|
|
|
|
// The value is used as a regular expression.
|
|
|
|
Regex = 1;
|
2018-08-21 15:30:32 -04:00
|
|
|
// The value is a root domain.
|
2017-05-08 06:18:13 -04:00
|
|
|
Domain = 2;
|
2018-08-21 15:30:32 -04:00
|
|
|
// The value is a domain.
|
|
|
|
Full = 3;
|
2016-10-11 17:02:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Domain matching type.
|
|
|
|
Type type = 1;
|
|
|
|
|
|
|
|
// Domain value.
|
|
|
|
string value = 2;
|
|
|
|
}
|
|
|
|
|
2016-10-18 10:42:22 -04:00
|
|
|
// IP for routing decision, in CIDR form.
|
|
|
|
message CIDR {
|
2016-10-11 17:02:44 -04:00
|
|
|
// IP address, should be either 4 or 16 bytes.
|
|
|
|
bytes ip = 1;
|
|
|
|
|
2016-10-18 10:42:22 -04:00
|
|
|
// Number of leading ones in the network mask.
|
|
|
|
uint32 prefix = 2;
|
2016-10-11 17:02:44 -04:00
|
|
|
}
|
|
|
|
|
2017-11-02 05:54:06 -04:00
|
|
|
message GeoIP {
|
|
|
|
string country_code = 1;
|
|
|
|
repeated CIDR cidr = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message GeoIPList {
|
|
|
|
repeated GeoIP entry = 1;
|
|
|
|
}
|
|
|
|
|
2017-11-05 11:19:34 -05:00
|
|
|
message GeoSite {
|
|
|
|
string country_code = 1;
|
|
|
|
repeated Domain domain = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message GeoSiteList{
|
|
|
|
repeated GeoSite entry = 1;
|
|
|
|
}
|
|
|
|
|
2016-10-11 17:02:44 -04:00
|
|
|
message RoutingRule {
|
|
|
|
string tag = 1;
|
|
|
|
repeated Domain domain = 2;
|
2016-10-18 10:42:22 -04:00
|
|
|
repeated CIDR cidr = 3;
|
2016-10-11 17:02:44 -04:00
|
|
|
v2ray.core.common.net.PortRange port_range = 4;
|
|
|
|
v2ray.core.common.net.NetworkList network_list = 5;
|
2016-10-18 17:01:39 -04:00
|
|
|
repeated CIDR source_cidr = 6;
|
|
|
|
repeated string user_email = 7;
|
2016-11-13 15:23:34 -05:00
|
|
|
repeated string inbound_tag = 8;
|
2018-07-16 07:47:00 -04:00
|
|
|
repeated string protocol = 9;
|
2016-10-11 17:02:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
message Config {
|
|
|
|
enum DomainStrategy {
|
2016-10-18 04:31:39 -04:00
|
|
|
// Use domain as is.
|
2016-10-11 17:02:44 -04:00
|
|
|
AsIs = 0;
|
2016-10-18 04:31:39 -04:00
|
|
|
|
|
|
|
// Always resolve IP for domains.
|
2016-10-11 17:02:44 -04:00
|
|
|
UseIp = 1;
|
2016-10-18 04:31:39 -04:00
|
|
|
|
|
|
|
// Resolve to IP if the domain doesn't match any rules.
|
2016-10-11 17:02:44 -04:00
|
|
|
IpIfNonMatch = 2;
|
2017-11-15 06:55:47 -05:00
|
|
|
|
|
|
|
// Resolve to IP if any rule requires IP matching.
|
|
|
|
IpOnDemand = 3;
|
2016-10-11 17:02:44 -04:00
|
|
|
}
|
|
|
|
DomainStrategy domain_strategy = 1;
|
|
|
|
repeated RoutingRule rule = 2;
|
2018-01-04 05:09:23 -05:00
|
|
|
}
|