Any authentication method is not supported.
The client connects to the server is required for sending X'00'
(NO AUTHENTICATION REQUIRED
) as a method selection message.
Only CONNECT
command is supported.
Gatekeeper allow users to restricting connection based on:
You can install gatekeeper as an executable (gatekeeperd
) from git repository.
$ cargo install --locked --git https://github.com/Idein/gatekeeper.git
$ gatekeeperd
gatekeeperd
gatekeeper 0.1.0
When the gatekeeperd installation is complete, you would be able to run the program.
$ gatekeeperd
You can look see command line options.
$ gatekeeperd --help
By default, gatekeeper accepts all connection requests. However, it is possible to filter out some requests along with a filtering rule (described above) given an yaml file. This yaml file follows special format described below.
Any filter rule yaml is constructed from a sequence of RuleEntries
.
Each RuleEntry
is either Allow
or Deny
.
The rule is in the back of this list have higher precedence.
Then the head of rules is treated as default rule, and the rule should be either allow all connection
or deny all connection
.
yaml
- Allow:
address: Any
port: Any
protocol: Any
..
Or
yaml
- Deny:
address: Any
port: Any
protocol: Any
..
All RuleEntry
have 3 fields address
, port
and protocol
.
Value of these fields are either Any
or Specif
.
Any
matches any values, and Specif
matches a specified value(s).
address
```yaml
address: Any ```
address
is either IpAddr
or Domain
.
```yaml
address: Specif: IpAddr: addr: 192.168.0.1 mask: 24 ```
```yaml
address: Specif: Domain: # regexp pattern pattern: "(mail.)?google.(com|co.jp)" ```
port
```yaml
port: Any ```
```yaml
port: Specif: 8080 ```
protocol
```yaml
protocol: Any ```
```yaml
protocol: Specif: Tcp ```
allow all connections
allow only local subnet (192.168.0.1/16)
.. default deny ..
block access to facebook.com and youtube.com
.. default allow ..
$ docker-compose build
$ docker-compose up -d
ignored
test
$ cargo test --verbose -- --nocapture --ignored